ros 同步 laserscan with camera

#include <ros/ros.h>
#include <message_filters/subscriber.h>
#include <message_filters/time_synchronizer.h>
#include <message_filters/sync_policies/approximate_time.h>
#include <sensor_msgs/Image.h>
#include <sensor_msgs/CameraInfo.h>
#include <geometry_msgs/PoseStamped.h>
#include <iostream>
#include <beginner_tutorials/myNum.h>
#include <std_msgs/String.h>
#include <sensor_msgs/LaserScan.h>

#include <image_transport/image_transport.h>   //image_transport
#include <cv_bridge/cv_bridge.h>              //cv_bridge
#include <sensor_msgs/image_encodings.h>    //图像编码格式
#include <opencv2/imgproc/imgproc.hpp>      //图像处理
#include <opencv2/highgui/highgui.hpp>       //opencv GUI

using namespace std;
using namespace sensor_msgs;
using namespace message_filters;
using namespace geometry_msgs;

// global variable
int cnt=0;
int j_num_wall=0;
char szName[200] = {'\0'};

typedef message_filters::sync_policies::ApproximateTime<Image,sensor_msgs::LaserScan> sync_policy_classification;

void callback(const sensor_msgs::ImageConstPtr& msg,const sensor_msgs::LaserScan::ConstPtr& msg_laser)
{

    //cerr << "I should record the pose: "<<cnt++ << endl;
    std::cerr<<" the max angle is :"<<msg_laser->angle_max <<std::endl;
    std::cerr<<" the min angle is :"<<msg_laser->angle_min <<std::endl;


    //std::cerr<<"the time stamp is :"<<msg->header<<std::endl;


    cv_bridge::CvImagePtr cv_ptr;  //申明一个CvImagePtr
    try
    {
        cv_ptr = cv_bridge::toCvCopy(msg, sensor_msgs::image_encodings::BGR8);
    }
    catch (cv_bridge::Exception& e)
    {
        ROS_ERROR("cv_bridge exception: %s", e.what());
        return;
    }

    sprintf(szName,
            "/home/robot/work_space/lidar_image_bag/imagel%d.jpg",
            j_num_wall);


    cv::imwrite(szName, cv_ptr->image);
    j_num_wall++;



    int number_points=(msg_laser->angle_max-msg_laser->angle_min)/msg_laser->angle_increment;

    std::cout<<msg_laser->header.stamp<<" ";
    std::cout<<msg_laser->angle_min<<" "<<msg_laser->angle_max<<" "<<msg_laser->angle_increment<<" "<<1<<" "<<number_points<<" ";



    //std::cout<<"save an image!!!"<<std::endl;

    // int number_points=(msg_laser->angle_max-msg_laser->angle_min)/msg_laser->angle_increment;
    //std::cout<<"the number points  is :"<<number_points<<std::endl;
    for(int i=0;i<number_points;i++){

        if (msg_laser->ranges[i]>=10){
            std::cout<<0<<" ";
        }

        else if (msg_laser->ranges[i]<=0){
            std::cout<<0<<" ";
        }
        else{
            std::cout<<msg_laser->ranges[i]*1000<<" ";

        }

    }

    std::cout<<std::endl;


}



int main(int argc, char** argv)
{
    ros::init(argc, argv, "dsfg");

    ros::NodeHandle nh;

    message_filters::Subscriber<Image> info_sub(nh, "/camera_17082034/pg_17082034/image_raw", 2000);
    message_filters::Subscriber<sensor_msgs::LaserScan> pose_sub(nh, "/scan_filtered",2000);
    message_filters::Synchronizer<sync_policy_classification> sync(sync_policy_classification(2000), info_sub, pose_sub);
    //TimeSynchronizer<CameraInfo, PoseStamped> sync(info_sub, pose_sub, 10);
    sync.registerCallback(boost::bind(&callback, _1, _2));

    ros::spin();

    return 0;
}









 

ROS中,将LaserScan格式转换为PointCloud2格式是一个常见的需求。LaserScan格式是激光雷达输出的扫描数据,它包含了距离和角度信息。而PointCloud2格式则是一种更为灵活的点云数据表示方式,它包含了点的位置、颜色、法线等多种属性。 要实现这个转换,可以使用ROS提供的相关功能包,如sensor_msgs和pcl_ros。首先,需要创建一个rosbag文件,其中包含了LaserScan格式的数据。然后,在ROS中启动一个节点,读取rosbag文件中的数据。 接下来,可以使用sensor_msgs包中的LaserScan消息类型的回调函数来获取LaserScan数据。然后,使用pcl_ros包中的相关函数,将LaserScan数据转换成PointCloud2格式的数据。具体的转换过程包括以下几个步骤: 1. 创建一个PointCloud2实例,用于存储转换后的点云数据。 2. 设置PointCloud2的属性,包括点的数据类型、字段名称等。 3. 遍历LaserScan数据,将每一个激光点转换成PointCloud2格式,并添加到PointCloud2实例中。 4. 发布PointCloud2数据,使其可用于其他节点使用。 这样,就成功将LaserScan格式转换为PointCloud2格式了。可以在RViz等工具中查看和处理PointCloud2数据,以进行后续的数据处理和分析。 需要注意的是,转换过程可能涉及到一些数据的处理和计算,如坐标变换、数据滤波等。具体的实现方式可以根据实际需求进行调整和优化。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值