#include "HxSF.h"
Go to the source code of this file.
Functions | |
HxImageRep L_HXIMAGEREP | HxMorphologicalGradient2 (HxImageRep im, HxSF sf1, HxSF sf2) |
use the different SF for dilation (sf1) and erosion (sf2). More... |
|
use the different SF for dilation (sf1) and erosion (sf2). formula: return dilation(im,sf1) - erosion(im,sf2)
00017 { 00018 return HxSub( HxDilation(im, sf1), HxErosion(im, sf2) ); 00019 } |