Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv_contrib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv_contrib
Commits
bc9221a2
Commit
bc9221a2
authored
Jan 21, 2019
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1968 from charlesastaylor:detect-params-typo
parents
bca1ff20
87fcb025
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
aruco.hpp
modules/aruco/include/opencv2/aruco.hpp
+2
-2
aruco_detection.markdown
.../aruco/tutorials/aruco_detection/aruco_detection.markdown
+2
-2
No files found.
modules/aruco/include/opencv2/aruco.hpp
View file @
bc9221a2
...
...
@@ -116,11 +116,11 @@ enum CornerRefineMethod{
* - cornerRefinementMinAccuracy: minimum error for the stop cristeria of the corner refinement
* process (default: 0.1)
* - markerBorderBits: number of bits of the marker border, i.e. marker border width (default 1).
* - perpectiveRemovePixelPerCell: number of bits (per dimension) for each cell of the marker
* - per
s
pectiveRemovePixelPerCell: number of bits (per dimension) for each cell of the marker
* when removing the perspective (default 8).
* - perspectiveRemoveIgnoredMarginPerCell: width of the margin of pixels on each cell not
* considered for the determination of the cell bit. Represents the rate respect to the total
* size of the cell, i.e. perpectiveRemovePixelPerCell (default 0.13)
* size of the cell, i.e. per
s
pectiveRemovePixelPerCell (default 0.13)
* - maxErroneousBitsInBorderRate: maximum number of accepted erroneous bits in the border (i.e.
* number of allowed white bits in the border). Represented as a rate respect to the total
* number of bits per marker (default 0.35).
...
...
modules/aruco/tutorials/aruco_detection/aruco_detection.markdown
View file @
bc9221a2
...
...
@@ -627,7 +627,7 @@ depending if the mean value is higher or lower than 128.
Default value: 5.0
- ```
int perpectiveRemovePixelPerCell
```
- ```
int per
s
pectiveRemovePixelPerCell
```
This parameter determines the number of pixels (per cell) in the obtained image after removing perspective
distortion (including the border). This is the size of the red squares in the image above.
...
...
@@ -636,7 +636,7 @@ For instance, lets assume we are dealing with markers of 5x5 bits and border siz
(see ```
markerBorderBits
```). Then, the total number of cells/bits per dimension is 5 + 2*1 = 7 (the border
has to be counted twice). The total number of cells is 7x7.
If the value of ```
perpectiveRemovePixelPerCell
``` is 10, then the size of the obtained image will be
If the value of ```
per
s
pectiveRemovePixelPerCell
``` is 10, then the size of the obtained image will be
10*7 = 70 -> 70x70 pixels.
A higher value of this parameter can improve the bits extraction process (up to some degree), however it can penalize
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment