MATLAB: How can i extract the curve from the skeletised ear image

biometricscurve detectionearImage Processing Toolbox

i have a problem in extracting the curve of the ear, could someone help me please ?

Best Answer

Use bwareafilt() to extract the largest skeleton
binaryImage = bwareafilt(binaryImage, 1);
though it might not work if there are breaks in the main ear curve so that all the lines are shorter than the full ear length.
Related Question