#include "HxImageRep.h"
Go to the source code of this file.
Functions | |
HxImageRep L_HXIMAGEREP | HxWatershedMarkers (HxImageRep input, HxImageRep mask, int conn=4, bool doLabelMask=false) |
Watershed from markers. More... |
|
Watershed from markers.
00200 { 00201 HxTagList tags; 00202 HxAddTag(tags, "connectivity", conn); 00203 HxAddTag(tags, "doLabelPlusPlus", doLabelMask); 00204 00205 return input.queueBasedOp(mask, "qWatershedMarkers", tags); 00206 } |