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
c2f85956
Commit
c2f85956
authored
Apr 07, 2014
by
Andrey Pavlenko
Committed by
OpenCV Buildbot
Apr 07, 2014
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2563 from alalek:ipp_builds
parents
def4f5e2
bfc546d2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
25 additions
and
26 deletions
+25
-26
CMakeLists.txt
CMakeLists.txt
+5
-4
OpenCVFindIPP.cmake
cmake/OpenCVFindIPP.cmake
+0
-0
OpenCVFindLibsPerf.cmake
cmake/OpenCVFindLibsPerf.cmake
+4
-7
cvconfig.h.in
cmake/templates/cvconfig.h.in
+1
-0
private.hpp
modules/core/include/opencv2/core/private.hpp
+6
-1
arithm.cpp
modules/core/src/arithm.cpp
+0
-12
system.cpp
modules/core/src/system.cpp
+8
-1
imgwarp.cpp
modules/imgproc/src/imgwarp.cpp
+1
-1
No files found.
CMakeLists.txt
View file @
c2f85956
...
...
@@ -127,7 +127,8 @@ OCV_OPTION(WITH_FFMPEG "Include FFMPEG support" ON
OCV_OPTION
(
WITH_GSTREAMER
"Include Gstreamer support"
ON
IF
(
UNIX AND NOT APPLE AND NOT ANDROID
)
)
OCV_OPTION
(
WITH_GSTREAMER_0_10
"Enable Gstreamer 0.10 support (instead of 1.x)"
OFF
)
OCV_OPTION
(
WITH_GTK
"Include GTK support"
ON
IF
(
UNIX AND NOT APPLE AND NOT ANDROID
)
)
OCV_OPTION
(
WITH_IPP
"Include Intel IPP support"
OFF
IF
(
MSVC OR X86 OR X86_64
)
)
OCV_OPTION
(
WITH_ICV
"Include Intel IPP ICV support"
ON
IF
(
NOT IOS
)
)
OCV_OPTION
(
WITH_IPP
"Include Intel IPP support"
OFF
IF
(
NOT IOS
)
)
OCV_OPTION
(
WITH_JASPER
"Include JPEG2K support"
ON
IF
(
NOT IOS
)
)
OCV_OPTION
(
WITH_JPEG
"Include JPEG support"
ON
)
OCV_OPTION
(
WITH_WEBP
"Include WebP support"
ON
IF
(
NOT IOS
)
)
...
...
@@ -916,11 +917,11 @@ endif(DEFINED WITH_INTELPERC)
status
(
""
)
status
(
" Other third-party libraries:"
)
if
(
WITH_IPP AND IPP_FOUND
)
status
(
" Use IPP:"
"
${
IPP_
LATEST_VERSION_STR
}
[
${
IPP_LATEST_VERSION_MAJOR
}
.
${
IPP_LATEST_VERSION_MINOR
}
.
${
IPP_LATEST
_VERSION_BUILD
}
]"
)
if
(
(
WITH_IPP OR WITH_ICV
)
AND HAVE_IPP
)
status
(
" Use IPP:"
"
${
IPP_
VERSION_STR
}
[
${
IPP_VERSION_MAJOR
}
.
${
IPP_VERSION_MINOR
}
.
${
IPP
_VERSION_BUILD
}
]"
)
status
(
" at:"
"
${
IPP_ROOT_DIR
}
"
)
else
()
status
(
" Use IPP:"
WITH_IPP AND NOT IPP_FOUND
THEN
"IPP not found"
ELSE NO
)
status
(
" Use IPP:"
(
WITH_IPP OR WITH_ICV
)
AND NOT HAVE_IPP
THEN
"IPP not found"
ELSE NO
)
endif
()
status
(
" Use Eigen:"
HAVE_EIGEN THEN
"YES (ver
${
EIGEN_WORLD_VERSION
}
.
${
EIGEN_MAJOR_VERSION
}
.
${
EIGEN_MINOR_VERSION
}
)"
ELSE NO
)
...
...
cmake/OpenCVFindIPP.cmake
View file @
c2f85956
This diff is collapsed.
Click to expand it.
cmake/OpenCVFindLibsPerf.cmake
View file @
c2f85956
...
...
@@ -8,16 +8,13 @@ if(WITH_TBB)
endif
(
WITH_TBB
)
# --- IPP ---
ocv_clear_vars
(
IPP_FOUND
)
if
(
WITH_IPP
)
if
(
WITH_IPP OR WITH_ICV
)
include
(
"
${
OpenCV_SOURCE_DIR
}
/cmake/OpenCVFindIPP.cmake"
)
if
(
IPP_FOUND
)
add_definitions
(
-DHAVE_IPP
)
if
(
HAVE_IPP
)
ocv_include_directories
(
${
IPP_INCLUDE_DIRS
}
)
link_directories
(
${
IPP_LIBRARY_DIRS
}
)
set
(
OPENCV_LINKER_LIBS
${
OPENCV_LINKER_LIBS
}
${
IPP_LIBRARIES
}
)
list
(
APPEND OPENCV_LINKER_LIBS
${
IPP_LIBRARIES
}
)
endif
()
endif
(
WITH_IPP
)
endif
()
# --- CUDA ---
if
(
WITH_CUDA
)
...
...
cmake/templates/cvconfig.h.in
View file @
c2f85956
...
...
@@ -93,6 +93,7 @@
/* Intel Integrated Performance Primitives */
#cmakedefine HAVE_IPP
#cmakedefine HAVE_IPP_ICV_ONLY
/* JPEG-2000 codec */
#cmakedefine HAVE_JASPER
...
...
modules/core/include/opencv2/core/private.hpp
View file @
c2f85956
...
...
@@ -210,7 +210,12 @@ CV_EXPORTS void scalarToRawData(const cv::Scalar& s, void* buf, int type, int un
\****************************************************************************************/
#ifdef HAVE_IPP
# include "ipp.h"
# ifdef HAVE_IPP_ICV_ONLY
# include "ippicv.h"
# include "ippicv_fn_map.h"
# else
# include "ipp.h"
# endif
static
inline
IppiSize
ippiSize
(
int
width
,
int
height
)
{
...
...
modules/core/src/arithm.cpp
View file @
c2f85956
...
...
@@ -52,18 +52,6 @@
namespace
cv
{
#if ARITHM_USE_IPP
struct
IPPArithmInitializer
{
IPPArithmInitializer
(
void
)
{
ippStaticInit
();
}
};
IPPArithmInitializer
ippArithmInitializer
;
#endif
struct
NOP
{};
#if CV_SSE2
...
...
modules/core/src/system.cpp
View file @
c2f85956
...
...
@@ -274,7 +274,14 @@ volatile bool useOptimizedFlag = true;
#ifdef HAVE_IPP
struct
IPPInitializer
{
IPPInitializer
(
void
)
{
ippStaticInit
();
}
IPPInitializer
(
void
)
{
#if IPP_VERSION_MAJOR >= 8
ippInit
();
#else
ippStaticInit
();
#endif
}
};
IPPInitializer
ippInitializer
;
...
...
modules/imgproc/src/imgwarp.cpp
View file @
c2f85956
...
...
@@ -1982,7 +1982,7 @@ public:
}
private
:
Mat
&
src
;
const
Mat
&
src
;
Mat
&
dst
;
double
inv_scale_x
;
double
inv_scale_y
;
...
...
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