refactored Separable Linear Filters

This commit is contained in:
Vladislav Vinogradov
2013-04-29 14:47:42 +04:00
parent ee7eb1b807
commit 12ae11e2ff
12 changed files with 427 additions and 703 deletions

View File

@@ -158,7 +158,7 @@ struct CV_EXPORTS CannyBuf
GpuMat mag;
GpuMat map;
GpuMat st1, st2;
Ptr<FilterEngine_GPU> filterDX, filterDY;
Ptr<Filter> filterDX, filterDY;
};
CV_EXPORTS void Canny(const GpuMat& image, GpuMat& edges, double low_thresh, double high_thresh, int apperture_size = 3, bool L2gradient = false);