forked from opencv/opencv
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/2.4'
Original pull requests: opencv#996 from jet47:gpu-nvcuvid-libraries opencv#995 from jet47:fix-bug-2985 opencv#999 from snosov1:unreliable-results-fix opencv#1005 from alekcac:doc_fix opencv#1004 from jet47:fix-bug-3068 opencv#987 from jet47:bug-3085-fix opencv#969 from pengx17:2.4_binary_cache opencv#929 from dominikrose:mingw-libdc1394-2-windows opencv#1000 from ivan-korolev:fix_sift_bug_2892 opencv#1001 from ivan-korolev:fix_stitching_bug_2405 opencv#998 from asmorkalov:android_cmake_mips_fix opencv#993 from ivan-korolev:fix_videostab_bug_3023 opencv#988 from snosov1:3071-fix opencv#986 from pengx17:2.4_initiated_context opencv#982 from pengx17:2.4_fix_two_bugs opencv#981 from SeninAndrew:ximea_camera_support_fix opencv#991 from asmorkalov:android_javadoc_fix opencv#972 from jet47:mog2-params-bug-2168 opencv#980 from SpecLad:include-config opencv#973 from pengx17:2.4_oclclahe opencv#903 from aks2:2.4 opencv#968 from asmorkalov:android_na_cproj_fix opencv#971 from SpecLad:matchers-ctor opencv#970 from asmorkalov:dshow_valid_check_fix opencv#965 from apavlenko:fix_java_empty_mats Conflicts: cmake/OpenCVModule.cmake modules/core/src/matmul.cpp modules/gpu/CMakeLists.txt modules/ocl/include/opencv2/ocl/ocl.hpp modules/ocl/perf/perf_imgproc.cpp modules/ocl/src/imgproc.cpp modules/ocl/src/initialization.cpp modules/stitching/src/matchers.cpp modules/video/src/video_init.cpp modules/videostab/src/global_motion.cpp
- Loading branch information
Showing
52 changed files
with
1,405 additions
and
378 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ | |
# | ||
# Created: 5 Aug 2011 by Marian Zajko ([email protected]) | ||
# Updated: 25 June 2012 by Igor Kuzmin ([email protected]) | ||
# Updated: 22 October 2012 by Marian Zajko ([email protected]) | ||
# | ||
|
||
set(XIMEA_FOUND) | ||
|
@@ -18,11 +19,15 @@ set(XIMEA_LIBRARY_DIR) | |
if(WIN32) | ||
# Try to find the XIMEA API path in registry. | ||
GET_FILENAME_COMPONENT(XIMEA_PATH "[HKEY_CURRENT_USER\\Software\\XIMEA\\CamSupport\\API;Path]" ABSOLUTE) | ||
|
||
if(EXISTS XIMEA_PATH) | ||
if(EXISTS ${XIMEA_PATH}) | ||
set(XIMEA_FOUND 1) | ||
# set LIB folders | ||
set(XIMEA_LIBRARY_DIR "${XIMEA_PATH}/x86") | ||
if(CMAKE_CL_64) | ||
set(XIMEA_LIBRARY_DIR "${XIMEA_PATH}/x64") | ||
else() | ||
set(XIMEA_LIBRARY_DIR "${XIMEA_PATH}/x86") | ||
endif() | ||
else() | ||
set(XIMEA_FOUND 0) | ||
endif() | ||
|
@@ -38,5 +43,4 @@ endif() | |
|
||
mark_as_advanced(FORCE XIMEA_FOUND) | ||
mark_as_advanced(FORCE XIMEA_PATH) | ||
mark_as_advanced(FORCE XIMEA_LIBRARY_DIR) | ||
|
||
mark_as_advanced(FORCE XIMEA_LIBRARY_DIR) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.