In my door detection project , i want to apply svd before edge detection process. my specific query is how i perform edge detection process by using this svd value([u,s,v]) .

 채택된 답변

KALYAN ACHARJYA
KALYAN ACHARJYA 2019년 7월 17일
편집: KALYAN ACHARJYA 2019년 7월 17일

0 개 추천

im=rgb2gray(imread('2.png'));
figure,imshow(im);
[data_svd, S,D]=svd(double(im));
edge_image=edge(data_svd,'canny');
figure,imshow(edge_image);
pq.png
Is this you are looking for?

추가 답변 (0개)

질문:

2019년 7월 17일

댓글:

2019년 7월 17일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by