当前位置:网站首页>Problems encountered in installing Yolo3 target detection module in Autoware
Problems encountered in installing Yolo3 target detection module in Autoware
2022-08-05 06:18:00 【cql_cqu】
"The predecessors planted the trees, and the later generations enjoyed the shade!" The problems encountered in the experiment were summarized on the basis of other netizens, so thanks to the bloggers who provided help!
Written in the front: Since I am doing target detection based on the fusion of camera and lidar information, I use the Autoware framework for experiments, and install the Autoware open source software framework in the early stage. The specific installation steps are listed by many netizens in the blog.To repeat, the installation tutorial is recommended: https://blog.csdn.net/yourgreatfather/article/details/86504547
I installed it successfully under the tutorial of this netizen.
Problem description: Since Autoware->Computing integrates YOLO3 related packages, as shown below.

So to install YOLO3 in Autoware, you only need to create a new data folder in the corresponding vision_darknet_detect/darknet/ directory, and then download the weight model trained by YOLO to the data folder.The command is as follows:
cd datawget https://pjreddie.com/media/files/yolov3.weightswget https://pjreddie.com/media/files/yolov2.weightsRun YOLO3 detection:
roslaunch vision_darknet_detect vision_yolo3_detect.launchThere is a problem after running: Error:cannot launch type of node[vision_darknet_detect/]...
Problem solution 1: Reference: https://blog.csdn.net/banzhuan133/article/details/78177676
Solution 2: There may be a package vision_darknet_detect with the same name, use the following command:
catkin_find --without-underlays --libexec --share vision_darknet_detectCheck if there is a package with the same name. After the query, there are two packages with the same name in different paths. Just delete the package under the path where YOLO3 is not installed.
The two vision_darknet_detect paths in my computer are: /home/yyl/Autoware-master/ros/devel/share/vision_darknet_detect and /home/yyl/Autoware-master/ros/src/computing/perception/detection/vision_detector/packages/vision_darknet_detect
After I delete vision_darknet_detect in the first path, I can run YOLO3, and the test results under Autoware->Computing can also display the real-time detected objects.
边栏推荐
- Operation and maintenance engineer, come and pick up the wool
- 入门文档01 series按顺序执行
- 静态路由
- Getting Started Document 01 series in order
- By solving these three problems, the operation and maintenance efficiency will exceed 90% of the hospital
- vim教程:vimtutor
- 深度 Zabbix 使用指南——来自惨绿少年
- Getting Started Documentation 12 webserve + Hot Updates
- 请问下通过flink sql读取hologres 的两张表的 binlog,然后如何进行join?
- Advantages of overseas servers
猜你喜欢
随机推荐
Operation and maintenance engineer, come and pick up the wool
Spark source code-task submission process-6.1-sparkContext initialization-create spark driver side execution environment SparkEnv
入门文档05 使用cb()指示当前任务已完成
[Day1] (Super detailed steps) Build a soft RAID disk array
7步完成云上监控
Mina的长连接和短连接
Cloud computing - osi seven layers and TCP\IP protocol
Getting Started Doc 06 Adding files to a stream
Technology Sharing Miscellaneous Technologies
NIO works is analysed
618, you may be able to wake up a little bit
Account and Permission Management
To TrueNAS PVE through hard disk
千亿IT运维市场,产品要凭实力说话
正则表达式小实例--去掉字符串中间和两边的空格
【Day8】RAID Disk Array
入门文档01 series按顺序执行
CIPU, what impact does it have on the cloud computing industry?
Logical volume creation
Hugo builds a personal blog









