-
Notifications
You must be signed in to change notification settings - Fork 153
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
Changing the FOV of the Lidar in ROS #227
Comments
We don't expose the ability to set azimuth window via ros launch file. We have |
Hi @Samahu |
Sure, create a config file in some known path and add the following content: {
"azimuth_window":
[
0,
180000
],
} This config would set the azimuth window to 180 degrees. Let's name the file ros2 service call /ouster/set_config ouster_sensor_msgs/srv/SetConfig "{config_file: /path/to/file/os-xxx.json}" Make sure to set the correct path of your file. If the call was successful you should get the following response: ouster_sensor_msgs.srv.SetConfig_Response(config='{\n "azimuth_window": \n [\n 0,\n 180000\n ]\n}') The driver will stop momentarily and and restart with new the new azimuth window configuration. |
Hi @Samahu, Thank you for your response. I would like to know whether the above configuration will only limit the field of view of the point cloud or image information (signal image, etc.) as well? Best regards, |
It will affect both simultaneously |
I want to change the FOV of the Ouster OS0-32 from [0-360] to [0, 180000] and in the Software User guide i see the use of
set_config_param azimuth_window
How can i set this param in ros? I don't see this particular rosparam in rosparam list.Platform :
The text was updated successfully, but these errors were encountered: