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
c43e3285
Commit
c43e3285
authored
May 23, 2014
by
Alexander Alekhin
Committed by
OpenCV Buildbot
May 23, 2014
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2713 from alalek:icv_enable_fns
parents
7249622c
1f638a3e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
dxt.cpp
modules/core/src/dxt.cpp
+2
-2
corner.cpp
modules/imgproc/src/corner.cpp
+1
-1
sumpixels.cpp
modules/imgproc/src/sumpixels.cpp
+1
-1
No files found.
modules/core/src/dxt.cpp
View file @
c43e3285
...
...
@@ -2897,7 +2897,7 @@ static void IDCT_64f(const double* src, int src_step, double* dft_src, double* d
namespace
cv
{
#if defined HAVE_IPP && IPP_VERSION_MAJOR >= 7
&& !defined HAVE_IPP_ICV_ONLY
#if defined HAVE_IPP && IPP_VERSION_MAJOR >= 7
typedef
IppStatus
(
CV_STDCALL
*
ippiDCTFunc
)(
const
Ipp32f
*
,
int
,
Ipp32f
*
,
int
,
const
void
*
,
Ipp8u
*
);
typedef
IppStatus
(
CV_STDCALL
*
ippiDCTInitAlloc
)(
void
**
,
IppiSize
,
IppHintAlgorithm
);
...
...
@@ -3050,7 +3050,7 @@ void cv::dct( InputArray _src0, OutputArray _dst, int flags )
_dst
.
create
(
src
.
rows
,
src
.
cols
,
type
);
Mat
dst
=
_dst
.
getMat
();
#if defined (HAVE_IPP) && (IPP_VERSION_MAJOR >= 7)
&& !defined HAVE_IPP_ICV_ONLY
#if defined (HAVE_IPP) && (IPP_VERSION_MAJOR >= 7)
bool
row
=
(
flags
&
DCT_ROWS
)
!=
0
;
if
(
src
.
type
()
==
CV_32F
)
{
...
...
modules/imgproc/src/corner.cpp
View file @
c43e3285
...
...
@@ -460,7 +460,7 @@ void cv::cornerMinEigenVal( InputArray _src, OutputArray _dst, int blockSize, in
Mat
src
=
_src
.
getMat
();
_dst
.
create
(
src
.
size
(),
CV_32FC1
);
Mat
dst
=
_dst
.
getMat
();
#if defined(HAVE_IPP) &&
!defined(HAVE_IPP_ICV_ONLY) &&
(IPP_VERSION_MAJOR >= 8)
#if defined(HAVE_IPP) && (IPP_VERSION_MAJOR >= 8)
typedef
IppStatus
(
CV_STDCALL
*
ippiMinEigenValGetBufferSize
)(
IppiSize
,
int
,
int
,
int
*
);
typedef
IppStatus
(
CV_STDCALL
*
ippiMinEigenVal
)(
const
void
*
,
int
,
Ipp32f
*
,
int
,
IppiSize
,
IppiKernelType
,
int
,
int
,
Ipp8u
*
);
IppiKernelType
kerType
;
...
...
modules/imgproc/src/sumpixels.cpp
View file @
c43e3285
...
...
@@ -364,7 +364,7 @@ void cv::integral( InputArray _src, OutputArray _sum, OutputArray _sqsum, Output
sqsum
=
_sqsum
.
getMat
();
};
#if defined
(HAVE_IPP) && (IPP_VERSION_MAJOR >= 7) && !defined HAVE_IPP_ICV_ONLY
#if defined
(HAVE_IPP) && !defined(HAVE_IPP_ICV_ONLY) // Disabled on ICV due invalid results
if
(
(
depth
==
CV_8U
)
&&
(
sdepth
==
CV_32F
||
sdepth
==
CV_32S
)
&&
(
!
_tilted
.
needed
()
)
&&
(
!
_sqsum
.
needed
()
||
sqdepth
==
CV_64F
)
&&
(
cn
==
1
)
)
{
IppStatus
status
=
ippStsErr
;
...
...
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