mirror of
https://github.com/opencv/opencv.git
synced 2026-07-29 23:33:05 +04:00
added hconcat & vconcat functions for joining matrices; moved some inline functions out of the headers; fixed several bugs in documentation; removed MatND from docs
This commit is contained in:
@@ -312,6 +312,12 @@ void boxFilter( const Mat& src, Mat& dst, int ddepth,
|
||||
f->apply( src, dst );
|
||||
}
|
||||
|
||||
void blur( const Mat& src, CV_OUT Mat& dst,
|
||||
Size ksize, Point anchor, int borderType )
|
||||
{
|
||||
boxFilter( src, dst, -1, ksize, anchor, true, borderType );
|
||||
}
|
||||
|
||||
/****************************************************************************************\
|
||||
Gaussian Blur
|
||||
\****************************************************************************************/
|
||||
|
||||
Reference in New Issue
Block a user