激光雷达或者叫激光测距仪数据采集比较简单,有位好心的网友提供了一篇博客专门讲这个,这里就不再赘述,贴出链接,需要的直接去看原文,激光雷达的型号:UTM-30LX。

激光雷达数据采集

当前网上关于激光雷达的资料比较少,毕竟用的人不是很多。开发环境主流的还是C/C++,官方提供的例程也都是C/C++的。

官网资料:http://www.hokuyo-aut.jp/02sensor/07scanner/download/urg_programs_en/  上面包括激光雷达的驱动和采集软件都有提供,需要的话只需要按照上面的步骤去做就可以。

虽然激光雷达的型号不同,采集部分的代码不同,但是数据处理部分的方法却是相同的,在接下来的日子里我会逐渐共享我使用激光雷达数据所用到的算法和代码,共同学习,共同进步。

现在的开发语言是C/C++,控制台程序,为了便于快速实现以及进行图形的显示,使用了OpenCV2.4的代码。当然也有人用Labview或者Matlab开发激光雷达,不同的方法之间各有利弊,同时也看个人的喜好。Labview界面部分很简单快捷,编程效率也很高,但是感觉算法的实现稍微麻烦些;Matlab编程效率高,常用函数齐全。Matlab和Labview开发激光雷达一个共同的问题是程序的可移植性。我更加希望我的程序可以移植到嵌入式平台上,不管是Linux环境或者裸机环境。

激光雷达数据采集程序:(UTM-30LX)

