本文整理汇总了C++中cv::Mat_::dot方法的典型用法代码示例。如果您正苦于以下问题:C++ Mat_::dot方法的具体用法?C++ Mat_::dot怎么用?C++ Mat_::dot使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cv::Mat_
的用法示例。
在下文中一共展示了Mat_::dot方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: predict
float SVMClassifier::predict( const cv::Mat_<float>& z) const
{
if ( svmp.isLinear())
return (z.dot(linx) - b)/linx.total(); // Normalise by the vector length
double result = -b;
KernelThreadFunc ktf( as, kernel, xs);
ktf.calcResult( 0, numSVs, &z);
result += ktf.getResult();
return result / z.total();
/*
static const int nthreads = boost::thread::hardware_concurrency(); // CPU threads available
const int segSz = numSVs / nthreads;
int rem = numSVs % nthreads;
boost::thread_group tgroup;
vector<KernelThreadFunc*> tobjs(nthreads);
int segOffset = 0;
for ( int i = 0; i < nthreads; ++i)
{
int ssz = segSz;
if ( rem > 0)
{
ssz++;
rem--;
} // end if
tobjs[i] = new KernelThreadFunc( as, kernel, xs);
tgroup.create_thread( boost::bind( &KernelThreadFunc::calcResult, tobjs[i], segOffset, ssz, &z)); // Start thread
segOffset += ssz; // Offset for next thread
} // end for
tgroup.join_all(); // All processing done
// Collect the result for return
for ( int i = 0; i < nthreads; ++i)
{
result += tobjs[i]->getResult();
delete tobjs[i];
} // end for
return result / z.total(); // Normalise by the vector length
*/
} // end predict
示例2: VO_GaborFiltering
/**
* @brief Gabor filtering
* @ref http://en.wikipedia.org/wiki/Gabor_filter
*/
float VO_Gabor::VO_GaborFiltering(const cv::Mat_<float>& iImg)
{
return iImg.dot(this->m_VOWindowFunc->m_MatWindowedKernel);
}