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
ca8c5b63
Commit
ca8c5b63
authored
Sep 06, 2011
by
Alexey Spizhevoy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor fixes in stitching module
parent
b0fe660d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
0 deletions
+6
-0
blenders.hpp
modules/stitching/include/opencv2/stitching/blenders.hpp
+2
-0
exposure_compensate.hpp
...itching/include/opencv2/stitching/exposure_compensate.hpp
+2
-0
motion_estimators.hpp
...stitching/include/opencv2/stitching/motion_estimators.hpp
+2
-0
No files found.
modules/stitching/include/opencv2/stitching/blenders.hpp
View file @
ca8c5b63
...
@@ -51,6 +51,8 @@ namespace cv
...
@@ -51,6 +51,8 @@ namespace cv
class
CV_EXPORTS
Blender
class
CV_EXPORTS
Blender
{
{
public
:
public
:
virtual
~
Blender
()
{}
enum
{
NO
,
FEATHER
,
MULTI_BAND
};
enum
{
NO
,
FEATHER
,
MULTI_BAND
};
static
Ptr
<
Blender
>
createDefault
(
int
type
,
bool
try_gpu
=
false
);
static
Ptr
<
Blender
>
createDefault
(
int
type
,
bool
try_gpu
=
false
);
...
...
modules/stitching/include/opencv2/stitching/exposure_compensate.hpp
View file @
ca8c5b63
...
@@ -50,6 +50,8 @@ namespace cv
...
@@ -50,6 +50,8 @@ namespace cv
class
CV_EXPORTS
ExposureCompensator
class
CV_EXPORTS
ExposureCompensator
{
{
public
:
public
:
virtual
~
ExposureCompensator
()
{}
enum
{
NO
,
GAIN
,
GAIN_BLOCKS
};
enum
{
NO
,
GAIN
,
GAIN_BLOCKS
};
static
Ptr
<
ExposureCompensator
>
createDefault
(
int
type
);
static
Ptr
<
ExposureCompensator
>
createDefault
(
int
type
);
...
...
modules/stitching/include/opencv2/stitching/motion_estimators.hpp
View file @
ca8c5b63
...
@@ -53,6 +53,8 @@ namespace cv
...
@@ -53,6 +53,8 @@ namespace cv
class
CV_EXPORTS
Estimator
class
CV_EXPORTS
Estimator
{
{
public
:
public
:
virtual
~
Estimator
()
{}
void
operator
()(
const
std
::
vector
<
ImageFeatures
>
&
features
,
const
std
::
vector
<
MatchesInfo
>
&
pairwise_matches
,
void
operator
()(
const
std
::
vector
<
ImageFeatures
>
&
features
,
const
std
::
vector
<
MatchesInfo
>
&
pairwise_matches
,
std
::
vector
<
CameraParams
>
&
cameras
)
std
::
vector
<
CameraParams
>
&
cameras
)
{
{
...
...
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