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
9828cd60
Commit
9828cd60
authored
Apr 08, 2014
by
vbystricky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove defined(HAVE_IPP)
parent
f23134ce
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
8 deletions
+8
-8
dxt.cpp
modules/core/src/dxt.cpp
+1
-1
filter.cpp
modules/imgproc/src/filter.cpp
+1
-1
imgwarp.cpp
modules/imgproc/src/imgwarp.cpp
+3
-3
morph.cpp
modules/imgproc/src/morph.cpp
+2
-2
smooth.cpp
modules/imgproc/src/smooth.cpp
+1
-1
No files found.
modules/core/src/dxt.cpp
View file @
9828cd60
...
...
@@ -53,7 +53,7 @@ namespace cv
# pragma warning(disable: 4748)
#endif
#if
defined HAVE_IPP &&
IPP_VERSION_X100 >= 701
#if IPP_VERSION_X100 >= 701
#define USE_IPP_DFT 1
#else
#undef USE_IPP_DFT
...
...
modules/imgproc/src/filter.cpp
View file @
9828cd60
...
...
@@ -47,7 +47,7 @@
Base Image Filter
\****************************************************************************************/
#if
defined HAVE_IPP &&
IPP_VERSION_X100 >= 701
#if IPP_VERSION_X100 >= 701
#define USE_IPP_SEP_FILTERS 1
#else
#undef USE_IPP_SEP_FILTERS
...
...
modules/imgproc/src/imgwarp.cpp
View file @
9828cd60
...
...
@@ -55,7 +55,7 @@ static IppStatus sts = ippInit();
namespace
cv
{
#if
defined (HAVE_IPP) && (IPP_VERSION_X100 >= 701)
#if
IPP_VERSION_X100 >= 701
typedef
IppStatus
(
CV_STDCALL
*
ippiResizeFunc
)(
const
void
*
,
int
,
const
void
*
,
int
,
IppiPoint
,
IppiSize
,
IppiBorderType
,
void
*
,
void
*
,
Ipp8u
*
);
typedef
IppStatus
(
CV_STDCALL
*
ippiResizeGetBufferSize
)(
void
*
,
IppiSize
,
Ipp32u
,
int
*
);
typedef
IppStatus
(
CV_STDCALL
*
ippiResizeGetSrcOffset
)(
void
*
,
IppiPoint
,
IppiPoint
*
);
...
...
@@ -1912,7 +1912,7 @@ static int computeResizeAreaTab( int ssize, int dsize, int cn, double scale, Dec
getBufferSizeFunc = (ippiResizeGetBufferSize)ippiResizeGetBufferSize_##TYPE;\
getSrcOffsetFunc = (ippiResizeGetSrcOffset)ippiResizeGetSrcOffset_##TYPE;
#if
defined (HAVE_IPP) && (IPP_VERSION_X100 >= 701)
#if
IPP_VERSION_X100 >= 701
class
IPPresizeInvoker
:
public
ParallelLoopBody
{
...
...
@@ -2384,7 +2384,7 @@ void cv::resize( InputArray _src, OutputArray _dst, Size dsize,
double
scale_x
=
1.
/
inv_scale_x
,
scale_y
=
1.
/
inv_scale_y
;
int
k
,
sx
,
sy
,
dx
,
dy
;
#if
defined (HAVE_IPP) && (IPP_VERSION_X100 >= 701)
#if
IPP_VERSION_X100 >= 701
#define IPP_RESIZE_EPS 1.e-10
double
ex
=
fabs
((
double
)
dsize
.
width
/
src
.
cols
-
inv_scale_x
)
/
inv_scale_x
;
...
...
modules/imgproc/src/morph.cpp
View file @
9828cd60
...
...
@@ -1136,7 +1136,7 @@ private:
Scalar
borderValue
;
};
#if
defined (HAVE_IPP) && (IPP_VERSION_X100 >= 801)
#if
IPP_VERSION_X100 >= 801
static
bool
IPPMorphReplicate
(
int
op
,
const
Mat
&
src
,
Mat
&
dst
,
const
Mat
&
kernel
,
const
Size
&
ksize
,
const
Point
&
anchor
,
bool
rectKernel
)
{
...
...
@@ -1459,7 +1459,7 @@ static void morphOp( int op, InputArray _src, OutputArray _dst,
Size
ksize
=
kernel
.
data
?
kernel
.
size
()
:
Size
(
3
,
3
);
anchor
=
normalizeAnchor
(
anchor
,
ksize
);
#if
defined (HAVE_IPP) && (IPP_VERSION_X100 >= 801)
#if
IPP_VERSION_X100 >= 801
if
(
IPPMorphOp
(
op
,
_src
,
_dst
,
kernel
,
anchor
,
iterations
,
borderType
,
borderValue
)
)
return
;
#endif
...
...
modules/imgproc/src/smooth.cpp
View file @
9828cd60
...
...
@@ -1109,7 +1109,7 @@ void cv::GaussianBlur( InputArray _src, OutputArray _dst, Size ksize,
return
;
#endif
#if
defined (HAVE_IPP) && (IPP_VERSION_X100 >= 801)
#if
IPP_VERSION_X100 >= 801
if
(
type
==
CV_32FC1
&&
sigma1
==
sigma2
&&
ksize
.
width
==
ksize
.
height
&&
sigma1
!=
0.0
)
{
Mat
src
=
_src
.
getMat
(),
dst
=
_dst
.
getMat
();
...
...
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