|
|
@ -589,6 +589,9 @@ CV_EXPORTS_W void accumulateProduct( InputArray src1, InputArray src2, |
|
|
|
CV_EXPORTS_W void accumulateWeighted( InputArray src, InputOutputArray dst, |
|
|
|
CV_EXPORTS_W void accumulateWeighted( InputArray src, InputOutputArray dst, |
|
|
|
double alpha, InputArray mask=noArray() ); |
|
|
|
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
|
|
|
|
//! type of the threshold operation
|
|
|
|
enum { THRESH_BINARY=CV_THRESH_BINARY, THRESH_BINARY_INV=CV_THRESH_BINARY_INV, |
|
|
|
enum { THRESH_BINARY=CV_THRESH_BINARY, THRESH_BINARY_INV=CV_THRESH_BINARY_INV, |
|
|
|
THRESH_TRUNC=CV_THRESH_TRUNC, THRESH_TOZERO=CV_THRESH_TOZERO, |
|
|
|
THRESH_TRUNC=CV_THRESH_TRUNC, THRESH_TOZERO=CV_THRESH_TOZERO, |
|
|
@ -1137,14 +1140,6 @@ struct CvLSHOperations |
|
|
|
virtual int hash_lookup(lsh_hash h, int l, int* ret_i, int ret_i_max) = 0; |
|
|
|
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 /* __cplusplus */ |
|
|
|
|
|
|
|
|
|
|
|
#endif |
|
|
|
#endif |
|
|
|