HomeSort by relevance Sort by last modified time
    Searched refs:angleMatrix (Results 1 - 2 of 2) sorted by null

  /external/opencv3/modules/shape/src/
scd_def.hpp 100 cv::Mat& angleMatrix) const;
sc_dis.cpp 328 cv::Mat angleMatrix = cv::Mat::zeros(contourMat.cols, contourMat.cols, CV_32F);
334 buildAngleMatrix(contourMat, angleMatrix);
360 if (angleMatrix.at<float>(ptidx, cmp)<angspaces[i])
437 void SCD::buildAngleMatrix(cv::Mat &contour, cv::Mat &angleMatrix) const
460 angleMatrix.at<float>(i,j)=0.0;
465 angleMatrix.at<float>(i,j) = std::atan2(dif.y, dif.x);
471 angleMatrix.at<float>(i,j) -= refAngle;
473 angleMatrix.at<float>(i,j) = float(fmod(double(angleMatrix.at<float>(i,j)+(double)FLT_EPSILON),2*CV_PI)+CV_PI);

Completed in 48 milliseconds