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
3535aacc
Commit
3535aacc
authored
Sep 27, 2011
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed bug #1389
parent
e0bf60fd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
9 deletions
+4
-9
imgproc.hpp
modules/imgproc/include/opencv2/imgproc/imgproc.hpp
+3
-8
haar.cpp
modules/objdetect/src/haar.cpp
+1
-1
No files found.
modules/imgproc/include/opencv2/imgproc/imgproc.hpp
View file @
3535aacc
...
...
@@ -588,6 +588,9 @@ CV_EXPORTS_W void accumulateProduct( InputArray src1, InputArray src2,
//! updates the running average (dst = dst*(1-alpha) + src*alpha)
CV_EXPORTS_W
void
accumulateWeighted
(
InputArray
src
,
InputOutputArray
dst
,
double
alpha
,
InputArray
mask
=
noArray
()
);
CV_EXPORTS_W
Point2d
phaseCorrelate
(
InputArray
src1
,
InputArray
src2
,
InputArray
window
=
noArray
());
CV_EXPORTS_W
void
createHanningWindow
(
OutputArray
dst
,
Size
winSize
,
int
type
);
//! type of the threshold operation
enum
{
THRESH_BINARY
=
CV_THRESH_BINARY
,
THRESH_BINARY_INV
=
CV_THRESH_BINARY_INV
,
...
...
@@ -1137,14 +1140,6 @@ struct CvLSHOperations
virtual
int
hash_lookup
(
lsh_hash
h
,
int
l
,
int
*
ret_i
,
int
ret_i_max
)
=
0
;
};
namespace
cv
{
CV_EXPORTS_W
cv
::
Point2d
phaseCorrelate
(
InputArray
_src1
,
InputArray
_src2
,
InputArray
window
=
noArray
());
CV_EXPORTS_W
void
createHanningWindow
(
OutputArray
_dst
,
cv
::
Size
winSize
,
int
type
);
}
#endif
/* __cplusplus */
#endif
...
...
modules/objdetect/src/haar.cpp
View file @
3535aacc
...
...
@@ -184,7 +184,7 @@ icvCreateHidHaarClassifierCascade( CvHaarClassifierCascade* cascade )
int
datasize
;
int
total_classifiers
=
0
;
int
total_nodes
=
0
;
char
errorstr
[
100
];
char
errorstr
[
100
0
];
CvHidHaarClassifier
*
haar_classifier_ptr
;
CvHidHaarTreeNode
*
haar_node_ptr
;
CvSize
orig_window_size
;
...
...
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