Merge pull request #3364 from mshabunin:doxygen-docs-24

This commit is contained in:
Vadim Pisarevsky
2014-10-30 10:42:24 +00:00
18 changed files with 515 additions and 131 deletions

View File

@@ -537,7 +537,7 @@ CV_EXPORTS void log(const GpuMat& a, GpuMat& b, Stream& stream = Stream::Null())
//! supports all, except depth == CV_64F
CV_EXPORTS void pow(const GpuMat& src, double power, GpuMat& dst, Stream& stream = Stream::Null());
//! compares elements of two arrays (c = a <cmpop> b)
//! compares elements of two arrays (c = a \<cmpop\> b)
CV_EXPORTS void compare(const GpuMat& a, const GpuMat& b, GpuMat& c, int cmpop, Stream& stream = Stream::Null());
CV_EXPORTS void compare(const GpuMat& a, Scalar sc, GpuMat& c, int cmpop, Stream& stream = Stream::Null());
@@ -2264,6 +2264,7 @@ public:
* model.
* @param frame Input frame
* @param fgmask Output mask image representing foreground and background pixels
* @param learningRate determines how quickly features are “forgotten” from histograms
* @param stream Stream for the asynchronous version
*/
void operator ()(const GpuMat& frame, GpuMat& fgmask, float learningRate = -1.0f, Stream& stream = Stream::Null());