Commit 12cd3b55 authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #10756 from terfendail:orb_firstlevel

parents bbfa2390 26321795
...@@ -307,7 +307,7 @@ public: ...@@ -307,7 +307,7 @@ public:
input_image_linear_size/pow(scaleFactor, nlevels - firstLevel). input_image_linear_size/pow(scaleFactor, nlevels - firstLevel).
@param edgeThreshold This is size of the border where the features are not detected. It should @param edgeThreshold This is size of the border where the features are not detected. It should
roughly match the patchSize parameter. roughly match the patchSize parameter.
@param firstLevel The level of pytramid to put source image to. Previous layers are filled @param firstLevel The level of pyramid to put source image to. Previous layers are filled
with upscaled source image. with upscaled source image.
@param WTA_K The number of points that produce each element of the oriented BRIEF descriptor. The @param WTA_K The number of points that produce each element of the oriented BRIEF descriptor. The
default value 2 means the BRIEF where we take a random point pair and compare their brightnesses, default value 2 means the BRIEF where we take a random point pair and compare their brightnesses,
......
...@@ -673,7 +673,7 @@ public: ...@@ -673,7 +673,7 @@ public:
void setEdgeThreshold(int edgeThreshold_) { edgeThreshold = edgeThreshold_; } void setEdgeThreshold(int edgeThreshold_) { edgeThreshold = edgeThreshold_; }
int getEdgeThreshold() const { return edgeThreshold; } int getEdgeThreshold() const { return edgeThreshold; }
void setFirstLevel(int firstLevel_) { CV_Assert(firstLevel >= 0); firstLevel = firstLevel_; } void setFirstLevel(int firstLevel_) { CV_Assert(firstLevel_ >= 0); firstLevel = firstLevel_; }
int getFirstLevel() const { return firstLevel; } int getFirstLevel() const { return firstLevel; }
void setWTA_K(int wta_k_) { wta_k = wta_k_; } void setWTA_K(int wta_k_) { wta_k = wta_k_; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment