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
498da24b
Commit
498da24b
authored
Aug 11, 2014
by
Alexander Karsakov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disabled some IPP calls of cvtColor since it breaks OCL accuracy tests
with test_loop_times=30
parent
835b5e21
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
color.cpp
modules/imgproc/src/color.cpp
+10
-10
No files found.
modules/imgproc/src/color.cpp
View file @
498da24b
...
@@ -3381,18 +3381,16 @@ void cv::cvtColor( InputArray _src, OutputArray _dst, int code, int dcn )
...
@@ -3381,18 +3381,16 @@ void cv::cvtColor( InputArray _src, OutputArray _dst, int code, int dcn )
_dst
.
create
(
sz
,
CV_8UC2
);
_dst
.
create
(
sz
,
CV_8UC2
);
dst
=
_dst
.
getMat
();
dst
=
_dst
.
getMat
();
#if
def HAVE_IPP
#if
defined(HAVE_IPP) && 0 // breaks OCL accuracy tests
CV_SUPPRESS_DEPRECATED_START
CV_SUPPRESS_DEPRECATED_START
#if 0
if
(
code
==
CV_BGR2BGR565
&&
scn
==
3
)
if
(
code
==
CV_BGR2BGR565
&&
scn
==
3
)
{
{
if
(
CvtColorIPPLoop
(
src
,
dst
,
IPPGeneralFunctor
((
ippiGeneralFunc
)
ippiBGRToBGR565_8u16u_C3R
)))
if
(
CvtColorIPPLoop
(
src
,
dst
,
IPPGeneralFunctor
((
ippiGeneralFunc
)
ippiBGRToBGR565_8u16u_C3R
)))
return
;
return
;
setIppErrorStatus
();
setIppErrorStatus
();
}
}
else
else
if
(
code
==
CV_BGRA2BGR565
&&
scn
==
4
)
#endif
if
(
code
==
CV_BGRA2BGR565
&&
scn
==
4
)
{
{
if
(
CvtColorIPPLoopCopy
(
src
,
dst
,
if
(
CvtColorIPPLoopCopy
(
src
,
dst
,
IPPReorderGeneralFunctor
(
ippiSwapChannelsC4C3RTab
[
depth
],
IPPReorderGeneralFunctor
(
ippiSwapChannelsC4C3RTab
[
depth
],
...
@@ -3787,6 +3785,7 @@ void cv::cvtColor( InputArray _src, OutputArray _dst, int code, int dcn )
...
@@ -3787,6 +3785,7 @@ void cv::cvtColor( InputArray _src, OutputArray _dst, int code, int dcn )
#if defined (HAVE_IPP) && (IPP_VERSION_MAJOR >= 7)
#if defined (HAVE_IPP) && (IPP_VERSION_MAJOR >= 7)
if
(
depth
==
CV_8U
||
depth
==
CV_16U
)
if
(
depth
==
CV_8U
||
depth
==
CV_16U
)
{
{
#if 0 // breaks OCL accuracy tests
if( code == CV_BGR2HSV_FULL && scn == 3 )
if( code == CV_BGR2HSV_FULL && scn == 3 )
{
{
if( CvtColorIPPLoopCopy(src, dst, IPPReorderGeneralFunctor(ippiSwapChannelsC3RTab[depth], ippiRGB2HSVTab[depth], 2, 1, 0, depth)) )
if( CvtColorIPPLoopCopy(src, dst, IPPReorderGeneralFunctor(ippiSwapChannelsC3RTab[depth], ippiRGB2HSVTab[depth], 2, 1, 0, depth)) )
...
@@ -3799,15 +3798,16 @@ void cv::cvtColor( InputArray _src, OutputArray _dst, int code, int dcn )
...
@@ -3799,15 +3798,16 @@ void cv::cvtColor( InputArray _src, OutputArray _dst, int code, int dcn )
return;
return;
setIppErrorStatus();
setIppErrorStatus();
}
}
else
if
(
code
==
CV_RGB2HSV_FULL
&&
scn
==
3
&&
depth
==
CV_16U
)
else if( code == CV_RGB2HSV_FULL && scn ==
4
)
{
{
if
(
CvtColorIPPLoop
Copy
(
src
,
dst
,
IPPGeneralFunctor
(
ippiRGB2HSVTab
[
depth
]
))
)
if( CvtColorIPPLoop
(src, dst, IPPReorderGeneralFunctor(ippiSwapChannelsC4C3RTab[depth], ippiRGB2HSVTab[depth], 0, 1, 2, depth
)) )
return;
return;
setIppErrorStatus();
setIppErrorStatus();
}
} else
else
if
(
code
==
CV_RGB2HSV_FULL
&&
scn
==
4
)
#endif
if
(
code
==
CV_RGB2HSV_FULL
&&
scn
==
3
&&
depth
==
CV_16U
)
{
{
if
(
CvtColorIPPLoop
(
src
,
dst
,
IPPReorderGeneralFunctor
(
ippiSwapChannelsC4C3RTab
[
depth
],
ippiRGB2HSVTab
[
depth
],
0
,
1
,
2
,
depth
))
)
if
(
CvtColorIPPLoop
Copy
(
src
,
dst
,
IPPGeneralFunctor
(
ippiRGB2HSVTab
[
depth
]
))
)
return
;
return
;
setIppErrorStatus
();
setIppErrorStatus
();
}
}
...
...
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