Searched refs:n_rot_ (Results 1 - 1 of 1) sorted by relevance

/external/opencv3/modules/features2d/src/
H A Dbrisk.cpp129 static const unsigned int n_rot_; // discretization of the rotation look-up member in class:cv::BRISK_Impl
278 const unsigned int BRISK_Impl::n_rot_ = 1024; // discretization of the rotation look-up member in class:cv::BRISK_Impl
341 patternPoints_ = new BriskPatternPoint[points_ * scales_ * n_rot_];
360 for (size_t rot = 0; rot < n_rot_; ++rot)
362 theta = double(rot) * 2 * CV_PI / double(n_rot_); // this is the rotation of the feature
456 const BriskPatternPoint& briskPoint = patternPoints_[scale * n_rot_ * points_ + rot * points_ + point];
753 theta = (int) (n_rot_ * (kp.angle / (360.0)) + 0.5);
755 theta += n_rot_;
756 if (theta >= int(n_rot_))
757 theta -= n_rot_;
[all...]

Completed in 597 milliseconds