#include "HxImageRep.h"
Go to the source code of this file.
Functions | |
HxImageRep L_HXIMAGEREP | HxWatershedMarkers2 (HxImageRep input, HxImageRep mask, int conn=4, bool doLabelMask=false, int costMethod=0) |
Watershed from markers, second implementation. More... |
|
Watershed from markers, second implementation.
00256 { 00257 HxTagList tags; 00258 HxAddTag(tags, "connectivity", conn); 00259 HxAddTag(tags, "doLabelPlusPlus", doLabelMask); 00260 HxAddTag(tags, "costmethod", costMethod); 00261 00262 return input.queueBasedOp(mask, "qWatershedMarkers2", tags); 00263 } |