フィルターのクリア

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 Center および File ExchangeRead, 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