how to convert pixel value to 0 and 1 only or (0 and 255) only?
조회 수: 9 (최근 30일)
이전 댓글 표시
I tried to used (rgb2gray) and (imbinarize) for each image but I cannt get only 1 and 0 value , still have 148 and others
how to fix it?
댓글 수: 3
Image Analyst
2023년 10월 15일
Don't call imread (you already did that) and don't put quotes around im_bin2 in this line:
BW_groundTruth = imread('im_bin2');
Do this instead:
BW_groundTruth = im_bin2;
채택된 답변
Dyuman Joshi
2023년 10월 15일
im2 = imread('Label7027_157.png');
im_gray2 = rgb2gray(im2);
im_bin2 = imbinarize(im_gray2);
all(ismember(im_bin2,[0 1]),'all')
im1 = imread('new7027-157.png');
im_gray1 = rgb2gray(im1);
im_bin1 = imbinarize(im_gray1);
all(ismember(im_bin1,[0 1]),'all')
%% Jcard index
similarity = jaccard(im_bin1,im_bin2)
댓글 수: 2
Dyuman Joshi
2023년 10월 16일
@yasmin ismail, That question is not related to your original question. Also, it is more related to Image processing than it is related to MATLAB. So, I will not be answering it (nor do I have enough experience with Image processing).
And I see that you have already asked a new question here - https://in.mathworks.com/matlabcentral/answers/2033924-is-there-a-method-to-capire-similarity-between-two-images
So, if my answer solved the questions you have asked, please consider accepting it.
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!