[CPU usage] High CPU usage when rqt_image_view
subscribes to compressed topics
#297
Open
5 tasks done
rqt_image_view
subscribes to compressed topics
#297
recognize
Test results
Possible issues arising
Multiple usb cameras are used in autopilot.
When multiple cameras are used at the same time, the usb_cam driver will use up most of the system CPU resources. Affecting the whole autopilot system
Reason for high compressed image usage: Because
image_raw
has a large transmission bandwidth (190MB/s), the compressed image usage will also be very high.suggestion
Subscribe to
image_raw
: Because of the large transmission bandwidth (>100MB/s), the frequency of subscribing toimage_raw
is reduced. This affects the autopilot perceptionSubscribe to
/image_raw/compressed
: affects image quality and high CPU usage.We are using opencv's resize method:
Posted by: 1920x1080 -> 540x960
Subscriber: 540x960 -> 1920x1080
This way to avoid - large transfer bandwidth causing frequency degradation and compression increasing CPU usage - image quality degradation issues
ultimate
Thank you very much, a great driver!
The text was updated successfully, but these errors were encountered: