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
68e19d50
Commit
68e19d50
authored
Jan 26, 2017
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #970 from sovrasov:aruco_board_create_dbg_fix
parents
ca7953ad
820af3a0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
8 deletions
+5
-8
aruco.cpp
modules/aruco/src/aruco.cpp
+5
-8
No files found.
modules/aruco/src/aruco.cpp
View file @
68e19d50
...
...
@@ -1277,14 +1277,11 @@ Ptr<Board> Board::create(InputArrayOfArrays objPoints, const Ptr<Dictionary> &di
for
(
unsigned
int
i
=
0
;
i
<
objPoints
.
total
();
i
++
)
{
std
::
vector
<
Point3f
>
corners
;
Mat
corners_mat
=
objPoints
.
getMat
(
i
);
if
(
objPoints
.
type
()
==
CV_32FC1
)
{
CV_Assert
(
corners_mat
.
total
()
==
12
);
}
else
{
CV_Assert
(
corners_mat
.
total
()
==
4
);
}
if
(
corners_mat
.
type
()
==
CV_32FC1
)
corners_mat
=
corners_mat
.
reshape
(
3
);
CV_Assert
(
corners_mat
.
total
()
==
4
);
for
(
int
j
=
0
;
j
<
4
;
j
++
)
{
corners
.
push_back
(
corners_mat
.
at
<
Point3f
>
(
j
));
}
...
...
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