You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem is that raspicam_node saves the resolution from launchfile but raspivid is cheating and changing it by itself. The raspicam_node should check what the raspivid is returning and correcting set resolution accordingly.
Example: I have set a 1640x1232 resolution but raspivid returned a data with size equal to 6091008 instead of 6061440. To fix it I have changed the resolution in config to 1648x1232.
I tried to create a new launch file with 1920x1080 resolution for capture. Here it is, to me it looks good.
However, when I try to subscribe to
image_raw
, both on the Pi3 or remotely, I get this errorAnd it seems to make sense, given that
6266880
is really themsg.data.size()
coming fromraspicam_node.cpp:277
And before publishing, if I add:
the topic becomes valid and the image is correctly shown by image_view. Any idea on how to correctly fix this issue?
The text was updated successfully, but these errors were encountered: