Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mobile_robotics
ADC
ADC_2018
iri_blob_detector
Commits
a6660613
Commit
a6660613
authored
Jun 13, 2018
by
Sergi Hernandez
Browse files
Update README.md
parent
39977ade
Changes
1
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
a6660613
# Description
This ROS node implements the BlobDetector provided in OpenCV. Each input image is trasformed to the HSV color
This ROS node implements the BlobDetector provided in OpenCV. Each input image is tra
n
sformed to the HSV color
space and then filtered with the desired maximum and minimum values for the Hue, Saturation and Value parameters.
Then all the connected regions within a desired maximum and minimum sizes are detected and published. The
segmented image is also published.
A nodelete version is also provided to reduce the overhead of sending the images from one node to another in the
same computer.
This ROS node does not require the camera to be calibrated, however it is highly recommended. Follow the calibration
procedure presented here.
procedure presented
[
link
](
http://wiki.ros.org/camera_calibration/Tutorials/MonocularCalibration
"
here
"
)
.
## subscribers
...
...
@@ -23,7 +26,7 @@ This node publishes the following topics:
*
~/image_out/camera_info (sensor_msgs/CameraInfo.msg): the same camera information message received.
*
~/image_out/image_raw (sensor_msgs/Image.msg): a black and white image with the segmented regions. The segmented blobs will
appear as b
a
lck regions, being the background white.
appear as bl
a
ck regions, being the background white.
*
~/blobs (iri_blob_detector/blob_array.msg): a list of all the connected regions that comply with the desired
parameters. The information provided for each blob is:
...
...
@@ -37,15 +40,15 @@ parameters. The information provided for each blob is:
This node has the following parameters. These parameters can be modified with the dynamic reconfigure tool.
*
H_center (integer): the desi
e
rd window center value for the Hue parameter. This parameter is defined from 0 to 180.
*
H_center (integer): the desir
e
d window center value for the Hue parameter. This parameter is defined from 0 to 180.
*
H_window (integer): the desired width of the Hue parameter window. This parameter is defined from 0 to 180.
*
S_center (integer): the desi
e
rd window center value for the Saturation parameter. This parameter is defined from 0 to 255.
*
S_center (integer): the desir
e
d window center value for the Saturation parameter. This parameter is defined from 0 to 255.
*
S_window (integer): the desired width of the Saturation parameter window. This parameter is defined from 0 to 255.
*
V_center (integer): the desi
e
rd window center value for the Value parameter. This parameter is defined from 0 to 255.
*
V_center (integer): the desir
e
d window center value for the Value parameter. This parameter is defined from 0 to 255.
*
V_window (integer): the desired width of the Value parameter window. This parameter is defined from 0 to 255.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment