ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
ROS Image messages are not necessarily 8-bit data; the Image message supports a variety of encodings.
Unless you specifically tell it not to, cv_bridge will respect the type of the Image message it's operating on, and the resulting cv::Mat will match.
2 | No.2 Revision |
ROS Image messages are not necessarily 8-bit data; the Image message supports a variety of encodings.
Unless you specifically tell it not to, cv_bridge will respect the type of the Image message it's operating on, and the resulting cv::Mat will match.
See the documentation on image_transport and cv_bridge for more.
3 | No.3 Revision |
ROS Image messages are not necessarily 8-bit data; the Image message supports a variety of encodings.encodings. (Note that the message uses an array of 8-bit values to store a binary blob; that doesn't mean it's 8-bit data.)
Unless you specifically tell it not to, cv_bridge will respect the type of the Image message it's operating on, and the resulting cv::Mat will match.
See the documentation on image_transport and cv_bridge for more.