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
61386e1a
Commit
61386e1a
authored
Jul 31, 2013
by
Nghia Ho
Browse files
Options
Browse Files
Download
Plain Diff
Merge
https://github.com/Itseez/opencv
Keeping up to date
parents
00f63fa8
4ed9b1ca
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
59 additions
and
1 deletion
+59
-1
pyramids.cpp
modules/imgproc/src/pyramids.cpp
+2
-1
image_sequence.cpp
samples/cpp/image_sequence.cpp
+57
-0
No files found.
modules/imgproc/src/pyramids.cpp
View file @
61386e1a
...
...
@@ -203,7 +203,8 @@ pyrDown_( const Mat& _src, Mat& _dst, int borderType )
CastOp
castOp
;
VecOp
vecOp
;
CV_Assert
(
std
::
abs
(
dsize
.
width
*
2
-
ssize
.
width
)
<=
2
&&
CV_Assert
(
ssize
.
width
>
0
&&
ssize
.
height
>
0
&&
std
::
abs
(
dsize
.
width
*
2
-
ssize
.
width
)
<=
2
&&
std
::
abs
(
dsize
.
height
*
2
-
ssize
.
height
)
<=
2
);
int
k
,
x
,
sy0
=
-
PD_SZ
/
2
,
sy
=
sy0
,
width0
=
std
::
min
((
ssize
.
width
-
PD_SZ
/
2
-
1
)
/
2
+
1
,
dsize
.
width
);
...
...
samples/cpp/image_sequence.cpp
0 → 100644
View file @
61386e1a
#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