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
60367907
Commit
60367907
authored
Oct 14, 2014
by
Alexander Karsakov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Used direct float calculations
parent
5aa9ac9a
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
cvtcolor.cl
modules/imgproc/src/opencl/cvtcolor.cl
+0
-0
test_color.cpp
modules/imgproc/test/ocl/test_color.cpp
+8
-8
No files found.
modules/imgproc/src/opencl/cvtcolor.cl
View file @
60367907
This diff is collapsed.
Click to expand it.
modules/imgproc/test/ocl/test_color.cpp
View file @
60367907
...
...
@@ -387,14 +387,14 @@ struct CvtColor_RGB2YUV_420 :
}
};
OCL_TEST_P
(
CvtColor_RGB2YUV_420
,
RGBA2YUV_YV12
)
{
performTest
(
4
,
1
,
CVTCODE
(
RGBA2YUV_YV12
));
}
OCL_TEST_P
(
CvtColor_RGB2YUV_420
,
BGRA2YUV_YV12
)
{
performTest
(
4
,
1
,
CVTCODE
(
BGRA2YUV_YV12
));
}
OCL_TEST_P
(
CvtColor_RGB2YUV_420
,
RGB2YUV_YV12
)
{
performTest
(
3
,
1
,
CVTCODE
(
RGB2YUV_YV12
));
}
OCL_TEST_P
(
CvtColor_RGB2YUV_420
,
BGR2YUV_YV12
)
{
performTest
(
3
,
1
,
CVTCODE
(
BGR2YUV_YV12
));
}
OCL_TEST_P
(
CvtColor_RGB2YUV_420
,
RGBA2YUV_IYUV
)
{
performTest
(
4
,
1
,
CVTCODE
(
RGBA2YUV_IYUV
));
}
OCL_TEST_P
(
CvtColor_RGB2YUV_420
,
BGRA2YUV_IYUV
)
{
performTest
(
4
,
1
,
CVTCODE
(
BGRA2YUV_IYUV
));
}
OCL_TEST_P
(
CvtColor_RGB2YUV_420
,
RGB2YUV_IYUV
)
{
performTest
(
3
,
1
,
CVTCODE
(
RGB2YUV_IYUV
));
}
OCL_TEST_P
(
CvtColor_RGB2YUV_420
,
BGR2YUV_IYUV
)
{
performTest
(
3
,
1
,
CVTCODE
(
BGR2YUV_IYUV
));
}
OCL_TEST_P
(
CvtColor_RGB2YUV_420
,
RGBA2YUV_YV12
)
{
performTest
(
4
,
1
,
CVTCODE
(
RGBA2YUV_YV12
)
,
1
);
}
OCL_TEST_P
(
CvtColor_RGB2YUV_420
,
BGRA2YUV_YV12
)
{
performTest
(
4
,
1
,
CVTCODE
(
BGRA2YUV_YV12
)
,
1
);
}
OCL_TEST_P
(
CvtColor_RGB2YUV_420
,
RGB2YUV_YV12
)
{
performTest
(
3
,
1
,
CVTCODE
(
RGB2YUV_YV12
)
,
1
);
}
OCL_TEST_P
(
CvtColor_RGB2YUV_420
,
BGR2YUV_YV12
)
{
performTest
(
3
,
1
,
CVTCODE
(
BGR2YUV_YV12
)
,
1
);
}
OCL_TEST_P
(
CvtColor_RGB2YUV_420
,
RGBA2YUV_IYUV
)
{
performTest
(
4
,
1
,
CVTCODE
(
RGBA2YUV_IYUV
)
,
1
);
}
OCL_TEST_P
(
CvtColor_RGB2YUV_420
,
BGRA2YUV_IYUV
)
{
performTest
(
4
,
1
,
CVTCODE
(
BGRA2YUV_IYUV
)
,
1
);
}
OCL_TEST_P
(
CvtColor_RGB2YUV_420
,
RGB2YUV_IYUV
)
{
performTest
(
3
,
1
,
CVTCODE
(
RGB2YUV_IYUV
)
,
1
);
}
OCL_TEST_P
(
CvtColor_RGB2YUV_420
,
BGR2YUV_IYUV
)
{
performTest
(
3
,
1
,
CVTCODE
(
BGR2YUV_IYUV
)
,
1
);
}
// YUV422 -> RGBA
...
...
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