need the best algorithm for shape features extraction with complex shaoe
이전 댓글 표시
Hi every body ....if i have complex shape which i Interested in Details of shape..which algorithm can help me to extract the features of this image.... I found the (phog_algorithm)can this algorithm help me????pls help me
this is my image...

i want to extract the shape features of it to make it Ultimate from others cars..
the phog alograthms have this code
function [ features ] = phog( images, bins, L, mode )
features = [];
for group=1:length(images)
fprintf('Analyzing group %d...\n', group);
for image=1:length(images{group})
img = imresize(images{group}{image}, [400 400]);
f = anna_phog(img, bins, 180, L, [1 size(img,1), 1, size(img,2)]', mode);
features(image, :, group) = f;
end
end
end
plz help me
채택된 답변
추가 답변 (6개)
primrose khaleed
2014년 5월 25일
편집: primrose khaleed
2014년 5월 26일
0 개 추천
댓글 수: 2
Image Analyst
2014년 5월 26일
What features will do you any good? About all I know for the feature of an edge is the length of the edge. Do you want that?
primrose khaleed
2014년 5월 26일
primrose khaleed
2014년 5월 27일
0 개 추천
댓글 수: 4
Image Analyst
2014년 5월 27일
I did answer. See above. Basically I don't know how to detect an infinite variety of bombs or whatever under the very complicated underside of vehicles which varies tremendously from one vehicle to another. Since you took on the project I presume that you have some plan or algorithm in mind. I certainly don't have anything that I can do for you in my 5 minute time limit. You're not going to do it in 5 minutes are you? I can't either. You're probably working on it for your Ph.D. so it's way too complicated for me to do for you in 5 minutes.
primrose khaleed
2014년 5월 27일
Image Analyst
2014년 5월 27일
I don't recognize anything in that picture except a drive shaft and tires. And I don't have any code for segmenting out drive shafts or tires. Sorry.
primrose khaleed
2014년 5월 27일
카테고리
도움말 센터 및 File Exchange에서 Object Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
