#include "HxSF.h"
Go to the source code of this file.
Functions | |
| HxImageRep L_HXIMAGEREP | HxInfimumReconstruction (HxImageRep im, HxImageRep mask, HxSF sf) |
| function y=mminfrec_equ( f, g, bc ) n = length(f); y = mmcdil(f,g,bc,n);. More... | |
|
||||||||||||||||
|
function y=mminfrec_equ( f, g, bc ) n = length(f); y = mmcdil(f,g,bc,n);.
00025 {
00026 HxImageRep res;
00027
00028 //this might be a huge number.
00029 //defintion is to do conditional dilation untill stability
00030 //I should check for stability here, or in ConditionalDilation
00031 //by comparing two subsequent images
00032 //Because this is also expesinve, I might check only after every 10 iterations
00033
00034 int n = im.dimensionSize(1)*im.dimensionSize(2);
00035
00036 res = HxConditionalDilation(im, mask, sf, n);
00037 return res;
00038 }
|
1.2.12 written by Dimitri van Heesch,
© 1997-2001