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
64bd77cf
Commit
64bd77cf
authored
Mar 09, 2015
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3794 from vpisarev:ubuntu_x86_fixes
parents
361eb633
643bbb2d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
4 deletions
+12
-4
CMakeLists.txt
CMakeLists.txt
+1
-1
OpenCVDetectPython.cmake
cmake/OpenCVDetectPython.cmake
+2
-2
OpenCVFindIPP.cmake
cmake/OpenCVFindIPP.cmake
+5
-0
stat.cpp
modules/core/src/stat.cpp
+4
-1
No files found.
CMakeLists.txt
View file @
64bd77cf
...
...
@@ -995,7 +995,7 @@ if(WITH_IPP AND HAVE_IPP)
status
(
" linked:"
BUILD_WITH_DYNAMIC_IPP THEN
"dynamic"
ELSE
"static"
)
endif
()
else
()
status
(
" Use IPP:"
WITH_IPP AND NOT HAVE_IPP THEN
"IPP not found"
ELSE NO
)
status
(
" Use IPP:"
WITH_IPP AND NOT HAVE_IPP THEN
"IPP not found
or implicitly disabled
"
ELSE NO
)
endif
()
if
(
DEFINED WITH_IPP_A
)
...
...
cmake/OpenCVDetectPython.cmake
View file @
64bd77cf
...
...
@@ -75,10 +75,10 @@ function(find_python preferred_version min_version library_env include_dir_env
if
(
NOT ANDROID AND NOT IOS
)
ocv_check_environment_variables
(
${
library_env
}
${
include_dir_env
}
)
if
(
${
library
}
)
if
(
${
${
library_env
}
}
)
set
(
PYTHON_LIBRARY
"
${${
library_env
}}
"
)
endif
()
if
(
${
include_dir
}
)
if
(
${
${
include_dir_env
}
}
)
set
(
PYTHON_INCLUDE_DIR
"
${${
include_dir_env
}}
"
)
endif
()
...
...
cmake/OpenCVFindIPP.cmake
View file @
64bd77cf
...
...
@@ -34,6 +34,11 @@ unset(IPP_VERSION_MAJOR)
unset
(
IPP_VERSION_MINOR
)
unset
(
IPP_VERSION_BUILD
)
if
(
X86 AND UNIX AND NOT APPLE AND NOT ANDROID AND BUILD_SHARED_LIBS
)
message
(
STATUS
"On 32-bit Linux IPP can not currently be used with dynamic libs because of linker errors. Set BUILD_SHARED_LIBS=OFF"
)
return
()
endif
()
set
(
IPP_X64 0
)
if
(
CMAKE_CXX_SIZEOF_DATA_PTR EQUAL 8
)
set
(
IPP_X64 1
)
...
...
modules/core/src/stat.cpp
View file @
64bd77cf
...
...
@@ -2320,7 +2320,10 @@ void cv::minMaxIdx(InputArray _src, double* minVal,
depth
==
CV_8U
?
(
ippiMinMaxIndxFuncC1
)
ippiMinMaxIndx_8u_C1R
:
depth
==
CV_8S
?
(
ippiMinMaxIndxFuncC1
)
ippiMinMaxIndx_8s_C1R
:
depth
==
CV_16U
?
(
ippiMinMaxIndxFuncC1
)
ippiMinMaxIndx_16u_C1R
:
depth
==
CV_32F
?
(
ippiMinMaxIndxFuncC1
)
ippiMinMaxIndx_32f_C1R
:
0
;
#if !((defined _MSC_VER && defined _M_IX86) || defined __i386__)
depth
==
CV_32F
?
(
ippiMinMaxIndxFuncC1
)
ippiMinMaxIndx_32f_C1R
:
#endif
0
;
CV_SUPPRESS_DEPRECATED_END
if
(
ippFuncC1
)
...
...
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