Home
last modified time | relevance | path

Searched refs:angleMatrix (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/shape/src/
Dsc_dis.cpp328 cv::Mat angleMatrix = cv::Mat::zeros(contourMat.cols, contourMat.cols, CV_32F); in extractSCD() local
334 buildAngleMatrix(contourMat, angleMatrix); in extractSCD()
360 if (angleMatrix.at<float>(ptidx, cmp)<angspaces[i]) in extractSCD()
437 void SCD::buildAngleMatrix(cv::Mat &contour, cv::Mat &angleMatrix) const in buildAngleMatrix()
460 angleMatrix.at<float>(i,j)=0.0; in buildAngleMatrix()
465 angleMatrix.at<float>(i,j) = std::atan2(dif.y, dif.x); in buildAngleMatrix()
471 angleMatrix.at<float>(i,j) -= refAngle; in buildAngleMatrix()
473angleMatrix.at<float>(i,j) = float(fmod(double(angleMatrix.at<float>(i,j)+(double)FLT_EPSILON),2*C… in buildAngleMatrix()
Dscd_def.hpp100 cv::Mat& angleMatrix) const;