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
a5378186
Commit
a5378186
authored
May 05, 2014
by
Alexander Alekhin
Committed by
OpenCV Buildbot
May 05, 2014
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2688 from akarsakov:ipp_disable_resize_8u
parents
d9d9de75
4ebe7609
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
imgwarp.cpp
modules/imgproc/src/imgwarp.cpp
+3
-1
No files found.
modules/imgproc/src/imgwarp.cpp
View file @
a5378186
...
...
@@ -1930,9 +1930,11 @@ public:
switch
(
type
)
{
#if 0 // disabled since it breaks tests for CascadeClassifier
case CV_8UC1: SET_IPP_RESIZE_PTR(8u,C1); break;
case CV_8UC3: SET_IPP_RESIZE_PTR(8u,C3); break;
case CV_8UC4: SET_IPP_RESIZE_PTR(8u,C4); break;
#endif
case
CV_16UC1
:
SET_IPP_RESIZE_PTR
(
16u
,
C1
);
break
;
case
CV_16UC3
:
SET_IPP_RESIZE_PTR
(
16u
,
C3
);
break
;
case
CV_16UC4
:
SET_IPP_RESIZE_PTR
(
16u
,
C4
);
break
;
...
...
@@ -2411,7 +2413,7 @@ void cv::resize( InputArray _src, OutputArray _dst, Size dsize,
mode
=
ippCubic
;
if
(
mode
>=
0
&&
(
cn
==
1
||
cn
==
3
||
cn
==
4
)
&&
(
depth
==
CV_
8U
||
depth
==
CV_
16U
||
depth
==
CV_16S
||
depth
==
CV_32F
||
(
depth
==
CV_16U
||
depth
==
CV_16S
||
depth
==
CV_32F
||
(
depth
==
CV_64F
&&
mode
==
ippLinear
)))
{
bool
ok
=
true
;
...
...
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