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
8ff267cb
Commit
8ff267cb
authored
Oct 22, 2013
by
Roman Donchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed incorrectly unprefixed constant names in the OpenNI tutorial.
Bug report:
http://code.opencv.org/issues/3329
parent
1e8b72f8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
ug_highgui.rst
doc/user_guide/ug_highgui.rst
+9
-9
No files found.
doc/user_guide/ug_highgui.rst
View file @
8ff267cb
...
...
@@ -41,15 +41,15 @@ VideoCapture can retrieve the following data:
#.
data given from depth generator:
* ``OPENNI_DEPTH_MAP`` - depth values in mm (CV_16UC1)
* ``OPENNI_POINT_CLOUD_MAP`` - XYZ in meters (CV_32FC3)
* ``OPENNI_DISPARITY_MAP`` - disparity in pixels (CV_8UC1)
* ``OPENNI_DISPARITY_MAP_32F`` - disparity in pixels (CV_32FC1)
* ``OPENNI_VALID_DEPTH_MASK`` - mask of valid pixels (not ocluded, not shaded etc.) (CV_8UC1)
* ``
CV_CAP_
OPENNI_DEPTH_MAP`` - depth values in mm (CV_16UC1)
* ``
CV_CAP_
OPENNI_POINT_CLOUD_MAP`` - XYZ in meters (CV_32FC3)
* ``
CV_CAP_
OPENNI_DISPARITY_MAP`` - disparity in pixels (CV_8UC1)
* ``
CV_CAP_
OPENNI_DISPARITY_MAP_32F`` - disparity in pixels (CV_32FC1)
* ``
CV_CAP_
OPENNI_VALID_DEPTH_MASK`` - mask of valid pixels (not ocluded, not shaded etc.) (CV_8UC1)
#.
data given from RGB image generator:
* ``OPENNI_BGR_IMAGE`` - color image (CV_8UC3)
* ``OPENNI_GRAY_IMAGE`` - gray image (CV_8UC1)
* ``
CV_CAP_
OPENNI_BGR_IMAGE`` - color image (CV_8UC3)
* ``
CV_CAP_
OPENNI_GRAY_IMAGE`` - gray image (CV_8UC1)
In order to get depth map from depth sensor use ``VideoCapture::operator >>``, e. g. ::
...
...
@@ -73,8 +73,8 @@ For getting several data maps use ``VideoCapture::grab`` and ``VideoCapture::ret
capture.grab();
capture.retrieve( depthMap, OPENNI_DEPTH_MAP );
capture.retrieve( bgrImage, OPENNI_BGR_IMAGE );
capture.retrieve( depthMap,
CV_CAP_
OPENNI_DEPTH_MAP );
capture.retrieve( bgrImage,
CV_CAP_
OPENNI_BGR_IMAGE );
if( waitKey( 30 ) >= 0 )
break;
...
...
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