MATLAB: To find edge value of a object

image analysisimage processing

how to find the edge value of a image using matlab

Best Answer

the_edge = edge(I);
edge_value = I(the_edge);
You're going to have to be more specific if you want meaningful help.