File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -307,7 +307,7 @@ class CV_EXPORTS_W ORB : public Feature2D
307
307
input_image_linear_size/pow(scaleFactor, nlevels - firstLevel).
308
308
@param edgeThreshold This is size of the border where the features are not detected. It should
309
309
roughly match the patchSize parameter.
310
- @param firstLevel The level of pytramid to put source image to. Previous layers are filled
310
+ @param firstLevel The level of pyramid to put source image to. Previous layers are filled
311
311
with upscaled source image.
312
312
@param WTA_K The number of points that produce each element of the oriented BRIEF descriptor. The
313
313
default value 2 means the BRIEF where we take a random point pair and compare their brightnesses,
Original file line number Diff line number Diff line change @@ -673,7 +673,7 @@ class ORB_Impl : public ORB
673
673
void setEdgeThreshold (int edgeThreshold_) { edgeThreshold = edgeThreshold_; }
674
674
int getEdgeThreshold () const { return edgeThreshold; }
675
675
676
- void setFirstLevel (int firstLevel_) { CV_Assert (firstLevel >= 0 ); firstLevel = firstLevel_; }
676
+ void setFirstLevel (int firstLevel_) { CV_Assert (firstLevel_ >= 0 ); firstLevel = firstLevel_; }
677
677
int getFirstLevel () const { return firstLevel; }
678
678
679
679
void setWTA_K (int wta_k_) { wta_k = wta_k_; }
You can’t perform that action at this time.
0 commit comments