Skip to content

Commit

Permalink
Fix parameter names in components.rst (ros-perception#959)
Browse files Browse the repository at this point in the history
In the docs for `image_proc::CropDecimateNode` , change the parameter
names `x_offset` and `y_offset` to `offset_x` and `offset_y`, matching
the actual names of parameters defined in crop_decimate.cpp
  • Loading branch information
NoahMollerstuen authored and Krzysztof Wojciechowski committed May 27, 2024
1 parent bd9b73f commit 7d423e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions image_proc/doc/components.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ Parameters
* **queue_size** (int, default: 5): Size of message queue for synchronizing
image and camera_info topics. You may need to raise this if images take
significantly longer to travel over the network than camera info.
* **x_offset** (int, default: 0): X offset of the region of interest. Range: 0 to 2447
* **y_offset** (int, default: 0): Y offset of the region of interest. Range: 0 to 2049
* **offset_x** (int, default: 0): X offset of the region of interest. Range: 0 to 2447
* **offset_y** (int, default: 0): Y offset of the region of interest. Range: 0 to 2049
* **width** (int, default: 0): Width of the region of interest. Range: 0 to 2448
* **height** (int, default: 0): Height of the region of interest. Range: 0 to 2050

Expand Down

0 comments on commit 7d423e7

Please sign in to comment.