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
b12f1853
Commit
b12f1853
authored
Feb 24, 2012
by
Alexander Reshetnikov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added new VideoCapture properties for ieee1394 cameras
parent
228b8725
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
highgui_c.h
modules/highgui/include/opencv2/highgui/highgui_c.h
+6
-2
cap_dc1394_v2.cpp
modules/highgui/src/cap_dc1394_v2.cpp
+0
-0
No files found.
modules/highgui/include/opencv2/highgui/highgui_c.h
View file @
b12f1853
...
...
@@ -365,7 +365,11 @@ enum
CV_CAP_PROP_TRIGGER
=
24
,
CV_CAP_PROP_TRIGGER_DELAY
=
25
,
CV_CAP_PROP_WHITE_BALANCE_RED_V
=
26
,
CV_CAP_PROP_MAX_DC1394
=
27
,
CV_CAP_PROP_ZOOM
=
27
,
CV_CAP_PROP_FOCUS
=
28
,
CV_CAP_PROP_GUID
=
29
,
CV_CAP_PROP_ISO_SPEED
=
30
,
CV_CAP_PROP_MAX_DC1394
=
31
,
CV_CAP_PROP_AUTOGRAB
=
1024
,
// property for highgui class CvCapture_Android only
CV_CAP_PROP_SUPPORTED_PREVIEW_SIZES_STRING
=
1025
,
// readonly, tricky property, returns cpnst char* indeed
CV_CAP_PROP_PREVIEW_FORMAT
=
1026
,
// readonly, tricky property, returns cpnst char* indeed
...
...
@@ -467,7 +471,7 @@ typedef struct CvVideoWriter CvVideoWriter;
CV_INLINE
int
CV_FOURCC
(
char
c1
,
char
c2
,
char
c3
,
char
c4
)
{
return
(
c1
&
255
)
+
((
c2
&
255
)
<<
8
)
+
((
c3
&
255
)
<<
16
)
+
((
c4
&
255
)
<<
24
);
return
(
c1
&
255
)
+
((
c2
&
255
)
<<
8
)
+
((
c3
&
255
)
<<
16
)
+
((
c4
&
255
)
<<
24
);
}
#define CV_FOURCC_PROMPT -1
/* Open Codec Selection Dialog (Windows only) */
...
...
modules/highgui/src/cap_dc1394_v2.cpp
View file @
b12f1853
This diff is collapsed.
Click to expand it.
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