how to convert pixel value to 0 and 1 only or (0 and 255) only?
11 次查看(过去 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!