how to find true positives,false positive of an image?

1 次查看(过去 30 天)
i have given an image.how to find true positives,false positives,true negatives,false negatives?
  7 个评论
ramya
ramya 2018-4-16
suppose if i have this image how to find tp fp tn and fn.
Walter Roberson
Walter Roberson 2018-4-16
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.

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Read, Write, and Modify Image 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by