Some cleanup.

This commit is contained in:
Tadas Baltrusaitis
2017-08-30 15:35:03 +01:00
parent 0ecf4e152c
commit 53a1881ede
2 changed files with 47 additions and 25 deletions

View File

@@ -226,7 +226,12 @@ void Patch_experts::Response(vector<cv::Mat_<float> >& patch_expert_responses, c
// Get intensity response either from the SVR, CCNF, or CEN patch experts (prefer CEN as they are the most accurate so far)
if (!cen_expert_intensity.empty())
{
cen_expert_intensity[scale][view_id][i].ResponseSparse(area_of_interest, patch_expert_responses[i], interp_mat);
// A slower, but slightly more accurate version
//cen_expert_intensity[scale][view_id][i].Response(area_of_interest, patch_expert_responses[i]);
}
else if (!ccnf_expert_intensity.empty())
{