#include "HxImageRep.h"
Go to the source code of this file.
Functions | |
HxImageRep L_HXIMAGEREP | HxPercentile (HxImageRep im, int neighSize, double perc) |
Percentile filter. More... |
|
Percentile filter. Implementation specifics : The neighbourhood functor : HxNgbPercentile2d. The image functor instantiator : HxNgbPercentile2dInst.
00014 { 00015 HxTagList tags; 00016 HxAddTag(tags, "size", neighSize); 00017 HxAddTag(tags, "percentile", perc); 00018 00019 return im.neighbourhoodOp("percentile", tags); 00020 } |