Finding center line of an image
2 次查看(过去 30 天)
显示 更早的评论
I have this image after undergo canny edge detection using this function:
clear all; clc; a = imread('ddd.jpg'); b = rgb2gray(a); imshow(b); h = ones(7,7)/49; c = imfilter(b,h);
d = edge(c,'canny');
e = bwmorph(d, 'dilate') imshow(e)
Then, I want to find the center line of human body (human skeleton) of this filtered image. How am I supposed to do that? Is there any specific algorithm that I can use?
3 个评论
回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!