资源简介
激光雷达图像采集程序及数据,激光雷达型号UTM-30LX

代码片段和文件信息
/*!
\file
\brief Sample to get URG data using Win32
\author Satofumi KAMIMURA
$Id: capture_sample.cpp 1724 2010-02-25 10:43:11Z satofumi $
Compling and execute process
- In case of Visual Studio
- Select capture_sample.sln from capture_sample.zip
- When Visual Studio is started press F5 to build and execute.
- If COM port is not found then change the com_port in main function.
- In case of MinGW Cygwin
- % g++ capture_sample.cpp -o capture_sample
- % ./capture_sample
- If COM port is not found then change the com_port in main function.
\attention Change com_port com_baudrate values in main() with relevant values.
\attention We are not responsible for any loss or damage occur by using this program
\attention We appreciate the suggestions and bug reports
*/
#define _CRT_SECURE_NO_WARNINGS
#include
#include
#include
#include
#include
using namespace std;
// To record the output of SCIPdefine RAW_OUTPUT
//#define RAW_OUTPUT
#if defined(RAW_OUTPUT)
static FILE* Raw_fd_ = NULL;
#endif
enum {
Timeout = 1000 // [msec]
EachTimeout = 2 // [msec]
LineLength = 64 + 3 + 1 + 1 + 1 + 16
};
static HANDLE HCom = INVALID_HANDLE_VALUE;
static int ReadableSize = 0;
static char* ErrorMessage = “no error.“;
/*!
\brief Manage sensor information
*/
typedef struct
{
enum {
MODL = 0 //!< Sensor model information
DMIN //!< Minimum measurable distance [mm]
DMAX //!< Maximum measurable distance [mm]
ARES //!< Angle of resolution
AMIN //!< Minimum measurable area
AMAX //!< Maximum measurable area
AFRT //!< Front direction value
SCAN //!< Standard angular velocity
};
string model; //!< Obtained MODL information
long distance_min; //!< Obtained DMIN information
long distance_max; //!< Obtained DMAX information
int area_total; //!< Obtained ARES information
int area_min; //!< Obtained AMIN information
int area_max; //!< Obtained AMAX information
int area_front; //!< Obtained AFRT information
int scan_rpm; //!< Obtained SCAN information
int first; //!< Starting position of measurement
int last; //!< End position of measurement
int max_size; //!< Maximum size of data
long last_timestamp; //!< Time stamp when latest data is obtained
} urg_state_t;
// Delay
static void delay(int msec)
{
Sleep(msec);
}
static int com_changeBaudrate(long baudrate)
{
DCB dcb;
GetCommState(HCom &dcb);
dcb.BaudRate = baudrate;
dcb.ByteSize =
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 17538 2013-01-28 10:40 capture_sample.cpp
文件 5482 2013-01-28 10:41 data_001.csv
文件 5483 2013-01-28 10:41 data_002.csv
文件 5482 2013-01-28 10:41 data_003.csv
文件 5482 2013-01-28 10:41 data_004.csv
文件 5482 2013-01-28 10:41 data_005.csv
文件 5482 2013-01-28 10:41 data_006.csv
文件 5482 2013-01-28 10:41 data_007.csv
文件 5478 2013-01-28 10:41 data_008.csv
文件 5482 2013-01-28 10:41 data_009.csv
文件 5483 2013-01-28 10:41 data_010.csv
相关资源
- 计算机数据采集卡编程
- 串口数据采集及显示
- Visual_C++_数据采集与串口通信测控应用
- Visual C++数据采集与串口通信测控应用
- C++Builder开发的数据采集系统上层应用
- USB2.0接口数据采集卡
- 对声卡音频数据采集,实时显示波形
- 机载激光雷达 Las格式读写及显示
- 研华 数据采集卡应用与编程
- 温度数据采集系统程序上位机程序+
- kinect2.0数据采集及点云生成代码C++
- TCPIP实用程序&温度数据采集系统程序
- usb2187数据采集卡的程序
- 基于C++的三菱机床实时数据采集可运
- 声卡数据采集播放演示源程序vc.zip
- 基于STM32单片机的多路数据采集系统设
- C++ 数据采集
- 激光雷达数据读取以及显示C++需配置
- 激光雷达点云地平面校准 地面分割
- ADC0809做的电压+电流+功率数据采集系
- 激光雷达数据读取、显示、分割、直
- vc++ 数据采集卡编程
- 基于VC++6.0的串口实时数据采集及实时
- VC环境下高速实时数据采集的实现
- 4G远程温湿度数据采集系统(原理图和
- Sick LMS激光雷达数据采集程序
- Visual C++数据采集与串口通讯测控应用
- VC++实现GPS数据采集与提取的软件编程
- 基于8051的四路数据采集系统设计
- 基于VC++6.0的串口数据实时采集
评论
共有 条评论