本文整理汇总了C++中MetaData::load_im方法的典型用法代码示例。如果您正苦于以下问题:C++ MetaData::load_im方法的具体用法?C++ MetaData::load_im怎么用?C++ MetaData::load_im使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MetaData
的用法示例。
在下文中一共展示了MetaData::load_im方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: do_synther_error
IKSyntherError do_synther_error(MetaData&metadata)
{
IKSyntherError ikerr;
// find the training example with closest pose to the testing example
double min_dist;
shared_ptr<MetaData> oracle_datum = do_closest_exemplar_ik(metadata,min_dist);
// calc the pose error
ikerr.pose_error = min_dist;
// get the bbs
vector<AnnotationBoundingBox> test_bbs = metric_positive(metadata);
vector<AnnotationBoundingBox> train_bbs = metric_positive(*oracle_datum);
if(test_bbs.size() > 0 and train_bbs.size() > 0)
{
// calc the template error.
AnnotationBoundingBox test_bb = test_bbs.front();
ImRGBZ test_im = (*metadata.load_im())(test_bb);
VolumetricTemplate test_templ(test_im,test_bb.depth,nullptr,RotatedRect());
//
AnnotationBoundingBox train_bb = train_bbs.front();
ImRGBZ train_im = (*oracle_datum->load_im())(train_bb);
VolumetricTemplate train_templ(train_im,train_bb.depth,nullptr,RotatedRect());
//
ikerr.template_error = 1 - test_templ.cor(train_templ);
log_im_decay_freq("do_synther_error",[&]()
{
Mat vis_test = imageeq("",test_templ.getTIm(),false,false);
Mat vis_train = imageeq("",train_templ.getTIm(),false,false);
return horizCat(vis_test,vis_train);
});
}
else
ikerr.template_error = 1.0;
return ikerr;
}