Lines Matching refs:BriskLayer

146 class CV_EXPORTS BriskLayer  class
156 BriskLayer(const cv::Mat& img, float scale = 1.0f, float offset = 0.0f);
158 BriskLayer(const BriskLayer& layer, int mode);
268 std::vector<BriskLayer> pyramid_;
849 pyramid_.push_back(BriskLayer(image.clone())); in constructPyramid()
852 pyramid_.push_back(BriskLayer(pyramid_.back(), BriskLayer::CommonParams::TWOTHIRDSAMPLE)); in constructPyramid()
858 pyramid_.push_back(BriskLayer(pyramid_[i - 2], BriskLayer::CommonParams::HALFSAMPLE)); in constructPyramid()
859 pyramid_.push_back(BriskLayer(pyramid_[i - 1], BriskLayer::CommonParams::HALFSAMPLE)); in constructPyramid()
879 BriskLayer& l = pyramid_[i]; in getKeypoints()
895 BriskLayer& l = pyramid_[0]; in getKeypoints()
919 BriskLayer& l = pyramid_[i]; in getKeypoints()
989 const BriskLayer& l = pyramid_[layer + 1]; in getScoreAbove()
1032 const BriskLayer& l = pyramid_[layer - 1]; in getScoreBelow()
1253 const BriskLayer& thisLayer = pyramid_[layer]; in refine3D()
1274 const BriskLayer& l = pyramid_[0]; in refine3D()
1420 const BriskLayer& layerAbove = pyramid_[layer + 1]; in getScoreMaxAbove()
1616 const BriskLayer& layerBelow = pyramid_[layer - 1]; in getScoreMaxBelow()
2067 BriskLayer::BriskLayer(const cv::Mat& img_in, float scale_in, float offset_in) in BriskLayer() function in cv::BriskLayer
2080 BriskLayer::BriskLayer(const BriskLayer& layer, int mode) in BriskLayer() function in cv::BriskLayer
2105 BriskLayer::getAgastPoints(int threshold, std::vector<KeyPoint>& keypoints) in getAgastPoints()
2118 BriskLayer::getAgastScore(int x, int y, int threshold) const in getAgastScore()
2136 BriskLayer::getAgastScore_5_8(int x, int y, int threshold) const in getAgastScore_5_8()
2149 BriskLayer::getAgastScore(float xf, float yf, int threshold_in, float scale_in) const in getAgastScore()
2183 BriskLayer::value(const cv::Mat& mat, float xf, float yf, float scale_in) const in value()
2289 BriskLayer::halfsample(const cv::Mat& srcimg, cv::Mat& dstimg) in halfsample()
2300 BriskLayer::twothirdsample(const cv::Mat& srcimg, cv::Mat& dstimg) in twothirdsample()