From a6660613207faac95dfa36b79c6c2dac7553d413 Mon Sep 17 00:00:00 2001 From: Sergi Hernandez <shernand@iri.upc.edu> Date: Wed, 13 Jun 2018 18:03:58 +0200 Subject: [PATCH] Update README.md --- README.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 3f0d730..4a322c9 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,15 @@ # 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 transformed 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 balck regions, being the background white. +appear as black 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 desierd window center value for the Hue parameter. This parameter is defined from 0 to 180. + * H_center (integer): the desired 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 desierd window center value for the Saturation parameter. This parameter is defined from 0 to 255. + * S_center (integer): the desired 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 desierd window center value for the Value parameter. This parameter is defined from 0 to 255. + * V_center (integer): the desired 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. -- GitLab