资源简介

图像处理的查准率和查全率的代码,适合用于图像图像的检测,目标的检测的评估

资源截图

代码片段和文件信息

function [recall precision rate] = recall_precision(Wtrue Dhat)
%
% Input:
%    Wtrue = true neighbors [Ntest * Ndataset] can be a full matrix NxN
%    Dhat  = estimated distances
%
% Output:
%
%                  exp. # of good pairs inside hamming ball of radius <= (n-1)
%  precision(n) = --------------------------------------------------------------
%                  exp. # of total pairs inside hamming ball of radius <= (n-1)
%
%               exp. # of good pairs inside hamming ball of radius <= (n-1)
%  recall(n) = --------------------------------------------------------------
%                          exp. # of total good pairs 

 max_hamm = max(Dhat(:)); %将Dhat(:)按列拉成一个1维列向量,然后取最大值

hamm_thresh = min(3max_hamm);%比较3max_hamm,取两者的最小值

[Ntest Ntrain] = size

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        2662  2013-09-14 10:27  recall_precision.m

评论

共有 条评论