How to calculate The classification error rate (E) of iris recognition

조회 수: 2 (최근 30일)
shahrizan jamaludin
shahrizan jamaludin 2015년 8월 29일
댓글: Image Analyst 2015년 8월 29일
Hello, How to calculate The classification error rate (E) of iris recognition in this article by using MATLAB? http://www.di.ubi.pt/~hugomcp/doc/ProencaAlexandreNICE1BTAS2007.pdf A lot of articles used this to calculate the segmentation accuracy. I want to compare the segmentation accuracy of two iris images (ground truth & enhanced image) TQ

답변 (1개)

Image Analyst
Image Analyst 2015년 8월 29일
What's the question? You should know if it identified the correct individual or not. Whatever rates you want to compute can be determined by the true positive, true negative, false positive, and false negative (TP, TN, FP, FN) numbers. From that you can construct the ROC curve.
  댓글 수: 3
Image Analyst
Image Analyst 2015년 8월 29일
OK, they're not defining ground truth by whether it identified the correct individual based on the iris, but by whether their algorithm matches up pixel for pixel with some other binary image that they call "ground truth" which is possibly some binary image created by someone hand-drawing the boundaries.
So, is there something about the xor() function that you don't understand? Just use it like this:
differentPixels = xor(thisImage, groundTruthImage);
fractionDiffPixels = sum(differentPixels(:)) / numel(differentPixels);

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Pattern Recognition and Classification에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by