[cpp] view plaincopy
  1. /*!
  2. \file
  3. \brief Sample to get URG data using Win32
  4. \author Satofumi KAMIMURA
  5. $Id: capture_sample.cpp 1724 2010-02-25 10:43:11Z satofumi $
  6. Compling and execute process
  7. - In case of Visual Studio
  8. - Select capture_sample.sln from capture_sample.zip
  9. - When Visual Studio is started, press F5 to build and execute.
  10. - If COM port is not found, then change the com_port in main function.
  11. - In case of MinGW, Cygwin
  12. - % g++ capture_sample.cpp -o capture_sample
  13. - % ./capture_sample
  14. - If COM port is not found, then change the com_port in main function.
  15. \attention Change com_port, com_baudrate values in main() with relevant values.
  16. \attention We are not responsible for any loss or damage occur by using this program
  17. \attention We appreciate the suggestions and bug reports
  18. */
  19. #define _CRT_SECURE_NO_WARNINGS
  20. #include <windows.h>
  21. #include <cstdio>
  22. #include <cstdlib>
  23. #include <cstring>
  24. #include <string>
  25. using namespace std;
  26. // To record the output of SCIP,define RAW_OUTPUT
  27. //#define RAW_OUTPUT
  28. #if defined(RAW_OUTPUT)
  29. static FILE* Raw_fd_ = NULL;
  30. #endif
  31. enum {
  32. Timeout = 1000,               // [msec]
  33. EachTimeout = 2,              // [msec]
  34. LineLength = 64 + 3 + 1 + 1 + 1 + 16,
  35. };
  36. static HANDLE HCom = INVALID_HANDLE_VALUE;
  37. static int ReadableSize = 0;
  38. static char* ErrorMessage = "no error.";
  39. /*!
  40. \brief Manage sensor information
  41. */
  42. typedef struct
  43. {
  44. enum {
  45. MODL = 0,                   //!< Sensor model information
  46. DMIN,                       //!< Minimum measurable distance [mm]
  47. DMAX,                       //!< Maximum measurable distance [mm]
  48. ARES,                       //!< Angle of resolution
  49. AMIN,                       //!< Minimum measurable area
  50. AMAX,                       //!< Maximum measurable area
  51. AFRT,                       //!< Front direction value
  52. SCAN,                       //!< Standard angular velocity
  53. };
  54. string model;                 //!< Obtained MODL information
  55. long distance_min;            //!< Obtained DMIN information
  56. long distance_max;            //!< Obtained DMAX information
  57. int area_total;               //!< Obtained ARES information
  58. int area_min;                 //!< Obtained AMIN information
  59. int area_max;                 //!< Obtained AMAX information
  60. int area_front;               //!< Obtained AFRT information
  61. int scan_rpm;                 //!< Obtained SCAN information
  62. int first;                    //!< Starting position of measurement
  63. int last;                     //!< End position of measurement
  64. int max_size;                 //!< Maximum size of data
  65. long last_timestamp;          //!< Time stamp when latest data is obtained
  66. } urg_state_t;
  67. // Delay
  68. static void delay(int msec)
  69. {
  70. Sleep(msec);
  71. }
  72. static int com_changeBaudrate(long baudrate)
  73. {
  74. DCB dcb;
  75. GetCommState(HCom, &dcb);
  76. dcb.BaudRate = baudrate;
  77. dcb.ByteSize = 8;
  78. dcb.Parity = NOPARITY;
  79. dcb.fParity = FALSE;
  80. dcb.StopBits = ONESTOPBIT;
  81. SetCommState(HCom, &dcb);
  82. return 0;
  83. }
  84. // Serial transceiver
  85. static int com_connect(const char* device, long baudrate)
  86. {
  87. #if defined(RAW_OUTPUT)
  88. Raw_fd_ = fopen("raw_output.txt", "w");
  89. #endif
  90. char adjust_device[16];
  91. _snprintf(adjust_device, 16, "\\\\.\\%s", device);
  92. HCom = CreateFileA(adjust_device, GENERIC_READ | GENERIC_WRITE, 0,
  93. NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
  94. if (HCom == INVALID_HANDLE_VALUE) {
  95. return -1;
  96. }
  97. // Baud rate setting
  98. return com_changeBaudrate(baudrate);
  99. }
  100. static void com_disconnect(void)
  101. {
  102. if (HCom != INVALID_HANDLE_VALUE) {
  103. CloseHandle(HCom);
  104. HCom = INVALID_HANDLE_VALUE;
  105. }
  106. }
  107. static int com_send(const char* data, int size)
  108. {
  109. DWORD n;
  110. WriteFile(HCom, data, size, &n, NULL);
  111. return n;
  112. }
  113. static int com_recv(char* data, int max_size, int timeout)
  114. {
  115. if (max_size <= 0) {
  116. return 0;
  117. }
  118. if (ReadableSize < max_size) {
  119. DWORD dwErrors;
  120. COMSTAT ComStat;
  121. ClearCommError(HCom, &dwErrors, &ComStat);
  122. ReadableSize = ComStat.cbInQue;
  123. }
  124. if (max_size > ReadableSize) {
  125. COMMTIMEOUTS pcto;
  126. int each_timeout = 2;
  127. if (timeout == 0) {
  128. max_size = ReadableSize;
  129. } else {
  130. if (timeout < 0) {
  131. /* If timeout is 0, this function wait data infinity */
  132. timeout = 0;
  133. each_timeout = 0;
  134. }
  135. /* set timeout */
  136. GetCommTimeouts(HCom, &pcto);
  137. pcto.ReadIntervalTimeout = timeout;
  138. pcto.ReadTotalTimeoutMultiplier = each_timeout;
  139. pcto.ReadTotalTimeoutConstant = timeout;
  140. SetCommTimeouts(HCom, &pcto);
  141. }
  142. }
  143. DWORD n;
  144. ReadFile(HCom, data, (DWORD)max_size, &n, NULL);
  145. #if defined(RAW_OUTPUT)
  146. if (Raw_fd_) {
  147. for (int i = 0; i < n; ++i) {
  148. fprintf(Raw_fd_, "%c", data[i]);
  149. }
  150. fflush(Raw_fd_);
  151. }
  152. #endif
  153. if (n > 0) {
  154. ReadableSize -= n;
  155. }
  156. return n;
  157. }
  158. // The command is transmitted to URG
  159. static int urg_sendTag(const char* tag)
  160. {
  161. char send_message[LineLength];
  162. _snprintf(send_message, LineLength, "%s\n", tag);
  163. int send_size = (int)strlen(send_message);
  164. com_send(send_message, send_size);
  165. return send_size;
  166. }
  167. // Read one line data from URG
  168. static int urg_readLine(char *buffer)
  169. {
  170. int i;
  171. for (i = 0; i < LineLength -1; ++i) {
  172. char recv_ch;
  173. int n = com_recv(&recv_ch, 1, Timeout);
  174. if (n <= 0) {
  175. if (i == 0) {
  176. return -1;              // timeout
  177. }
  178. break;
  179. }
  180. if ((recv_ch == '\r') || (recv_ch == '\n')) {
  181. break;
  182. }
  183. buffer[i] = recv_ch;
  184. }
  185. buffer[i] = '\0';
  186. return i;
  187. }
  188. // Trasmit command to URG and wait for response
  189. static int urg_sendMessage(const char* command, int timeout, int* recv_n)
  190. {
  191. int send_size = urg_sendTag(command);
  192. int recv_size = send_size + 2 + 1 + 2;
  193. char buffer[LineLength];
  194. int n = com_recv(buffer, recv_size, timeout);
  195. *recv_n = n;
  196. if (n < recv_size) {
  197. // if received data size is incorrect
  198. return -1;
  199. }
  200. if (strncmp(buffer, command, send_size -1)) {
  201. // If there is mismatch in command
  202. return -1;
  203. }
  204. // !!! check checksum here
  205. // Convert the response string into hexadecimal number and return that value
  206. char reply_str[3] = "00";
  207. reply_str[0] = buffer[send_size];
  208. reply_str[1] = buffer[send_size + 1];
  209. return strtol(reply_str, NULL, 16);
  210. }
  211. // Change baudrate
  212. static int urg_changeBaudrate(long baudrate)
  213. {
  214. char buffer[] = "SSxxxxxx\r";
  215. _snprintf(buffer, 10, "SS%06d\r", baudrate);
  216. int dummy = 0;
  217. int ret = urg_sendMessage(buffer, Timeout, &dummy);
  218. if ((ret == 0) || (ret == 3) || (ret == 4)) {
  219. return 0;
  220. } else {
  221. return -1;
  222. }
  223. }
  224. // Read out URG parameter
  225. static int urg_getParameters(urg_state_t* state)
  226. {
  227. // Read parameter
  228. urg_sendTag("PP");
  229. char buffer[LineLength];
  230. int line_index = 0;
  231. enum {
  232. TagReply = 0,
  233. DataReply,
  234. Other,
  235. };
  236. int line_length;
  237. for (; (line_length = urg_readLine(buffer)) > 0; ++line_index) {
  238. if (line_index == Other + urg_state_t::MODL) {
  239. buffer[line_length - 2] = '\0';
  240. state->model = &buffer[5];
  241. } else if (line_index == Other + urg_state_t::DMIN) {
  242. state->distance_min = atoi(&buffer[5]);
  243. } else if (line_index == Other + urg_state_t::DMAX) {
  244. state->distance_max = atoi(&buffer[5]);
  245. } else if (line_index == Other + urg_state_t::ARES) {
  246. state->area_total = atoi(&buffer[5]);
  247. } else if (line_index == Other + urg_state_t::AMIN) {
  248. state->area_min = atoi(&buffer[5]);
  249. state->first = state->area_min;
  250. } else if (line_index == Other + urg_state_t::AMAX) {
  251. state->area_max = atoi(&buffer[5]);
  252. state->last = state->area_max;
  253. } else if (line_index == Other + urg_state_t::AFRT) {
  254. state->area_front = atoi(&buffer[5]);
  255. } else if (line_index == Other + urg_state_t::SCAN) {
  256. state->scan_rpm = atoi(&buffer[5]);
  257. }
  258. }
  259. if (line_index <= Other + urg_state_t::SCAN) {
  260. return -1;
  261. }
  262. // Calculate the data size
  263. state->max_size = state->area_max +1;
  264. return 0;
  265. }
  266. /*!
  267. \brief Connection to URG
  268. \param state [o] Sensor information
  269. \param port [i] Device
  270. \param baudrate [i] Baudrate [bps]
  271. \retval 0 Success
  272. \retval < 0 Error
  273. */
  274. static int urg_connect(urg_state_t* state,
  275. const char* port, const long baudrate)
  276. {
  277. static char message_buffer[LineLength];
  278. if (com_connect(port, baudrate) < 0) {
  279. _snprintf(message_buffer, LineLength,
  280. "Cannot connect COM device: %s", port);
  281. ErrorMessage = message_buffer;
  282. return -1;
  283. }
  284. const long try_baudrate[] = { 19200, 115200, 38400 };
  285. size_t n = sizeof(try_baudrate) / sizeof(try_baudrate[0]);
  286. for (size_t i = 0; i < n; ++i) {
  287. // Search for the communicate able baud rate by trying different baud rate
  288. if (com_changeBaudrate(try_baudrate[i])) {
  289. ErrorMessage = "change baudrate fail.";
  290. return -1;
  291. }
  292. // Change to SCIP2.0 mode
  293. int recv_n = 0;
  294. urg_sendMessage("SCIP2.0", Timeout, &recv_n);
  295. if (recv_n <= 0) {
  296. // If there is difference in baud rate value,then there will be no
  297. // response. So if there is no response, try the next baud rate.
  298. continue;
  299. }
  300. // If specified baudrate is different, then change the baudrate
  301. if (try_baudrate[i] != baudrate) {
  302. urg_changeBaudrate(baudrate);
  303. // Wait for SS command applied.
  304. delay(100);
  305. com_changeBaudrate(baudrate);
  306. }
  307. // Get parameter
  308. if (urg_getParameters(state) < 0) {
  309. ErrorMessage =
  310. "PP command fail.\n"
  311. "This COM device may be not URG, or URG firmware is too old.\n"
  312. "SCIP 1.1 protocol is not supported. Please update URG firmware.";
  313. return -1;
  314. }
  315. state->last_timestamp = 0;
  316. // success
  317. return 0;
  318. }
  319. // fail
  320. ErrorMessage = "no urg ports.";
  321. return -1;
  322. }
  323. /*!
  324. \brief Disconnection
  325. */
  326. static void urg_disconnect(void)
  327. {
  328. com_disconnect();
  329. }
  330. /*!
  331. \brief Receive range data by using GD command
  332. \param state[i] Sensor information
  333. \retval 0 Success
  334. \retval < 0 Error
  335. */
  336. static int urg_captureByGD(const urg_state_t* state)
  337. {
  338. char send_message[LineLength];
  339. _snprintf(send_message, LineLength,
  340. "GD%04d%04d%02d", state->first, state->last, 1);
  341. return urg_sendTag(send_message);
  342. }
  343. /*!
  344. \brief Get range data by using MD command
  345. \param state [i] Sensor information
  346. \param capture_times [i] capture times
  347. \retval 0 Success
  348. \retval < 0 Error
  349. */
  350. static int urg_captureByMD(const urg_state_t* state, int capture_times)
  351. {
  352. // 100 夞傪挻偊傞僨乕僞庢摼偵懳偟偰偼丄夞悢偵 00 (柍尷夞庢摼)傪巜掕偟丄
  353. // QT or RS 僐儅儞僪偱僨乕僞庢摼傪掆巭偡傞偙偲
  354. if (capture_times >= 100) {
  355. capture_times = 0;
  356. }
  357. char send_message[LineLength];
  358. _snprintf(send_message, LineLength, "MD%04d%04d%02d%01d%02d",
  359. state->first, state->last, 1, 0, capture_times);
  360. return urg_sendTag(send_message);
  361. }
  362. // Decode 6bit data
  363. static long urg_decode(const char data[], int data_byte)
  364. {
  365. long value = 0;
  366. for (int i = 0; i < data_byte; ++i) {
  367. value <<= 6;
  368. value &= ~0x3f;
  369. value |= data[i] - 0x30;
  370. }
  371. return value;
  372. }
  373. // Receive range data
  374. static int urg_addRecvData(const char buffer[], long data[], int* filled)
  375. {
  376. static int remain_byte = 0;
  377. static char remain_data[3];
  378. const int data_byte = 3;
  379. const char* pre_p = buffer;
  380. const char* p = pre_p;
  381. if (*filled <= 0) {
  382. remain_byte = 0;
  383. }
  384. if (remain_byte > 0) {
  385. memmove(&remain_data[remain_byte], buffer, data_byte - remain_byte);
  386. data[*filled] = urg_decode(remain_data, data_byte);
  387. ++(*filled);
  388. pre_p = &buffer[data_byte - remain_byte];
  389. p = pre_p;
  390. remain_byte = 0;
  391. }
  392. do {
  393. ++p;
  394. if ((p - pre_p) >= static_cast<int>(data_byte)) {
  395. data[*filled] = urg_decode(pre_p, data_byte);
  396. ++(*filled);
  397. pre_p = p;
  398. }
  399. } while (*p != '\0');
  400. remain_byte = (int)(p - pre_p);
  401. memmove(remain_data, pre_p, remain_byte);
  402. return 0;
  403. }
  404. static int checkSum(char buffer[], int size, char actual_sum)
  405. {
  406. char expected_sum = 0x00;
  407. int i;
  408. for (i = 0; i < size; ++i) {
  409. expected_sum += buffer[i];
  410. }
  411. expected_sum = (expected_sum & 0x3f) + 0x30;
  412. return (expected_sum == actual_sum) ? 0 : -1;
  413. }
  414. /*!
  415. \brief Receive URG data
  416. 應掕僨乕僞傪攝楍偵奿擺偟丄奿擺僨乕僞悢傪栠傝抣偱曉偡丅
  417. \param state [i] Sensor information
  418. \param data [o] range data
  419. \param max_size [i] range data buffer size
  420. \retval >= 0 number of range data
  421. \retval < 0 Error
  422. */
  423. static int urg_receiveData(urg_state_t* state, long data[], size_t max_size)
  424. {
  425. int filled = 0;
  426. // fill -1 from 0 to first
  427. for (int i = state->first -1; i >= 0; --i) {
  428. data[filled++] = -1;
  429. }
  430. char message_type = 'M';
  431. char buffer[LineLength];
  432. int line_length;
  433. for (int line_count = 0; (line_length = urg_readLine(buffer)) >= 0;
  434. ++line_count) {
  435. // check sum
  436. if ((line_count > 3) && (line_length >= 3)) {
  437. if (checkSum(buffer, line_length - 1, buffer[line_length - 1]) < 0) {
  438. fprintf(stderr, "line_count: %d: %s\n", line_count, buffer);
  439. return -1;
  440. }
  441. }
  442. if ((line_count >= 6) && (line_length == 0)) {
  443. // 僨乕僞庴怣偺姰椆
  444. for (size_t i = filled; i < max_size; ++i) {
  445. // fill -1 to last of data buffer
  446. data[filled++] = -1;
  447. }
  448. return filled;
  449. } else if (line_count == 0) {
  450. // 憲怣儊僢僙乕僕偺嵟弶偺暥帤偱儊僢僙乕僕偺敾掕傪峴偆
  451. if ((buffer[0] != 'M') && (buffer[0] != 'G')) {
  452. return -1;
  453. }
  454. message_type = buffer[0];
  455. } else if (! strncmp(buffer, "99b", 3)) {
  456. // "99b" 傪専弌偟丄埲崀傪乽僞僀儉僗僞儞僾乿乽僨乕僞乿偲傒側偡
  457. line_count = 4;
  458. } else if ((line_count == 1) && (message_type == 'G')) {
  459. line_count = 4;
  460. } else if (line_count == 4) {
  461. // "99b" 屌掕
  462. if (strncmp(buffer, "99b", 3)) {
  463. return -1;
  464. }
  465. } else if (line_count == 5) {
  466. state->last_timestamp = urg_decode(buffer, 4);
  467. } else if (line_count >= 6) {
  468. // 庢摼僨乕僞
  469. if (line_length > (64 + 1)) {
  470. line_length = (64 + 1);
  471. }
  472. buffer[line_length -1] = '\0';
  473. int ret = urg_addRecvData(buffer, data, &filled);
  474. if (ret < 0) {
  475. return ret;
  476. }
  477. }
  478. }
  479. return -1;
  480. }
  481. void outputData(long data[], int n, size_t total_index)
  482. {
  483. char output_file[] = "data_xxxxxxxxxx.csv";
  484. _snprintf(output_file, sizeof(output_file), "data_%03d.csv", total_index);
  485. FILE* fd = fopen(output_file, "w");
  486. if (! fd) {
  487. perror("fopen");
  488. return;
  489. }
  490. for (int i = 0; i < n; ++i) {
  491. fprintf(fd, "%ld, ", data[i]);
  492. }
  493. fprintf(fd, "\n");
  494. fclose(fd);
  495. }
  496. int main(int argc, char *argv[])
  497. {
  498. // COM 億乕僩愝掕
  499. // !!! 奺帺偺娐嫬偵崌傢偣偰 COM 愝掕傪曄峏偡傞偙偲
  500. const char com_port[] = "COM10";
  501. const long com_baudrate = 115200;
  502. // URG 偵愙懕
  503. urg_state_t urg_state;
  504. int ret = urg_connect(&urg_state, com_port, com_baudrate);
  505. if (ret < 0) {
  506. // 僄儔乕儊僢僙乕僕傪弌椡偟偰廔椆
  507. printf("urg_connect: %s\n", ErrorMessage);
  508. // 懄嵗偵廔椆偟側偄偨傔偺張棟丅晄梫側傜偽嶍彍偡傞偙偲
  509. getchar();
  510. exit(1);
  511. }
  512. int max_size = urg_state.max_size;
  513. long* data = new long[max_size];
  514. enum { CaptureTimes = 5 };
  515. size_t total_index = 0;
  516. //
  517. // GD 僐儅儞僪傪梡偄偨僨乕僞庢摼
  518. printf("using GD command\n");
  519. // GD 僐儅儞僪偱偺僨乕僞庢摼偺応崌偵偼丄BM 僐儅儞僪偱偺儗乕僓揰摂偑昁梫
  520. int recv_n = 0;
  521. urg_sendMessage("BM", Timeout, &recv_n);
  522. for (int i = 0; i < CaptureTimes; ++i) {
  523. urg_captureByGD(&urg_state);
  524. int n = urg_receiveData(&urg_state, data, max_size);
  525. if (n > 0) {
  526. printf("% 3d: front: %ld, urg_timestamp: %ld\n",
  527. i, data[urg_state.area_front], urg_state.last_timestamp);
  528. outputData(data, n, ++total_index);
  529. }
  530. }
  531. printf("\n");
  532. /
  533. // MD 僐儅儞僪傪梡偄偨僨乕僞庢摼
  534. printf("using MD command\n");
  535. urg_captureByMD(&urg_state, CaptureTimes);
  536. for (int i = 0; i < CaptureTimes; ++i) {
  537. int n = urg_receiveData(&urg_state, data, max_size);
  538. if (n > 0) {
  539. printf("% 3d: front: %ld, urg_timestamp: %ld\n",
  540. i, data[urg_state.area_front], urg_state.last_timestamp);
  541. outputData(data, n, ++total_index);
  542. }
  543. }
  544. // MD 僐儅儞僪偱偺庢摼偑姰椆偡傞偲丄儗乕僓偼帺摦徚摂偡傞
  545. // 偨偩偟丄100 夞埲忋偺僨乕僞庢摼傪巜掕偟偨応崌偵偼丄
  546. // urg_captureByMD() 撪晹偱柍尷夞偺僨乕僞庢摼偵愝掕偝傟偰偄傞偺偱丄
  547. // QT 僐儅儞僪傪梡偄偰丄柧帵揑偵僨乕僞掆巭傪峴偆
  548. if (CaptureTimes >= 100) {
  549. int dummy;
  550. urg_sendMessage("QT", Timeout, &dummy);
  551. }
  552. urg_disconnect();
  553. delete [] data;
  554. printf("end.\n");
  555. // 懄嵗偵廔椆偟側偄偨傔偺張棟丅晄梫側傜偽嶍彍偡傞偙偲
  556. getchar();
  557. return 0;
  558. }

//激光雷达采集到数据的显示:

激光雷达学习笔记(一)数据采集相关推荐

  1. 激光雷达学习笔记-------Ubuntu 18.04 + 思岚科技 A1M8+ ROS 上手使用及基于hector_slam 建图

    一,在虚拟机环境上搭建环境 官方提供了纯 C++和ROS节点两种形式的SDK,ROS版SDK中已经包含了C++的SDK(版本稍晚),不需要单独下载C++版本的SDK. 这里我们主要使用ROS来测试,从 ...

  2. STM32 Cube MX学习笔记——TOF 高速单线激光雷达 L10(usart)

    STM32 Cube MX学习笔记--TOF 高速单线激光雷达 L10_串口中断通信 1. TOF 高速单线激光雷达 L10 2. STM32 Cube MX配置 3.代码配置 4.编译 烧录 显示 ...

  3. python网络数据采集学习笔记(二)

    今天看第二章:复杂html解析 上次的学习笔记链接:https://blog.csdn.net/Nyte2018/article/details/88713447 前两天看了慕课上的html和css入 ...

  4. 3D目标检测学习笔记

    博主初学3D目标检测,此前没有相关学习背景,小白一枚-现阶段的学习重点是点云相关的3D检测. 本文是阅读文章:3D Object Detection for Autonomous Driving: A ...

  5. Apollo学习笔记

    Apollo学习笔记 Apollo课程 智能驾驶入门课程 无人驾驶概览 1.软件层分为三层: 实时操作系统(RTOS):确保在给定时间内完成特定任务,实时时确保系统稳定性.驾驶安全性的重要要求.通过在 ...

  6. SLAM学习笔记(十九)开源3D激光SLAM总结大全——Cartographer3D,LOAM,Lego-LOAM,LIO-SAM,LVI-SAM,Livox-LOAM的原理解析及区别

    本文为我在浙江省北大信研院-智能计算中心-情感智能机器人实验室-科技委员会所做的一个分享汇报,现在我把它搬运到博客中. 由于参与分享汇报的同事有许多是做其他方向的机器人工程师(包括硬件.控制等各方面并 ...

  7. 百度Apollo自动驾驶学习笔记

    Apollo学习笔记 作者:邹镇洪(清华大学车辆学院,个人主页 转到Github项目主页查看持续更新 转到Github项目主页查看持续更新 转到Github项目主页查看持续更新 本文是对百度Apoll ...

  8. elasticsearch狂神说笔记_神级学习笔记!别再说不会Elasticsearch了,这位架构师都整理好了...

    搜索是软件工程师的一项必备技能.而 Elasticsearch 就是一款功能强大的开源分布式搜索与分析引擎,在同领域几乎没有竞争对手--近三年 DB-Engines 数据库评测中,ES 在搜索引擎领域 ...

  9. 《统计学》学习笔记之数据的收集

    鄙人学习笔记 文章目录 数据的收集 数据的来源 调查数据 数据的误差 数据的收集 数据的来源 数据的间接来源 如果与研究内容有关的原信息已经存在,我们只是对这些原信息重新加工.整理,使之成为我们进行统 ...

最新文章

  1. 2002高教社杯---A车灯线光源的优化设计
  2. Python计算训练数据集(测试集)中某个分类变量阴性(阳性)标签样本的不同水平(level)或者分类值的统计个数以及比例
  3. 安装anaconda 报错 failed to create menus
  4. 中科院自动化所介绍深度强化学习进展:从AlphaGo到AlphaGo Zero
  5. Nilearn教程系列(2)-3D和4D niimgs:处理和可视化
  6. Flash学习笔记(01)
  7. first OData Batch operation when Sales Pipeline is launched
  8. vb与三菱plc以太网通讯_实战演练|三菱触摸屏GOT2000与三菱Q系列以太网通讯
  9. Javascript实现的2048
  10. Java学习笔记1.1.1 搭建Java开发环境 - Java概述
  11. C语言需要什么程序翻译,c语言怎么翻译? 程序怎么运行?
  12. Linux设备驱动——PCI总线的初始化
  13. paip..net 程序多语言切换开发的流程总结
  14. Java学习路线图,全套Java基础视频教程
  15. 《高性能Linux服务器构建实战Ⅱ》已出版发售,附封面照!
  16. BOS基础资料视图封装示例(合同种类封装成基础资料)
  17. 打地鼠小游戏(Laya.box)
  18. 仿网易云PC端项目-vue
  19. Unity3D学习记录——NGUI Sprit2
  20. GitHub申请账号

热门文章

  1. android 获取电池最大容量,地表最大容量:Energizer推出16000mAh电池安卓机,续航长达一个周...
  2. 爱情大数据 | 你的专属微信聊天记录统计
  3. 1688店铺所有商品API接口(整店商品查询API接口)
  4. 对于自学Java的人来说,如何系统的,全方面的学习Java?
  5. 使用ECS和OSS搭建个人网盘
  6. ECharts在线编辑 中国地图数据可视化 展示
  7. Flume介绍和使用
  8. python金融大数据挖掘与分析全流程详解_(特价书)Python金融大数据挖掘与分析全流程详解...
  9. android沙漏动画app,沙漏动画
  10. 基于verilog 实现的DDS的发生器