-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
jsk_network_tools cant directly support sensor_msgs/Image type #1496
Comments
Following is an example of silverhammer use case.
If the message is general, it should be put under jsk_network_tools. In highspeed, we can use any topic. |
@mmurooka Thx, As you said, it seems lowspeed did not support all msgs types.. |
I see. |
@mmurooka Thx, |
Sorry for late response. This package is not for reducing data size but for
communicating in unstable network.
For data size reduction, you can use throttle to drop frame rate, compress
data (please refer image_transport package. But IMO, compressed image is
not so much useful, because we cannot use an image if any part of data is
broken. silverhummer has a feature to try to communicate even if a part of
data is missing, but we cannot take advantage of it if you use compressed
image. ), or
https://github.com/jsk-ros-pkg/jsk_recognition/tree/master/resized_image_transport,
this package resizes image data taking care of other parameters.
2016年12月8日(木) 8:59 Chen <[email protected]>:
@mmurooka <https://github.com/mmurooka> Thx,
I am using highspeed and it is working now...
Sending an uncompressed mono color image at 10HZ
seems OK, but it still take 3.2MB network.
I may need to resize the image.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#1496 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AB0B0PJ5AC90vKuciXzI_iBZNRH_9bfzks5rF7jfgaJpZM4LHbLb>
.
--
-- ⌘ Yuki Furuta
|
@furushchev
If I change the param of '~message' directly to sensor_msgs/Image
it wont work due to the string parse failure.
I also tested
sensor_msgs/Joy (fail)
sensor_msgs/Imu (success)
std_msgs/* (seem to be OK)
my temporary solution is that I create my own msg type under jsk_network_tools package,
in that way it will work for both type of sensor_msgs/Image and sensor_msgs/Joy...
The text was updated successfully, but these errors were encountered: