watershedswatershedsWatershedsWatershedswatersheds (Operator)
Name
watershedswatershedsWatershedsWatershedswatersheds
— Extract watersheds and basins from an image.
Signature
def watersheds(image: HObject) -> Tuple[HObject, HObject]
Description
watershedswatershedsWatershedsWatershedswatersheds
segments an image based on the topology of
the gray values. The image is interpreted as a “mountain range.”
Higher gray values correspond to “mountains,” while lower gray
values correspond to “valleys.” In the resulting mountain range
watersheds are extracted. These correspond to the bright ridges
between dark basins. On output, the parameter BasinsBasinsBasinsbasinsbasins
contains these basins, while WatershedsWatershedsWatershedswatershedswatersheds
contains the
watersheds, which are at most one pixel wide.
WatershedsWatershedsWatershedswatershedswatersheds
always is a single
region per input image, while BasinsBasinsBasinsbasinsbasins
contains a separate
region for each basin.
It is advisable to apply a smoothing operator (e.g.,
binomial_filterbinomial_filterBinomialFilterBinomialFilterbinomial_filter
or gauss_filtergauss_filterGaussFilterGaussFiltergauss_filter
) to the input image
before calling watershedswatershedsWatershedsWatershedswatersheds
in order to reduce the number of
output regions. A more sophisticated way to reduce the number of
output regions is to merge neighboring basins based on a threshold
criterion by using watersheds_thresholdwatersheds_thresholdWatershedsThresholdWatershedsThresholdwatersheds_threshold
instead (for more
details please refer to the documentation of
watersheds_thresholdwatersheds_thresholdWatershedsThresholdWatershedsThresholdwatersheds_threshold
).
Attention
If the image contains many fine structures or is noisy, many output
regions result, and thus the runtime increases considerably.
Execution Information
- Multithreading type: reentrant (runs in parallel with non-exclusive operators).
- Multithreading scope: global (may be called from any thread).
- Automatically parallelized on tuple level.
Parameters
ImageImageImageimageimage
(input_object) singlechannelimage(-array) →
objectHImageHObjectHObjectHobject (byte / uint2 / real)
Input image.
BasinsBasinsBasinsbasinsbasins
(output_object) region-array →
objectHRegionHObjectHObjectHobject *
Segmented basins.
WatershedsWatershedsWatershedswatershedswatersheds
(output_object) region(-array) →
objectHRegionHObjectHObjectHobject *
Watersheds between the basins.
Example (C++)
#include "HIOStream.h"
#if !defined(USE_IOSTREAM_H)
using namespace std;
#endif
#include "HalconCpp.h"
using namespace Halcon;
int main (int argc, char *argv[])
{
HImage image (argv[1]), gauss;
HWindow win;
cout << "Gauss of original " << endl;
gauss = image.GaussImage (9);
image.Display (win);
HRegion watersheds;
HRegionArray basins = gauss.Watersheds (&watersheds);
win.SetColored (12);
basins.Display (win);
win.Click ();
return (0);
}
Example (C)
read_image(&Cells,"meningg5");
gauss_filter(Cells,&CellsGauss,9);
invert_image(CellsGauss,&CellsInvert);
watersheds(CellsInvert,&Bassins,&Watersheds);
set_colored(WindowHandle,12);
disp_region(Bassins,WindowHandle);
Example (C++)
#include "HIOStream.h"
#if !defined(USE_IOSTREAM_H)
using namespace std;
#endif
#include "HalconCpp.h"
using namespace Halcon;
int main (int argc, char *argv[])
{
HImage image (argv[1]), gauss;
HWindow win;
cout << "Gauss of original " << endl;
gauss = image.GaussImage (9);
image.Display (win);
HRegion watersheds;
HRegionArray basins = gauss.Watersheds (&watersheds);
win.SetColored (12);
basins.Display (win);
win.Click ();
return (0);
}
Example (C++)
#include "HIOStream.h"
#if !defined(USE_IOSTREAM_H)
using namespace std;
#endif
#include "HalconCpp.h"
using namespace Halcon;
int main (int argc, char *argv[])
{
HImage image (argv[1]), gauss;
HWindow win;
cout << "Gauss of original " << endl;
gauss = image.GaussImage (9);
image.Display (win);
HRegion watersheds;
HRegionArray basins = gauss.Watersheds (&watersheds);
win.SetColored (12);
basins.Display (win);
win.Click ();
return (0);
}
Result
watershedswatershedsWatershedsWatershedswatersheds
always returns 2 (
H_MSG_TRUE)
. The behavior with
respect to the input images and output regions can be determined by
setting the values of the flags 'no_object_result'"no_object_result""no_object_result""no_object_result""no_object_result",
'empty_region_result'"empty_region_result""empty_region_result""empty_region_result""empty_region_result", and 'store_empty_region'"store_empty_region""store_empty_region""store_empty_region""store_empty_region"
with set_systemset_systemSetSystemSetSystemset_system
. If necessary, an exception is raised.
Possible Predecessors
binomial_filterbinomial_filterBinomialFilterBinomialFilterbinomial_filter
,
gauss_filtergauss_filterGaussFilterGaussFiltergauss_filter
,
smooth_imagesmooth_imageSmoothImageSmoothImagesmooth_image
,
invert_imageinvert_imageInvertImageInvertImageinvert_image
Possible Successors
expand_regionexpand_regionExpandRegionExpandRegionexpand_region
,
select_shapeselect_shapeSelectShapeSelectShapeselect_shape
,
reduce_domainreduce_domainReduceDomainReduceDomainreduce_domain
,
openingopeningOpeningOpeningopening
Alternatives
watersheds_thresholdwatersheds_thresholdWatershedsThresholdWatershedsThresholdwatersheds_threshold
,
pouringpouringPouringPouringpouring
,
watersheds_markerwatersheds_markerWatershedsMarkerWatershedsMarkerwatersheds_marker
References
L. Vincent, P. Soille: “Watersheds in Digital Space: An Efficient
Algorithm Based on Immersion Simulations”; IEEE Transactions on Pattern
Analysis and Machine Intelligence; vol. 13, no. 6; pp. 583-598; 1991.
Module
Foundation