scilab crash when using edilate
Advanced image processing toolbox for Scilab on Unix/Linux/Mac OS
Status: Beta
Brought to you by:
ricardofabbri
If you try to use the function 'edilate' with increasing radius, scilab crashs. For example:
for kk = 1:1:2
x=edilate([ones(10,10)],kk)
end
However, if the same function is used with decreasing radius, no problems occur. For example:
for kk = 2:-1:1
x=edilate([ones(10,10)],kk)
end
I'll take a look at it.