ros::NodeHandle nh_; std::string img_pub_name, loca_pub_name, sub_color_name, sub_depth_name, sub_state_name, yolo_engine; float conf_thre; bool img_rotate, infer_state, is_seg; std::vector<std::string> class_names; std::map<std::string, int> all_classes{{"circle",1}, {"others_ballon",2}, {"red_ballon",3}, {"purple_ballon",4}, {"outdoor_ballon",5}}; ros::Publisher img_pub, loca_pub; message_filters::Subscriber<Image> *sub_color, *sub_depth; message_filters::Synchronizer<syncPolicy> *sync_; ros::Subscriber sub_state; cv_bridge::CvImagePtr color_ptr, depth_ptr; YoLov5TRT *yolov5trt; std::vector<Detection> res_boxes; std::vector<float> resized_box; detect_msgs::BoundingBoxes batch_boxes; std::vector<detect_msgs::BoundingBox> boxes; detect_msgs::BoundingBox b;
时间: 2024-04-21 10:24:08 浏览: 188
这段代码是一个类的成员变量的声明部分。其中包含了ROS相关的节点句柄(nh_)和发布器(img_pub和loca_pub),以及消息订阅器(sub_color、sub_depth和sub_state)。还有一些其他的变量,如图像发布器名称(img_pub_name)、目标位置发布器名称(loca_pub_name)、彩色图像订阅器名称(sub_color_name)、深度图像订阅器名称(sub_depth_name)、状态订阅器名称(sub_state_name)、YOLO引擎名称(yolo_engine)、置信度阈值(conf_thre)、图像旋转标志(img_rotate)、推理状态标志(infer_state)和是否进行分割的标志(is_seg)。
接下来是一些数据结构,如类别名称的字符串向量(class_names)和类别与编号的映射关系(all_classes)。
然后是一些指针和对象的声明,如消息过滤器的订阅器指针(sub_color和sub_depth)、同步器指针(sync_)、状态订阅器对象(sub_state)、图像指针对象(color_ptr和depth_ptr)、YOLOv5推理对象指针(yolov5trt)、检测结果的向量(res_boxes)、重新调整后的边界框向量(resized_box)、批量边界框消息对象(batch_boxes)、边界框向量(boxes)和边界框对象(b)。
这些成员变量被用于处理图像消息和执行目标检测推理的过程中。
相关问题
int main(int argc, char** argv) { std::string logs_path = "/home/sage/logs/"; std::string folder1_name = logs_path + get_current_time_M_10(); create_folder(folder1_name); ros::init(argc, argv, "log_fetch"); ros::NodeHandle nh; ros::Subscriber sub = nh.subscribe("/rosout", 1000, callback); //ros::Timer timer1 = nh.createTimer(ros::Duration(600), new_folder_callback); //std::this_thread::sleep_for(std::chrono::seconds(1)); //ros::spin(); bool s=true; while(s){ auto now1 = std::chrono::system_clock::now(); std::time_t now_c1 = std::chrono::system_clock::to_time_t(now1); std::tm parts1 = *std::localtime(&now_c1); if (parts1.tm_min % 10 == 0) { std::string folder_name = logs_path + get_current_time(); create_folder(folder_name); s=false; } } ros::Timer timer1 = nh.createTimer(ros::Duration(600), new_folder_callback); ros::spin(); return 0; }如何修改代码能使程序不发生阻塞
可以将程序中的循环改为使用定时器来触发创建文件夹的操作,这样就不会发生阻塞。具体做法是:注释掉 while 循环部分,取消注释定时器相关的代码,并修改定时器回调函数 new_folder_callback(),使其创建文件夹的操作与原来的 while 循环中的代码一致。修改后的代码如下:
```c++
int main(int argc, char** argv) {
std::string logs_path = "/home/sage/logs/";
std::string folder1_name = logs_path + get_current_time_M_10();
create_folder(folder1_name);
ros::init(argc, argv, "log_fetch");
ros::NodeHandle nh;
ros::Subscriber sub = nh.subscribe("/rosout", 1000, callback);
ros::Timer timer1 = nh.createTimer(ros::Duration(600), new_folder_callback);
ros::spin();
return 0;
}
void new_folder_callback(const ros::TimerEvent&){
std::string folder_name = logs_path + get_current_time();
create_folder(folder_name);
}
```
其中,new_folder_callback() 函数是定时器回调函数,在代码中使用 ros::Timer 创建了一个定时器,每隔 600 秒就会触发一次 new_folder_callback() 函数。这样,定时器将会代替原来的 while 循环,不会发生阻塞。
#include "ros/ros.h" #include "nmea_converter/nmea_converter.hpp" static ros::Publisher pub1, pub2, pub3; static nmea_msgs::Sentence sentence; static std::string sub_topic_name, pub_fix_topic_name, pub_gga_topic_name, pub_gst_topic_name; bool flag = false; void nmea_callback(const nmea_msgs::Sentence::ConstPtr &msg) { sensor_msgs::NavSatFix fix; UnicoreData data; sentence.header = msg->header; sentence.sentence = msg->sentence; bool flag = ConverterToFix(sentence, data, &fix); if (flag == true && fix.header.stamp.toSec() != 0) { pub1.publish(fix); } } int main(int argc, char **argv) { ros::init(argc, argv, "nmea_converter_node"); ros::NodeHandle n; n.getParam("sub_topic_name", sub_topic_name); n.getParam("pub_fix_topic_name", pub_fix_topic_name); n.getParam("pub_gga_topic_name", pub_gga_topic_name); // n.getParam("output_gga", output_gga); std::cout << "sub_topic_name " << sub_topic_name << std::endl; std::cout << "pub_fix_topic_name " << pub_fix_topic_name << std::endl; std::cout << "pub_gga_topic_name " << pub_gga_topic_name << std::endl; std::cout << "pub_rmc_topic_name " << pub_gst_topic_name << std::endl; // std::cout << "output_gga " << output_gga << std::endl; // std::cout << "output_gst " << output_gst << std::endl; ros::Subscriber sub = n.subscribe(sub_topic_name, 1000, nmea_callback); pub1 = n.advertise<sensor_msgs::NavSatFix>(pub_fix_topic_name, 1000); // if (output_gga) // pub2 = n.advertise<nmea_msgs::Gpgga>(pub_gga_topic_name, 1000); // if (output_gst) // pub3 = n.advertise<nmea_msgs::Gpgst>(pub_gst_topic_name, 1000); ros::spin(); return 0; } 能帮我检查上面代码中的错误码
在你的代码中,我没有看到明显的错误码。然而,我注意到有一个可能会导问题的地方。
在 `n.getParam()` 函数中,你尝试从ROS参数服务器中获取参数的值,但是你没有为 `pub_gst_topic_name` 参数调用 `n.getParam()`。然后,你使用 `std::cout` 将其打印出来,但是实际上没有为 `pub_gst_topic_name` 变量赋值。
你可以尝试添加以下代码,以获取 `pub_gst_topic_name` 参数的值:
```cpp
n.getParam("pub_gst_topic_name", pub_gst_topic_name);
std::cout << "pub_gst_topic_name " << pub_gst_topic_name << std::endl;
```
这样,你就可以在终端中查看 `pub_gst_topic_name` 参数的值,以确保它被正确地获取和使用。
如果你在运行代码时遇到其他错误,请提供详细的错误信息和上下文,这样我才能更好地帮助你。
阅读全文