필터 지우기
필터 지우기

How do i cut the unnecessary portion from image other than edge of canal?

조회 수: 1 (최근 30일)
Jainee Solanki
Jainee Solanki 2017년 11월 23일
댓글: Image Analyst 2017년 11월 25일
n=imread('Canal_Images\a7.jpeg'); imshow(n); title('original');
img=rgb2gray(n); imshow(img);
b=edge(img,'canny');
imshow(b); title('canny');
After this, I need to cut the remaining portion other than the edge of the canal. So I need to cut the image to focus only on edge.How can I do it now?

답변 (1개)

KSSV
KSSV 2017년 11월 23일
Read imcrop .

Community Treasure Hunt

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

Start Hunting!

Translated by