Owen code for imopen morphology function why not work ?how to solve ?
이전 댓글 표시
clc
clear all
close all
im=imread('C:\Users\ASLAN\Desktop\ders\image processing\hw2\fingerprint.tif');
[m,n]=size(im);
a=[0 1 0;1 1 1;0 1 0];
for i=1:m
for j=1:n
if a(i,j)==0
im(i,j)=0;
[i,j]=min(im);
mm=min(im);
end
end
end
figure
imshow (mm);
댓글 수: 2
KALYAN ACHARJYA
2019년 11월 5일
[i,j]=min(im) ;
Can you elaborate more, what you are trying to do?
aslan memo
2019년 11월 5일
편집: aslan memo
2019년 11월 5일
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Morphological Operations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
