1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00

added cvtColor on gpu (supports conversion between RGB, BGR and GRAY)

This commit is contained in:
Vladislav Vinogradov
2010-08-30 13:41:26 +00:00
parent 62b47108a0
commit 0a73af8e22
5 changed files with 2972 additions and 2 deletions
+3
View File
@@ -365,6 +365,9 @@ namespace cv
// Acync version
CV_EXPORTS void reprojectImageTo3D_GPU(const GpuMat& disp, GpuMat& xyzw, const Mat& Q, const Stream& stream);
CV_EXPORTS void cvtColor_GPU(const GpuMat& src, GpuMat& dst, int code, int dcn = 0);
CV_EXPORTS void cvtColor_GPU(const GpuMat& src, GpuMat& dst, int code, int dcn, const Stream& stream);
//////////////////////////////// StereoBM_GPU ////////////////////////////////
class CV_EXPORTS StereoBM_GPU