No BSD License  

Highlights from
IDE@L

image thumbnail
from IDE@L by Joseph Morlier
IDE@L is a toolbox for Matlab dealing with Tree rings detection by image processing. This is a Graph

T_edge=edge_parameter(imo)
function T_edge=edge_parameter(imo)
%Edge detection parameter input
% h=figure(1); imshow(imo);set(h,'name',nomfich);
prompt={'Threshold'};
title='Threshold Input for Edge Detection';
lines=1;
T_edge=[0.1 0.2];
va{1}=num2str(T_edge);

valeur=inputdlg(prompt,title,lines,va);
T_edge=str2num(valeur{1});
 

Contact us at files@mathworks.com