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