Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
0b270e2b
Commit
0b270e2b
authored
Aug 19, 2013
by
Roman Donchenko
Committed by
OpenCV Buildbot
Aug 19, 2013
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1296 from jet47:gpu-cvtcolor-fix-master
parents
3fc1885f
7bda6992
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
32 deletions
+32
-32
color.hpp
modules/core/include/opencv2/core/cuda/color.hpp
+16
-16
color_cvt.hpp
modules/cudev/include/opencv2/cudev/functional/color_cvt.hpp
+16
-16
No files found.
modules/core/include/opencv2/core/cuda/color.hpp
View file @
0b270e2b
...
...
@@ -107,25 +107,25 @@ namespace cv { namespace gpu { namespace cudev
#undef OPENCV_GPU_IMPLEMENT_RGB2GRAY_TRAITS
OPENCV_GPU_IMPLEMENT_RGB2YUV_TRAITS
(
rgb_to_yuv
,
3
,
3
,
0
)
OPENCV_GPU_IMPLEMENT_RGB2YUV_TRAITS
(
rgba_to_yuv
,
4
,
3
,
0
)
OPENCV_GPU_IMPLEMENT_RGB2YUV_TRAITS
(
rgb_to_yuv4
,
3
,
4
,
0
)
OPENCV_GPU_IMPLEMENT_RGB2YUV_TRAITS
(
rgba_to_yuv4
,
4
,
4
,
0
)
OPENCV_GPU_IMPLEMENT_RGB2YUV_TRAITS
(
bgr_to_yuv
,
3
,
3
,
2
)
OPENCV_GPU_IMPLEMENT_RGB2YUV_TRAITS
(
bgra_to_yuv
,
4
,
3
,
2
)
OPENCV_GPU_IMPLEMENT_RGB2YUV_TRAITS
(
bgr_to_yuv4
,
3
,
4
,
2
)
OPENCV_GPU_IMPLEMENT_RGB2YUV_TRAITS
(
bgra_to_yuv4
,
4
,
4
,
2
)
OPENCV_GPU_IMPLEMENT_RGB2YUV_TRAITS
(
rgb_to_yuv
,
3
,
3
,
2
)
OPENCV_GPU_IMPLEMENT_RGB2YUV_TRAITS
(
rgba_to_yuv
,
4
,
3
,
2
)
OPENCV_GPU_IMPLEMENT_RGB2YUV_TRAITS
(
rgb_to_yuv4
,
3
,
4
,
2
)
OPENCV_GPU_IMPLEMENT_RGB2YUV_TRAITS
(
rgba_to_yuv4
,
4
,
4
,
2
)
OPENCV_GPU_IMPLEMENT_RGB2YUV_TRAITS
(
bgr_to_yuv
,
3
,
3
,
0
)
OPENCV_GPU_IMPLEMENT_RGB2YUV_TRAITS
(
bgra_to_yuv
,
4
,
3
,
0
)
OPENCV_GPU_IMPLEMENT_RGB2YUV_TRAITS
(
bgr_to_yuv4
,
3
,
4
,
0
)
OPENCV_GPU_IMPLEMENT_RGB2YUV_TRAITS
(
bgra_to_yuv4
,
4
,
4
,
0
)
#undef OPENCV_GPU_IMPLEMENT_RGB2YUV_TRAITS
OPENCV_GPU_IMPLEMENT_YUV2RGB_TRAITS
(
yuv_to_rgb
,
3
,
3
,
0
)
OPENCV_GPU_IMPLEMENT_YUV2RGB_TRAITS
(
yuv_to_rgba
,
3
,
4
,
0
)
OPENCV_GPU_IMPLEMENT_YUV2RGB_TRAITS
(
yuv4_to_rgb
,
4
,
3
,
0
)
OPENCV_GPU_IMPLEMENT_YUV2RGB_TRAITS
(
yuv4_to_rgba
,
4
,
4
,
0
)
OPENCV_GPU_IMPLEMENT_YUV2RGB_TRAITS
(
yuv_to_bgr
,
3
,
3
,
2
)
OPENCV_GPU_IMPLEMENT_YUV2RGB_TRAITS
(
yuv_to_bgra
,
3
,
4
,
2
)
OPENCV_GPU_IMPLEMENT_YUV2RGB_TRAITS
(
yuv4_to_bgr
,
4
,
3
,
2
)
OPENCV_GPU_IMPLEMENT_YUV2RGB_TRAITS
(
yuv4_to_bgra
,
4
,
4
,
2
)
OPENCV_GPU_IMPLEMENT_YUV2RGB_TRAITS
(
yuv_to_rgb
,
3
,
3
,
2
)
OPENCV_GPU_IMPLEMENT_YUV2RGB_TRAITS
(
yuv_to_rgba
,
3
,
4
,
2
)
OPENCV_GPU_IMPLEMENT_YUV2RGB_TRAITS
(
yuv4_to_rgb
,
4
,
3
,
2
)
OPENCV_GPU_IMPLEMENT_YUV2RGB_TRAITS
(
yuv4_to_rgba
,
4
,
4
,
2
)
OPENCV_GPU_IMPLEMENT_YUV2RGB_TRAITS
(
yuv_to_bgr
,
3
,
3
,
0
)
OPENCV_GPU_IMPLEMENT_YUV2RGB_TRAITS
(
yuv_to_bgra
,
3
,
4
,
0
)
OPENCV_GPU_IMPLEMENT_YUV2RGB_TRAITS
(
yuv4_to_bgr
,
4
,
3
,
0
)
OPENCV_GPU_IMPLEMENT_YUV2RGB_TRAITS
(
yuv4_to_bgra
,
4
,
4
,
0
)
#undef OPENCV_GPU_IMPLEMENT_YUV2RGB_TRAITS
...
...
modules/cudev/include/opencv2/cudev/functional/color_cvt.hpp
View file @
0b270e2b
...
...
@@ -100,14 +100,14 @@ CV_CUDEV_GRAY2RGB_INST(GRAY_to_BGRA, 4)
{ \
};
CV_CUDEV_RGB2YUV_INST
(
RGB_to_YUV
,
3
,
3
,
0
)
CV_CUDEV_RGB2YUV_INST
(
RGBA_to_YUV
,
4
,
3
,
0
)
CV_CUDEV_RGB2YUV_INST
(
RGB_to_YUV4
,
3
,
4
,
0
)
CV_CUDEV_RGB2YUV_INST
(
RGBA_to_YUV4
,
4
,
4
,
0
)
CV_CUDEV_RGB2YUV_INST
(
BGR_to_YUV
,
3
,
3
,
2
)
CV_CUDEV_RGB2YUV_INST
(
BGRA_to_YUV
,
4
,
3
,
2
)
CV_CUDEV_RGB2YUV_INST
(
BGR_to_YUV4
,
3
,
4
,
2
)
CV_CUDEV_RGB2YUV_INST
(
BGRA_to_YUV4
,
4
,
4
,
2
)
CV_CUDEV_RGB2YUV_INST
(
RGB_to_YUV
,
3
,
3
,
2
)
CV_CUDEV_RGB2YUV_INST
(
RGBA_to_YUV
,
4
,
3
,
2
)
CV_CUDEV_RGB2YUV_INST
(
RGB_to_YUV4
,
3
,
4
,
2
)
CV_CUDEV_RGB2YUV_INST
(
RGBA_to_YUV4
,
4
,
4
,
2
)
CV_CUDEV_RGB2YUV_INST
(
BGR_to_YUV
,
3
,
3
,
0
)
CV_CUDEV_RGB2YUV_INST
(
BGRA_to_YUV
,
4
,
3
,
0
)
CV_CUDEV_RGB2YUV_INST
(
BGR_to_YUV4
,
3
,
4
,
0
)
CV_CUDEV_RGB2YUV_INST
(
BGRA_to_YUV4
,
4
,
4
,
0
)
#undef CV_CUDEV_RGB2YUV_INST
...
...
@@ -118,14 +118,14 @@ CV_CUDEV_RGB2YUV_INST(BGRA_to_YUV4, 4, 4, 2)
{ \
};
CV_CUDEV_YUV2RGB_INST
(
YUV_to_RGB
,
3
,
3
,
0
)
CV_CUDEV_YUV2RGB_INST
(
YUV_to_RGBA
,
3
,
4
,
0
)
CV_CUDEV_YUV2RGB_INST
(
YUV4_to_RGB
,
4
,
3
,
0
)
CV_CUDEV_YUV2RGB_INST
(
YUV4_to_RGBA
,
4
,
4
,
0
)
CV_CUDEV_YUV2RGB_INST
(
YUV_to_BGR
,
3
,
3
,
2
)
CV_CUDEV_YUV2RGB_INST
(
YUV_to_BGRA
,
3
,
4
,
2
)
CV_CUDEV_YUV2RGB_INST
(
YUV4_to_BGR
,
4
,
3
,
2
)
CV_CUDEV_YUV2RGB_INST
(
YUV4_to_BGRA
,
4
,
4
,
2
)
CV_CUDEV_YUV2RGB_INST
(
YUV_to_RGB
,
3
,
3
,
2
)
CV_CUDEV_YUV2RGB_INST
(
YUV_to_RGBA
,
3
,
4
,
2
)
CV_CUDEV_YUV2RGB_INST
(
YUV4_to_RGB
,
4
,
3
,
2
)
CV_CUDEV_YUV2RGB_INST
(
YUV4_to_RGBA
,
4
,
4
,
2
)
CV_CUDEV_YUV2RGB_INST
(
YUV_to_BGR
,
3
,
3
,
0
)
CV_CUDEV_YUV2RGB_INST
(
YUV_to_BGRA
,
3
,
4
,
0
)
CV_CUDEV_YUV2RGB_INST
(
YUV4_to_BGR
,
4
,
3
,
0
)
CV_CUDEV_YUV2RGB_INST
(
YUV4_to_BGRA
,
4
,
4
,
0
)
#undef CV_CUDEV_YUV2RGB_INST
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment