필터 지우기
필터 지우기

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

조회 수: 2 (최근 30일)
ramya
ramya 2018년 4월 16일
댓글: Walter Roberson 2018년 4월 16일
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