how to find true positives,false positive of an image?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
i have given an image.how to find true positives,false positives,true negatives,false negatives?
7 Kommentare
Walter Roberson
am 16 Apr. 2018
You can
img = imread('pic.bmp');
pixel_is_white = img > 0;
Your image only contains 0 (black) and 255 (white) (also used for the background).
However, there is no obvious connection between anything in that image and truth or not truth.
Antworten (0)
Siehe auch
Kategorien
Mehr zu Feature Detection and Extraction finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!