How can I extend an edge?

Hi
I need to find the surrounding edge of a region. I used these lines but it don't give me a good result . log find an edge belonging to the region when I need to find the edge that surrounds the region. Is there a matlab function that extends the edge given by log 1 or 2 pixels
I=imread('image.jpg');
edg = edge(I,'log',0);
thankx

답변 (1개)

Image Analyst
Image Analyst 2012년 11월 2일

0 개 추천

No.

댓글 수: 1

Tomas
Tomas 2012년 11월 2일
thank you for your reply, is it possible to dilate the edge to the outside of the region. How can i correct these lines?
NHOOD = [ 0 1 0; 1 1 1; 0 1 0];
SE = strel('arbitrary', NHOOD);
Dilate = imdilate(Edge, SE);

댓글을 달려면 로그인하십시오.

태그

질문:

2012년 11월 2일

Community Treasure Hunt

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

Start Hunting!

Translated by