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
4ed9b1ca
Commit
4ed9b1ca
authored
Jul 31, 2013
by
Andrey Pavlenko
Committed by
OpenCV Buildbot
Jul 31, 2013
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1166 from StevenPuttemans:patch_2288
parents
a77456e8
f33fe94c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
57 additions
and
0 deletions
+57
-0
image_sequence.cpp
samples/cpp/image_sequence.cpp
+57
-0
No files found.
samples/cpp/image_sequence.cpp
0 → 100644
View file @
4ed9b1ca
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <iostream>
using
namespace
cv
;
using
namespace
std
;
static
void
help
(
char
**
argv
)
{
cout
<<
"
\n
This sample shows you how to read a sequence of images using the VideoCapture interface.
\n
"
<<
"Usage: "
<<
argv
[
0
]
<<
" <image_mask> (example mask: example_%%02d.jpg)
\n
"
<<
"Image mask defines the name variation for the input images that have to be read as a sequence.
\n
"
<<
"Using the mask example_%%02d.jpg will read in images labeled as 'example_00.jpg', 'example_01.jpg', etc."
<<
endl
;
}
int
main
(
int
argc
,
char
**
argv
)
{
if
(
argc
!=
2
)
{
help
(
argv
);
return
1
;
}
string
first_file
=
argv
[
1
];
VideoCapture
sequence
(
first_file
);
if
(
!
sequence
.
isOpened
())
{
cerr
<<
"Failed to open the image sequence!
\n
"
<<
endl
;
return
1
;
}
Mat
image
;
namedWindow
(
"Image sequence | press ESC to close"
,
1
);
for
(;;)
{
// Read in image from sequence
sequence
>>
image
;
// If no image was retrieved -> end of sequence
if
(
image
.
empty
())
{
cout
<<
"End of Sequence"
<<
endl
;
break
;
}
imshow
(
"Image sequence | press ESC to close"
,
image
);
if
(
waitKey
(
500
)
==
27
)
break
;
}
return
0
;
}
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