Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
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
Commits
e1b3cf5c
Commit
e1b3cf5c
authored
Jun 01, 2018
by
Rostislav Vasilikhin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Viz3d::getViewerPose() made const
parent
5e68f355
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
viz3d.hpp
modules/viz/include/opencv2/viz/viz3d.hpp
+1
-1
viz3d.cpp
modules/viz/src/viz3d.cpp
+1
-1
No files found.
modules/viz/include/opencv2/viz/viz3d.hpp
View file @
e1b3cf5c
...
...
@@ -144,7 +144,7 @@ namespace cv
/** @brief Returns the current pose of the viewer.
*/
Affine3d
getViewerPose
();
Affine3d
getViewerPose
()
const
;
/** @brief Sets pose of the viewer.
...
...
modules/viz/src/viz3d.cpp
View file @
e1b3cf5c
...
...
@@ -127,7 +127,7 @@ cv::Affine3d cv::viz::Viz3d::getWidgetPose(const String &id) const { return impl
void
cv
::
viz
::
Viz3d
::
setCamera
(
const
Camera
&
camera
)
{
impl_
->
setCamera
(
camera
);
}
cv
::
viz
::
Camera
cv
::
viz
::
Viz3d
::
getCamera
()
const
{
return
impl_
->
getCamera
();
}
void
cv
::
viz
::
Viz3d
::
setViewerPose
(
const
Affine3d
&
pose
)
{
impl_
->
setViewerPose
(
pose
);
}
cv
::
Affine3d
cv
::
viz
::
Viz3d
::
getViewerPose
()
{
return
impl_
->
getViewerPose
();
}
cv
::
Affine3d
cv
::
viz
::
Viz3d
::
getViewerPose
()
const
{
return
impl_
->
getViewerPose
();
}
void
cv
::
viz
::
Viz3d
::
resetCameraViewpoint
(
const
String
&
id
)
{
impl_
->
resetCameraViewpoint
(
id
);
}
void
cv
::
viz
::
Viz3d
::
resetCamera
()
{
impl_
->
resetCamera
();
}
...
...
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