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
80f1b147
Commit
80f1b147
authored
May 18, 2012
by
Andrey Kamaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed parameter name and copy condition
parent
e309c514
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
utils.cpp
modules/imgproc/src/utils.cpp
+1
-1
tracking.hpp
modules/video/include/opencv2/video/tracking.hpp
+1
-1
No files found.
modules/imgproc/src/utils.cpp
View file @
80f1b147
...
...
@@ -224,7 +224,7 @@ void cv::copyMakeBorder( InputArray _src, OutputArray _dst, int top, int bottom,
if
(
top
==
0
&&
left
==
0
&&
bottom
==
0
&&
right
==
0
)
{
if
(
src
.
data
!=
dst
.
data
)
if
(
src
.
data
!=
dst
.
data
||
src
.
step
!=
dst
.
step
)
src
.
copyTo
(
dst
);
return
;
}
...
...
modules/video/include/opencv2/video/tracking.hpp
View file @
80f1b147
...
...
@@ -304,7 +304,7 @@ enum
};
//! constructs a pyramid which can be used as input for calcOpticalFlowPyrLK
CV_EXPORTS_W
int
buildOpticalFlowPyramid
(
InputArray
_
img
,
OutputArrayOfArrays
pyramid
,
CV_EXPORTS_W
int
buildOpticalFlowPyramid
(
InputArray
img
,
OutputArrayOfArrays
pyramid
,
Size
winSize
,
int
maxLevel
,
bool
withDerivatives
=
true
,
int
pyrBorder
=
BORDER_REFLECT_101
,
int
derivBorder
=
BORDER_CONSTANT
,
bool
tryReuseInputImage
=
true
);
...
...
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