How to study the effectiveness of feature extraction ?
1 回表示 (過去 30 日間)
古いコメントを表示
I am working on the extraction of fine detailed features in fingerprint mainly pores(white blobs). Now I need to validate the proposed extraction process,most of the research work checks it through state of art matching algorithms.I cannot implement those matching algorithms in the limited time available.How else can I justify my extraction process?
0 件のコメント
回答 (2 件)
Jeff E
2015 年 5 月 1 日
Manually identify the pores in a (small) set of images, and compare the two results. Ideally by looking at the overlapping and non-overlapping events and computing the confusion matrix.
3 件のコメント
Jeff E
2015 年 5 月 1 日
When you manually define your pores, use roipoly to create a binary mask. You can then compare the manually annotated mask to the one you need to validate, with the manual mask serving as the ground truth.
true_positive = bwarea(manual_mask & automated_mask) ;
true_negative = bwarea(~manual_mask & ~automated_mask) ;
false_positive = bwarea(~manual_mask & auotmated_mask) ;
false_negative = bwarea(manual_mask & ~automated_mask) ;
Image Analyst
2015 年 5 月 1 日
The usual method is to construct an ROC curve.
"ROC analysis since then has been used in medicine, radiology, biometrics, and other areas for many decades and is increasingly used in machine learning and data mining research........"
This is a good opportunity for you to learn about it.
参考
カテゴリ
Help Center および File Exchange で Image Segmentation and Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!