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
7e7fb0b7
Commit
7e7fb0b7
authored
Aug 06, 2013
by
WonderRico
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #3201 fix
parent
2911b121
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
cap_dshow.cpp
modules/highgui/src/cap_dshow.cpp
+5
-5
No files found.
modules/highgui/src/cap_dshow.cpp
View file @
7e7fb0b7
...
...
@@ -3164,18 +3164,18 @@ void CvCaptureCAM_DShow::close()
// Initialize camera input
bool
CvCaptureCAM_DShow
::
open
(
int
_index
)
{
int
try_index
=
_index
;
int
devices
=
0
;
close
();
devices
=
VI
.
listDevices
(
true
);
if
(
devices
==
0
)
return
false
;
try_index
=
try_index
<
0
?
0
:
(
try_index
>
devices
-
1
?
devices
-
1
:
try_index
);
VI
.
setupDevice
(
try_index
);
if
(
!
VI
.
isDeviceSetup
(
try_index
)
)
if
(
_index
<
0
||
index
>
devices
-
1
)
return
false
;
VI
.
setupDevice
(
_index
);
if
(
!
VI
.
isDeviceSetup
(
_index
)
)
return
false
;
index
=
try
_index
;
index
=
_index
;
return
true
;
}
...
...
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