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
1461ab41
Commit
1461ab41
authored
Apr 08, 2014
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ipp: added support for updated ICV package
parent
ced81b91
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
6 deletions
+5
-6
CMakeLists.txt
CMakeLists.txt
+3
-4
OpenCVFindIPP.cmake
cmake/OpenCVFindIPP.cmake
+0
-0
OpenCVFindLibsPerf.cmake
cmake/OpenCVFindLibsPerf.cmake
+1
-1
private.hpp
modules/core/include/opencv2/core/private.hpp
+1
-1
No files found.
CMakeLists.txt
View file @
1461ab41
...
...
@@ -127,8 +127,7 @@ 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_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_IPP
"Include Intel IPP support"
ON
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
)
)
...
...
@@ -917,11 +916,11 @@ endif(DEFINED WITH_INTELPERC)
status
(
""
)
status
(
" Other third-party libraries:"
)
if
(
(
WITH_IPP OR WITH_ICV
)
AND HAVE_IPP
)
if
(
WITH_IPP
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 OR WITH_ICV
)
AND NOT HAVE_IPP THEN
"IPP not found"
ELSE NO
)
status
(
" Use IPP:"
WITH_IPP
AND NOT HAVE_IPP THEN
"IPP not found"
ELSE NO
)
endif
()
if
(
DEFINED WITH_IPP_A
)
...
...
cmake/OpenCVFindIPP.cmake
View file @
1461ab41
This diff is collapsed.
Click to expand it.
cmake/OpenCVFindLibsPerf.cmake
View file @
1461ab41
...
...
@@ -8,7 +8,7 @@ if(WITH_TBB)
endif
(
WITH_TBB
)
# --- IPP ---
if
(
WITH_IPP
OR WITH_ICV
)
if
(
WITH_IPP
)
include
(
"
${
OpenCV_SOURCE_DIR
}
/cmake/OpenCVFindIPP.cmake"
)
if
(
HAVE_IPP
)
ocv_include_directories
(
${
IPP_INCLUDE_DIRS
}
)
...
...
modules/core/include/opencv2/core/private.hpp
View file @
1461ab41
...
...
@@ -211,8 +211,8 @@ CV_EXPORTS void scalarToRawData(const cv::Scalar& s, void* buf, int type, int un
#ifdef HAVE_IPP
# ifdef HAVE_IPP_ICV_ONLY
# include "ipp_redefine.h"
# include "ippicv.h"
# include "ippicv_fn_map.h"
# else
# include "ipp.h"
# endif
...
...
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