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
7ddc2cc0
Commit
7ddc2cc0
authored
Nov 24, 2015
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4110 from LaurentBerger:Bug4370
parents
c4edd86a
bef009c9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
11 deletions
+23
-11
stitching_detailed.cpp
samples/cpp/stitching_detailed.cpp
+23
-11
No files found.
samples/cpp/stitching_detailed.cpp
View file @
7ddc2cc0
...
@@ -119,8 +119,10 @@ static void printUsage()
...
@@ -119,8 +119,10 @@ static void printUsage()
" Blending strength from [0,100] range. The default is 5.
\n
"
" Blending strength from [0,100] range. The default is 5.
\n
"
" --output <result_img>
\n
"
" --output <result_img>
\n
"
" The default is 'result.jpg'.
\n
"
" The default is 'result.jpg'.
\n
"
" --timelapse (as_is|crop) (range_width)
\n
"
" --timelapse (as_is|crop)
\n
"
" Output warped images separately as frames of a time lapse movie, with 'fixed_' prepended to input file names.
\n
"
;
" Output warped images separately as frames of a time lapse movie, with 'fixed_' prepended to input file names.
\n
"
" --rangewidth <int>
\n
"
" uses range_width to limit number of images to match with.
\n
"
;
}
}
...
@@ -148,7 +150,7 @@ int timelapse_type = Timelapser::AS_IS;
...
@@ -148,7 +150,7 @@ int timelapse_type = Timelapser::AS_IS;
float
blend_strength
=
5
;
float
blend_strength
=
5
;
string
result_name
=
"result.jpg"
;
string
result_name
=
"result.jpg"
;
bool
timelapse
=
false
;
bool
timelapse
=
false
;
int
timelapse_range
=
5
;
int
range_width
=
-
1
;
static
int
parseCmdArgs
(
int
argc
,
char
**
argv
)
static
int
parseCmdArgs
(
int
argc
,
char
**
argv
)
...
@@ -326,8 +328,10 @@ static int parseCmdArgs(int argc, char** argv)
...
@@ -326,8 +328,10 @@ static int parseCmdArgs(int argc, char** argv)
return
-
1
;
return
-
1
;
}
}
i
++
;
i
++
;
}
timelapse_range
=
atoi
(
argv
[
i
+
1
]);
else
if
(
string
(
argv
[
i
])
==
"--rangewidth"
)
{
range_width
=
atoi
(
argv
[
i
+
1
]);
i
++
;
i
++
;
}
}
else
if
(
string
(
argv
[
i
])
==
"--blend_strength"
)
else
if
(
string
(
argv
[
i
])
==
"--blend_strength"
)
...
@@ -458,7 +462,7 @@ int main(int argc, char* argv[])
...
@@ -458,7 +462,7 @@ int main(int argc, char* argv[])
t
=
getTickCount
();
t
=
getTickCount
();
#endif
#endif
vector
<
MatchesInfo
>
pairwise_matches
;
vector
<
MatchesInfo
>
pairwise_matches
;
if
(
!
timelapse
)
if
(
range_width
==-
1
)
{
{
BestOf2NearestMatcher
matcher
(
try_cuda
,
match_conf
);
BestOf2NearestMatcher
matcher
(
try_cuda
,
match_conf
);
matcher
(
features
,
pairwise_matches
);
matcher
(
features
,
pairwise_matches
);
...
@@ -466,7 +470,7 @@ int main(int argc, char* argv[])
...
@@ -466,7 +470,7 @@ int main(int argc, char* argv[])
}
}
else
else
{
{
BestOf2NearestRangeMatcher
matcher
(
timelapse_range
,
try_cuda
,
match_conf
);
BestOf2NearestRangeMatcher
matcher
(
range_width
,
try_cuda
,
match_conf
);
matcher
(
features
,
pairwise_matches
);
matcher
(
features
,
pairwise_matches
);
matcher
.
collectGarbage
();
matcher
.
collectGarbage
();
}
}
...
@@ -813,9 +817,8 @@ int main(int argc, char* argv[])
...
@@ -813,9 +817,8 @@ int main(int argc, char* argv[])
}
}
blender
->
prepare
(
corners
,
sizes
);
blender
->
prepare
(
corners
,
sizes
);
}
}
else
if
(
!
timelapser
)
else
if
(
!
timelapser
&&
timelapse
)
{
{
CV_Assert
(
timelapse
);
timelapser
=
Timelapser
::
createDefault
(
timelapse_type
);
timelapser
=
Timelapser
::
createDefault
(
timelapse_type
);
timelapser
->
initialize
(
corners
,
sizes
);
timelapser
->
initialize
(
corners
,
sizes
);
}
}
...
@@ -824,8 +827,17 @@ int main(int argc, char* argv[])
...
@@ -824,8 +827,17 @@ int main(int argc, char* argv[])
if
(
timelapse
)
if
(
timelapse
)
{
{
timelapser
->
process
(
img_warped_s
,
Mat
::
ones
(
img_warped_s
.
size
(),
CV_8UC1
),
corners
[
img_idx
]);
timelapser
->
process
(
img_warped_s
,
Mat
::
ones
(
img_warped_s
.
size
(),
CV_8UC1
),
corners
[
img_idx
]);
String
fixedFileName
;
imwrite
(
"fixed_"
+
img_names
[
img_idx
],
timelapser
->
getDst
());
size_t
pos_s
=
String
(
img_names
[
img_idx
]).
find_last_of
(
"/
\\
"
);
if
(
pos_s
==
String
::
npos
)
{
fixedFileName
=
"fixed_"
+
img_names
[
img_idx
];
}
else
{
fixedFileName
=
"fixed_"
+
String
(
img_names
[
img_idx
]).
substr
(
pos_s
+
1
,
String
(
img_names
[
img_idx
]).
length
()
-
pos_s
);
}
imwrite
(
fixedFileName
,
timelapser
->
getDst
());
}
}
else
else
{
{
...
...
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