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
fedff092
Commit
fedff092
authored
Mar 21, 2012
by
Maria Dimashova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed unnecessary members of CvCapture_OpenNI
parent
5c23d526
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
0 deletions
+6
-0
cap.cpp
modules/highgui/src/cap.cpp
+5
-0
cap_openni.cpp
modules/highgui/src/cap_openni.cpp
+0
-0
precomp.hpp
modules/highgui/src/precomp.hpp
+1
-0
No files found.
modules/highgui/src/cap.cpp
View file @
fedff092
...
...
@@ -326,6 +326,11 @@ CV_IMPL CvCapture * cvCreateFileCapture (const char * filename)
if
(
!
result
)
result
=
cvCreateFileCapture_AVFoundation
(
filename
);
#endif
#ifdef HAVE_OPENNI
if
(
!
result
)
result
=
cvCreateFileCapture_OpenNI
(
filename
);
#endif
if
(
!
result
)
result
=
cvCreateFileCapture_Images
(
filename
);
...
...
modules/highgui/src/cap_openni.cpp
View file @
fedff092
This diff is collapsed.
Click to expand it.
modules/highgui/src/precomp.hpp
View file @
fedff092
...
...
@@ -132,6 +132,7 @@ CvVideoWriter* cvCreateVideoWriter_VFW( const char* filename, int fourcc,
double
fps
,
CvSize
frameSize
,
int
is_color
);
CvCapture
*
cvCreateCameraCapture_DShow
(
int
index
);
CvCapture
*
cvCreateCameraCapture_OpenNI
(
int
index
);
CvCapture
*
cvCreateFileCapture_OpenNI
(
const
char
*
filename
);
CvCapture
*
cvCreateCameraCapture_Android
(
int
index
);
CvCapture
*
cvCreateCameraCapture_XIMEA
(
int
index
);
CvCapture
*
cvCreateCameraCapture_AVFoundation
(
int
index
);
...
...
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