Comparing images of the same on MATLAB and selecting particular features.
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Rana Jud
am 16 Sep. 2020
Kommentiert: Rana Jud
am 26 Sep. 2020
How do I match multiple coloured images to other images of the same but that is in black and white and eliminate everything that matches with the black part and keep only the parts of the image that match with the white on MATLAB as part of a CNN?
0 Kommentare
Akzeptierte Antwort
Aditya Patil
am 22 Sep. 2020
As per my understanding, you have an image that has only black and white colors. You have other colored images, from which you would like to remove parts, where the corresponding pixel in the b/w image is black.
Depending on your use case, you could load the images as matrices. Then create a binary mask based on b/w image, as follows
bwimage = imread(image_path)
flag = [bwimage == value] % where value is value of white
colorimage(flag) = 0 % or another appropriate value
Designing a CNN to do this might not be necessary as this can be done easily with few lines of code.
2 Kommentare
Image Analyst
am 22 Sep. 2020
Rana, attach a few of the images so we have some idea of what you're talking about.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Deep Learning Toolbox finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
.png)
