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
23398bcb
Commit
23398bcb
authored
Mar 20, 2012
by
Alexey Spizhevoy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some warnings
parent
dcb5464b
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
deblurring.hpp
modules/videostab/include/opencv2/videostab/deblurring.hpp
+1
-1
frame_source.hpp
modules/videostab/include/opencv2/videostab/frame_source.hpp
+1
-1
inpainting.hpp
modules/videostab/include/opencv2/videostab/inpainting.hpp
+1
-1
log.hpp
modules/videostab/include/opencv2/videostab/log.hpp
+1
-1
stabilizer.hpp
modules/videostab/include/opencv2/videostab/stabilizer.hpp
+1
-1
No files found.
modules/videostab/include/opencv2/videostab/deblurring.hpp
View file @
23398bcb
...
...
@@ -84,7 +84,7 @@ protected:
class
CV_EXPORTS
NullDeblurer
:
public
IDeblurer
{
public
:
virtual
void
deblur
(
int
idx
,
Mat
&
frame
)
{}
virtual
void
deblur
(
int
/*idx*/
,
Mat
&
/*frame*/
)
{}
};
class
CV_EXPORTS
WeightingDeblurer
:
public
IDeblurer
...
...
modules/videostab/include/opencv2/videostab/frame_source.hpp
View file @
23398bcb
...
...
@@ -76,7 +76,7 @@ public:
virtual
void
reset
();
virtual
Mat
nextFrame
();
int
frameCount
()
{
return
reader_
.
get
(
CV_CAP_PROP_FRAME_COUNT
);
}
int
frameCount
()
{
return
static_cast
<
int
>
(
reader_
.
get
(
CV_CAP_PROP_FRAME_COUNT
)
);
}
double
fps
()
{
return
reader_
.
get
(
CV_CAP_PROP_FPS
);
}
private
:
...
...
modules/videostab/include/opencv2/videostab/inpainting.hpp
View file @
23398bcb
...
...
@@ -91,7 +91,7 @@ protected:
class
CV_EXPORTS
NullInpainter
:
public
IInpainter
{
public
:
virtual
void
inpaint
(
int
idx
,
Mat
&
frame
,
Mat
&
mask
)
{}
virtual
void
inpaint
(
int
/*idx*/
,
Mat
&
/*frame*/
,
Mat
&
/*mask*/
)
{}
};
class
CV_EXPORTS
InpaintingPipeline
:
public
IInpainter
...
...
modules/videostab/include/opencv2/videostab/log.hpp
View file @
23398bcb
...
...
@@ -60,7 +60,7 @@ public:
class
CV_EXPORTS
NullLog
:
public
ILog
{
public
:
virtual
void
print
(
const
char
*
format
,
...)
{}
virtual
void
print
(
const
char
*
/
*
format
*/
,
...)
{}
};
class
CV_EXPORTS
LogToStdout
:
public
ILog
...
...
modules/videostab/include/opencv2/videostab/stabilizer.hpp
View file @
23398bcb
...
...
@@ -82,7 +82,7 @@ public:
bool
mustEstimateTrimRatio
()
const
{
return
mustEstimateTrimRatio_
;
}
void
setTrimRatio
(
float
val
)
{
trimRatio_
=
val
;
reset
();
}
in
t
trimRatio
()
const
{
return
trimRatio_
;
}
floa
t
trimRatio
()
const
{
return
trimRatio_
;
}
void
setInclusionConstraint
(
bool
val
)
{
inclusionConstraint_
=
val
;
}
bool
inclusionConstraint
()
const
{
return
inclusionConstraint_
;
}
...
...
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