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
bbac4bc4
Commit
bbac4bc4
authored
Mar 05, 2013
by
Andrey Kamaev
Committed by
OpenCV Buildbot
Mar 05, 2013
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #491 from Daniil-Osokin:cvtRGB2YUV420p
parents
facab407
cf5e2728
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
160 additions
and
1 deletion
+160
-1
types_c.h
modules/imgproc/include/opencv2/imgproc/types_c.h
+15
-1
perf_cvt_color.cpp
modules/imgproc/perf/perf_cvt_color.cpp
+32
-0
color.cpp
modules/imgproc/src/color.cpp
+113
-0
test_cvtyuv.cpp
modules/imgproc/test/test_cvtyuv.cpp
+0
-0
No files found.
modules/imgproc/include/opencv2/imgproc/types_c.h
View file @
bbac4bc4
...
...
@@ -310,7 +310,21 @@ enum
CV_RGBA2mRGBA
=
125
,
CV_mRGBA2RGBA
=
126
,
CV_COLORCVT_MAX
=
127
CV_RGB2YUV_I420
=
127
,
CV_BGR2YUV_I420
=
128
,
CV_RGB2YUV_IYUV
=
CV_RGB2YUV_I420
,
CV_BGR2YUV_IYUV
=
CV_BGR2YUV_I420
,
CV_RGBA2YUV_I420
=
129
,
CV_BGRA2YUV_I420
=
130
,
CV_RGBA2YUV_IYUV
=
CV_RGBA2YUV_I420
,
CV_BGRA2YUV_IYUV
=
CV_BGRA2YUV_I420
,
CV_RGB2YUV_YV12
=
131
,
CV_BGR2YUV_YV12
=
132
,
CV_RGBA2YUV_YV12
=
133
,
CV_BGRA2YUV_YV12
=
134
,
CV_COLORCVT_MAX
=
135
};
...
...
modules/imgproc/perf/perf_cvt_color.cpp
View file @
bbac4bc4
...
...
@@ -115,6 +115,9 @@ CV_ENUM(CvtMode2, CV_YUV2BGR_NV12, CV_YUV2BGRA_NV12, CV_YUV2RGB_NV12, CV_YUV2RGB
COLOR_YUV2GRAY_420
,
CV_YUV2RGB_UYVY
,
CV_YUV2BGR_UYVY
,
CV_YUV2RGBA_UYVY
,
CV_YUV2BGRA_UYVY
,
CV_YUV2RGB_YUY2
,
CV_YUV2BGR_YUY2
,
CV_YUV2RGB_YVYU
,
CV_YUV2BGR_YVYU
,
CV_YUV2RGBA_YUY2
,
CV_YUV2BGRA_YUY2
,
CV_YUV2RGBA_YVYU
,
CV_YUV2BGRA_YVYU
)
CV_ENUM
(
CvtMode3
,
CV_RGB2YUV_IYUV
,
CV_BGR2YUV_IYUV
,
CV_RGBA2YUV_IYUV
,
CV_BGRA2YUV_IYUV
,
CV_RGB2YUV_YV12
,
CV_BGR2YUV_YV12
,
CV_RGBA2YUV_YV12
,
CV_BGRA2YUV_YV12
)
struct
ChPair
{
ChPair
(
int
_scn
,
int
_dcn
)
:
scn
(
_scn
),
dcn
(
_dcn
)
{}
...
...
@@ -162,6 +165,8 @@ ChPair getConversionInfo(int cvtMode)
case
CV_BGR5652BGRA
:
case
CV_BGR5652RGBA
:
return
ChPair
(
2
,
4
);
case
CV_BGR2GRAY
:
case
CV_RGB2GRAY
:
case
CV_RGB2YUV_IYUV
:
case
CV_RGB2YUV_YV12
:
case
CV_BGR2YUV_IYUV
:
case
CV_BGR2YUV_YV12
:
return
ChPair
(
3
,
1
);
case
CV_BGR2BGR555
:
case
CV_BGR2BGR565
:
case
CV_RGB2BGR555
:
case
CV_RGB2BGR565
:
...
...
@@ -204,6 +209,8 @@ ChPair getConversionInfo(int cvtMode)
case
CX_YUV2BGRA
:
case
CX_YUV2RGBA
:
return
ChPair
(
3
,
4
);
case
CV_BGRA2GRAY
:
case
CV_RGBA2GRAY
:
case
CV_RGBA2YUV_IYUV
:
case
CV_RGBA2YUV_YV12
:
case
CV_BGRA2YUV_IYUV
:
case
CV_BGRA2YUV_YV12
:
return
ChPair
(
4
,
1
);
case
CV_BGRA2BGR555
:
case
CV_BGRA2BGR565
:
case
CV_RGBA2BGR555
:
case
CV_RGBA2BGR565
:
...
...
@@ -306,3 +313,28 @@ PERF_TEST_P(Size_CvtMode2, cvtColorYUV420,
SANITY_CHECK
(
dst
,
1
);
}
typedef
std
::
tr1
::
tuple
<
Size
,
CvtMode3
>
Size_CvtMode3_t
;
typedef
perf
::
TestBaseWithParam
<
Size_CvtMode3_t
>
Size_CvtMode3
;
PERF_TEST_P
(
Size_CvtMode3
,
cvtColorRGB2YUV420p
,
testing
::
Combine
(
testing
::
Values
(
szVGA
,
sz720p
,
sz1080p
,
Size
(
130
,
60
)),
testing
::
ValuesIn
(
CvtMode3
::
all
())
)
)
{
Size
sz
=
get
<
0
>
(
GetParam
());
int
mode
=
get
<
1
>
(
GetParam
());
ChPair
ch
=
getConversionInfo
(
mode
);
Mat
src
(
sz
,
CV_8UC
(
ch
.
scn
));
Mat
dst
(
sz
.
height
+
sz
.
height
/
2
,
sz
.
width
,
CV_8UC
(
ch
.
dcn
));
declare
.
time
(
100
);
declare
.
in
(
src
,
WARMUP_RNG
).
out
(
dst
);
TEST_CYCLE
()
cvtColor
(
src
,
dst
,
mode
,
ch
.
dcn
);
SANITY_CHECK
(
dst
,
1
);
}
modules/imgproc/src/color.cpp
View file @
bbac4bc4
...
...
@@ -2744,6 +2744,16 @@ const int ITUR_BT_601_CVG = -852492;
const
int
ITUR_BT_601_CVR
=
1673527
;
const
int
ITUR_BT_601_SHIFT
=
20
;
// Coefficients for RGB to YUV420p conversion
const
int
ITUR_BT_601_CRY
=
269484
;
const
int
ITUR_BT_601_CGY
=
528482
;
const
int
ITUR_BT_601_CBY
=
102760
;
const
int
ITUR_BT_601_CRU
=
-
155188
;
const
int
ITUR_BT_601_CGU
=
-
305135
;
const
int
ITUR_BT_601_CBU
=
460324
;
const
int
ITUR_BT_601_CGV
=
-
385875
;
const
int
ITUR_BT_601_CBV
=
-
74448
;
template
<
int
bIdx
,
int
uIdx
>
struct
YUV420sp2RGB888Invoker
{
...
...
@@ -3076,6 +3086,84 @@ inline void cvtYUV420p2RGBA(Mat& _dst, int _stride, const uchar* _y1, const ucha
converter
(
BlockedRange
(
0
,
_dst
.
rows
/
2
));
}
///////////////////////////////////// RGB -> YUV420p /////////////////////////////////////
template
<
int
bIdx
>
struct
RGB888toYUV420pInvoker
:
public
ParallelLoopBody
{
RGB888toYUV420pInvoker
(
const
Mat
&
src
,
Mat
*
dst
,
const
int
uIdx
)
:
src_
(
src
),
dst_
(
dst
),
uIdx_
(
uIdx
)
{
}
void
operator
()(
const
Range
&
rowRange
)
const
{
const
int
w
=
src_
.
cols
;
const
int
h
=
src_
.
rows
;
const
int
cn
=
src_
.
channels
();
for
(
int
i
=
rowRange
.
start
;
i
<
rowRange
.
end
;
i
++
)
{
const
uchar
*
row0
=
src_
.
ptr
<
uchar
>
(
2
*
i
);
const
uchar
*
row1
=
src_
.
ptr
<
uchar
>
(
2
*
i
+
1
);
uchar
*
y
=
dst_
->
ptr
<
uchar
>
(
2
*
i
);
uchar
*
u
=
dst_
->
ptr
<
uchar
>
(
h
+
i
/
2
)
+
(
i
%
2
)
*
(
w
/
2
);
uchar
*
v
=
dst_
->
ptr
<
uchar
>
(
h
+
(
i
+
h
/
2
)
/
2
)
+
((
i
+
h
/
2
)
%
2
)
*
(
w
/
2
);
if
(
uIdx_
==
2
)
std
::
swap
(
u
,
v
);
for
(
int
j
=
0
,
k
=
0
;
j
<
w
*
cn
;
j
+=
2
*
cn
,
k
++
)
{
int
r00
=
row0
[
2
-
bIdx
+
j
];
int
g00
=
row0
[
1
+
j
];
int
b00
=
row0
[
bIdx
+
j
];
int
r01
=
row0
[
2
-
bIdx
+
cn
+
j
];
int
g01
=
row0
[
1
+
cn
+
j
];
int
b01
=
row0
[
bIdx
+
cn
+
j
];
int
r10
=
row1
[
2
-
bIdx
+
j
];
int
g10
=
row1
[
1
+
j
];
int
b10
=
row1
[
bIdx
+
j
];
int
r11
=
row1
[
2
-
bIdx
+
cn
+
j
];
int
g11
=
row1
[
1
+
cn
+
j
];
int
b11
=
row1
[
bIdx
+
cn
+
j
];
const
int
shifted16
=
(
16
<<
ITUR_BT_601_SHIFT
);
const
int
halfShift
=
(
1
<<
(
ITUR_BT_601_SHIFT
-
1
));
int
y00
=
ITUR_BT_601_CRY
*
r00
+
ITUR_BT_601_CGY
*
g00
+
ITUR_BT_601_CBY
*
b00
+
halfShift
+
shifted16
;
int
y01
=
ITUR_BT_601_CRY
*
r01
+
ITUR_BT_601_CGY
*
g01
+
ITUR_BT_601_CBY
*
b01
+
halfShift
+
shifted16
;
int
y10
=
ITUR_BT_601_CRY
*
r10
+
ITUR_BT_601_CGY
*
g10
+
ITUR_BT_601_CBY
*
b10
+
halfShift
+
shifted16
;
int
y11
=
ITUR_BT_601_CRY
*
r11
+
ITUR_BT_601_CGY
*
g11
+
ITUR_BT_601_CBY
*
b11
+
halfShift
+
shifted16
;
y
[
2
*
k
+
0
]
=
saturate_cast
<
uchar
>
(
y00
>>
ITUR_BT_601_SHIFT
);
y
[
2
*
k
+
1
]
=
saturate_cast
<
uchar
>
(
y01
>>
ITUR_BT_601_SHIFT
);
y
[
2
*
k
+
dst_
->
step
+
0
]
=
saturate_cast
<
uchar
>
(
y10
>>
ITUR_BT_601_SHIFT
);
y
[
2
*
k
+
dst_
->
step
+
1
]
=
saturate_cast
<
uchar
>
(
y11
>>
ITUR_BT_601_SHIFT
);
const
int
shifted128
=
(
128
<<
ITUR_BT_601_SHIFT
);
int
u00
=
ITUR_BT_601_CRU
*
r00
+
ITUR_BT_601_CGU
*
g00
+
ITUR_BT_601_CBU
*
b00
+
halfShift
+
shifted128
;
int
v00
=
ITUR_BT_601_CBU
*
r00
+
ITUR_BT_601_CGV
*
g00
+
ITUR_BT_601_CBV
*
b00
+
halfShift
+
shifted128
;
u
[
k
]
=
saturate_cast
<
uchar
>
(
u00
>>
ITUR_BT_601_SHIFT
);
v
[
k
]
=
saturate_cast
<
uchar
>
(
v00
>>
ITUR_BT_601_SHIFT
);
}
}
}
static
bool
isFit
(
const
Mat
&
src
)
{
return
(
src
.
total
()
>=
320
*
240
);
}
private
:
RGB888toYUV420pInvoker
&
operator
=
(
const
RGB888toYUV420pInvoker
&
);
const
Mat
&
src_
;
Mat
*
const
dst_
;
const
int
uIdx_
;
};
template
<
int
bIdx
,
int
uIdx
>
static
void
cvtRGBtoYUV420p
(
const
Mat
&
src
,
Mat
&
dst
)
{
RGB888toYUV420pInvoker
<
bIdx
>
colorConverter
(
src
,
&
dst
,
uIdx
);
if
(
RGB888toYUV420pInvoker
<
bIdx
>::
isFit
(
src
)
)
parallel_for_
(
Range
(
0
,
src
.
rows
/
2
),
colorConverter
);
else
colorConverter
(
Range
(
0
,
src
.
rows
/
2
));
}
///////////////////////////////////// YUV422 -> RGB /////////////////////////////////////
template
<
int
bIdx
,
int
uIdx
,
int
yIdx
>
...
...
@@ -3713,6 +3801,31 @@ void cv::cvtColor( InputArray _src, OutputArray _dst, int code, int dcn )
src
(
Range
(
0
,
dstSz
.
height
),
Range
::
all
()).
copyTo
(
dst
);
}
break
;
case
CV_RGB2YUV_YV12
:
case
CV_BGR2YUV_YV12
:
case
CV_RGBA2YUV_YV12
:
case
CV_BGRA2YUV_YV12
:
case
CV_RGB2YUV_IYUV
:
case
CV_BGR2YUV_IYUV
:
case
CV_RGBA2YUV_IYUV
:
case
CV_BGRA2YUV_IYUV
:
{
if
(
dcn
<=
0
)
dcn
=
1
;
const
int
bIdx
=
(
code
==
CV_BGR2YUV_IYUV
||
code
==
CV_BGRA2YUV_IYUV
||
code
==
CV_BGR2YUV_YV12
||
code
==
CV_BGRA2YUV_YV12
)
?
0
:
2
;
const
int
uIdx
=
(
code
==
CV_BGR2YUV_IYUV
||
code
==
CV_BGRA2YUV_IYUV
||
code
==
CV_RGB2YUV_IYUV
||
code
==
CV_RGBA2YUV_IYUV
)
?
1
:
2
;
CV_Assert
(
(
scn
==
3
||
scn
==
4
)
&&
depth
==
CV_8U
);
CV_Assert
(
dcn
==
1
);
CV_Assert
(
sz
.
width
%
2
==
0
&&
sz
.
height
%
2
==
0
);
Size
dstSz
(
sz
.
width
,
sz
.
height
/
2
*
3
);
_dst
.
create
(
dstSz
,
CV_MAKETYPE
(
depth
,
dcn
));
dst
=
_dst
.
getMat
();
switch
(
bIdx
+
uIdx
*
10
)
{
case
10
:
cvtRGBtoYUV420p
<
0
,
1
>
(
src
,
dst
);
break
;
case
12
:
cvtRGBtoYUV420p
<
2
,
1
>
(
src
,
dst
);
break
;
case
20
:
cvtRGBtoYUV420p
<
0
,
2
>
(
src
,
dst
);
break
;
case
22
:
cvtRGBtoYUV420p
<
2
,
2
>
(
src
,
dst
);
break
;
default
:
CV_Error
(
CV_StsBadFlag
,
"Unknown/unsupported color conversion code"
);
break
;
};
}
break
;
case
CV_YUV2RGB_UYVY
:
case
CV_YUV2BGR_UYVY
:
case
CV_YUV2RGBA_UYVY
:
case
CV_YUV2BGRA_UYVY
:
case
CV_YUV2RGB_YUY2
:
case
CV_YUV2BGR_YUY2
:
case
CV_YUV2RGB_YVYU
:
case
CV_YUV2BGR_YVYU
:
case
CV_YUV2RGBA_YUY2
:
case
CV_YUV2BGRA_YUY2
:
case
CV_YUV2RGBA_YVYU
:
case
CV_YUV2BGRA_YVYU
:
...
...
modules/imgproc/test/test_cvtyuv.cpp
View file @
bbac4bc4
This diff is collapsed.
Click to expand it.
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