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
fe76b211
Commit
fe76b211
authored
Nov 14, 2013
by
Ilya Lavrenov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added RGBA <-> mRGBA
parent
1b7c5b20
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
67 additions
and
0 deletions
+67
-0
color.cpp
modules/ocl/src/color.cpp
+9
-0
cvt_color.cl
modules/ocl/src/opencl/cvt_color.cl
+53
-0
test_color.cpp
modules/ocl/test/test_color.cpp
+5
-0
No files found.
modules/ocl/src/color.cpp
View file @
fe76b211
...
...
@@ -461,6 +461,15 @@ static void cvtColor_caller(const oclMat &src, oclMat &dst, int code, int dcn)
toRGB_caller
(
src
,
dst
,
bidx
,
kernelName
,
format
(
" -D hrange=%d -D hscale=%f"
,
hrange
,
6.
f
/
hrange
));
break
;
}
case
CV_RGBA2mRGBA
:
case
CV_mRGBA2RGBA
:
{
CV_Assert
(
scn
==
4
&&
depth
==
CV_8U
);
dst
.
create
(
sz
,
CV_MAKETYPE
(
depth
,
4
));
std
::
string
kernelName
=
code
==
CV_RGBA2mRGBA
?
"RGBA2mRGBA"
:
"mRGBA2RGBA"
;
fromRGB_caller
(
src
,
dst
,
0
,
kernelName
);
break
;
}
default:
CV_Error
(
CV_StsBadFlag
,
"Unknown/unsupported color conversion code"
);
}
...
...
modules/ocl/src/opencl/cvt_color.cl
View file @
fe76b211
...
...
@@ -962,3 +962,56 @@ __kernel void HLS2RGB(int cols, int rows, int src_step, int dst_step, int bidx,
}
#
endif
///////////////////////////
RGBA
<->
mRGBA
(
alpha
premultiplied
)
//////////////
#
ifdef
DEPTH_0
__kernel
void
RGBA2mRGBA
(
int
cols,
int
rows,
int
src_step,
int
dst_step,
int
bidx,
__global
const
uchar
*
src,
__global
uchar
*
dst,
int
src_offset,
int
dst_offset
)
{
int
x
=
get_global_id
(
0
)
;
int
y
=
get_global_id
(
1
)
;
if
(
y
<
rows
&&
x
<
cols
)
{
x
<<=
2
;
int
src_idx
=
mad24
(
y,
src_step,
src_offset
+
x
)
;
int
dst_idx
=
mad24
(
y,
dst_step,
dst_offset
+
x
)
;
uchar
v0
=
src[src_idx],
v1
=
src[src_idx
+
1]
;
uchar
v2
=
src[src_idx
+
2],
v3
=
src[src_idx
+
3]
;
dst[dst_idx]
=
(
v0
*
v3
+
HALF_MAX
)
/
MAX_NUM
;
dst[dst_idx
+
1]
=
(
v1
*
v3
+
HALF_MAX
)
/
MAX_NUM
;
dst[dst_idx
+
2]
=
(
v2
*
v3
+
HALF_MAX
)
/
MAX_NUM
;
dst[dst_idx
+
3]
=
v3
;
}
}
__kernel
void
mRGBA2RGBA
(
int
cols,
int
rows,
int
src_step,
int
dst_step,
int
bidx,
__global
const
uchar
*
src,
__global
uchar
*
dst,
int
src_offset,
int
dst_offset
)
{
int
x
=
get_global_id
(
0
)
;
int
y
=
get_global_id
(
1
)
;
if
(
y
<
rows
&&
x
<
cols
)
{
x
<<=
2
;
int
src_idx
=
mad24
(
y,
src_step,
src_offset
+
x
)
;
int
dst_idx
=
mad24
(
y,
dst_step,
dst_offset
+
x
)
;
uchar
v0
=
src[src_idx],
v1
=
src[src_idx
+
1]
;
uchar
v2
=
src[src_idx
+
2],
v3
=
src[src_idx
+
3]
;
uchar
v3_half
=
v3
/
2
;
dst[dst_idx]
=
v3
==
0
?
0
:
(
v0
*
MAX_NUM
+
v3_half
)
/
v3
;
dst[dst_idx
+
1]
=
v3
==
0
?
0
:
(
v1
*
MAX_NUM
+
v3_half
)
/
v3
;
dst[dst_idx
+
2]
=
v3
==
0
?
0
:
(
v2
*
MAX_NUM
+
v3_half
)
/
v3
;
dst[dst_idx
+
3]
=
v3
;
}
}
#
endif
modules/ocl/test/test_color.cpp
View file @
fe76b211
...
...
@@ -259,6 +259,11 @@ OCL_TEST_P(CvtColor8u, BGR5552GRAY) { doTest(2, 1, CVTCODE(BGR5552GRAY)); }
OCL_TEST_P
(
CvtColor8u
,
GRAY2BGR565
)
{
doTest
(
1
,
2
,
CVTCODE
(
GRAY2BGR565
));
}
OCL_TEST_P
(
CvtColor8u
,
GRAY2BGR555
)
{
doTest
(
1
,
2
,
CVTCODE
(
GRAY2BGR555
));
}
// RGBA <-> mRGBA
OCL_TEST_P
(
CvtColor8u
,
RGBA2mRGBA
)
{
doTest
(
4
,
4
,
CVTCODE
(
RGBA2mRGBA
));
}
OCL_TEST_P
(
CvtColor8u
,
mRGBA2RGBA
)
{
doTest
(
4
,
4
,
CVTCODE
(
mRGBA2RGBA
));
}
// YUV -> RGBA_NV12
struct
CvtColor_YUV420
:
...
...
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