Skip to content

Commit 82c477c

Browse files
committed
Merge remote-tracking branch 'upstream/3.4' into merge-3.4
2 parents 57bead3 + 67f79aa commit 82c477c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+2652
-1386
lines changed

CMakeLists.txt

+11-7
Original file line numberDiff line numberDiff line change
@@ -1402,15 +1402,19 @@ if(WITH_HALIDE OR HAVE_HALIDE)
14021402
status(" Halide:" HAVE_HALIDE THEN "YES (${HALIDE_LIBRARIES} ${HALIDE_INCLUDE_DIRS})" ELSE NO)
14031403
endif()
14041404

1405-
if(WITH_INF_ENGINE OR HAVE_INF_ENGINE)
1406-
if(HAVE_INF_ENGINE)
1407-
set(__msg "YES")
1408-
if(DEFINED INF_ENGINE_VERSION)
1409-
set(__msg "YES (ver ${INF_ENGINE_VERSION})")
1405+
if(WITH_INF_ENGINE OR INF_ENGINE_TARGET)
1406+
if(INF_ENGINE_TARGET)
1407+
set(__msg "YES (${INF_ENGINE_RELEASE} / ${INF_ENGINE_VERSION})")
1408+
get_target_property(_lib ${INF_ENGINE_TARGET} IMPORTED_LOCATION)
1409+
if(NOT _lib)
1410+
get_target_property(_lib_rel ${INF_ENGINE_TARGET} IMPORTED_IMPLIB_RELEASE)
1411+
get_target_property(_lib_dbg ${INF_ENGINE_TARGET} IMPORTED_IMPLIB_DEBUG)
1412+
set(_lib "${_lib_rel} / ${_lib_dbg}")
14101413
endif()
1414+
get_target_property(_inc ${INF_ENGINE_TARGET} INTERFACE_INCLUDE_DIRECTORIES)
14111415
status(" Inference Engine:" "${__msg}")
1412-
status(" libs:" "${INF_ENGINE_LIBRARIES}")
1413-
status(" includes:" "${INF_ENGINE_INCLUDE_DIRS}")
1416+
status(" libs:" "${_lib}")
1417+
status(" includes:" "${_inc}")
14141418
else()
14151419
status(" Inference Engine:" "NO")
14161420
endif()

cmake/OpenCVCompilerOptimizations.cmake

+10-1
Original file line numberDiff line numberDiff line change
@@ -700,12 +700,21 @@ macro(ocv_compiler_optimization_fill_cpu_config)
700700
list(APPEND __dispatch_modes ${CPU_DISPATCH_${OPT}_FORCE} ${OPT})
701701
endforeach()
702702
list(REMOVE_DUPLICATES __dispatch_modes)
703-
set(OPENCV_CPU_DISPATCH_DEFINITIONS_CONFIGMAKE "")
704703
foreach(OPT ${__dispatch_modes})
705704
set(OPENCV_CPU_DISPATCH_DEFINITIONS_CONFIGMAKE "${OPENCV_CPU_DISPATCH_DEFINITIONS_CONFIGMAKE}
706705
#define CV_CPU_DISPATCH_COMPILE_${OPT} 1")
707706
endforeach()
708707

708+
set(OPENCV_CPU_DISPATCH_DEFINITIONS_CONFIGMAKE "${OPENCV_CPU_DISPATCH_DEFINITIONS_CONFIGMAKE}
709+
\n\n#define CV_CPU_DISPATCH_FEATURES 0 \\")
710+
foreach(OPT ${__dispatch_modes})
711+
if(NOT DEFINED CPU_${OPT}_FEATURE_ALIAS OR NOT "x${CPU_${OPT}_FEATURE_ALIAS}" STREQUAL "x")
712+
set(OPENCV_CPU_DISPATCH_DEFINITIONS_CONFIGMAKE "${OPENCV_CPU_DISPATCH_DEFINITIONS_CONFIGMAKE}
713+
, CV_CPU_${OPT} \\")
714+
endif()
715+
endforeach()
716+
set(OPENCV_CPU_DISPATCH_DEFINITIONS_CONFIGMAKE "${OPENCV_CPU_DISPATCH_DEFINITIONS_CONFIGMAKE}\n")
717+
709718
set(OPENCV_CPU_CONTROL_DEFINITIONS_CONFIGMAKE "// AUTOGENERATED, DO NOT EDIT\n")
710719
foreach(OPT ${CPU_ALL_OPTIMIZATIONS})
711720
if(NOT DEFINED CPU_${OPT}_FEATURE_ALIAS OR NOT "x${CPU_${OPT}_FEATURE_ALIAS}" STREQUAL "x")
+69-61
Original file line numberDiff line numberDiff line change
@@ -1,79 +1,87 @@
11
# The script detects Intel(R) Inference Engine installation
22
#
3-
# Parameters:
4-
# INTEL_CVSDK_DIR - Path to Inference Engine root folder
5-
# IE_PLUGINS_PATH - Path to folder with Inference Engine plugins
3+
# Cache variables:
4+
# INF_ENGINE_OMP_DIR - directory with OpenMP library to link with (needed by some versions of IE)
5+
# INF_ENGINE_RELEASE - a number reflecting IE source interface (linked with OpenVINO release)
66
#
7-
# On return this will define:
7+
# Detect parameters:
8+
# 1. Native cmake IE package:
9+
# - enironment variable InferenceEngine_DIR is set to location of cmake module
10+
# 2. Custom location:
11+
# - INF_ENGINE_INCLUDE_DIRS - headers search location
12+
# - INF_ENGINE_LIB_DIRS - library search location
13+
# 3. OpenVINO location:
14+
# - environment variable INTEL_CVSDK_DIR is set to location of OpenVINO installation dir
15+
# - INF_ENGINE_PLATFORM - part of name of library directory representing its platform (default ubuntu_16.04)
816
#
9-
# HAVE_INF_ENGINE - True if Intel Inference Engine was found
10-
# INF_ENGINE_INCLUDE_DIRS - Inference Engine include folder
11-
# INF_ENGINE_LIBRARIES - Inference Engine libraries and it's dependencies
17+
# Result:
18+
# INF_ENGINE_TARGET - set to name of imported library target representing InferenceEngine
1219
#
13-
macro(ie_fail)
14-
set(HAVE_INF_ENGINE FALSE)
15-
return()
16-
endmacro()
17-
1820

19-
find_package(InferenceEngine QUIET)
20-
if(InferenceEngine_FOUND)
21-
set(INF_ENGINE_LIBRARIES "${InferenceEngine_LIBRARIES}")
22-
set(INF_ENGINE_INCLUDE_DIRS "${InferenceEngine_INCLUDE_DIRS}")
23-
set(INF_ENGINE_VERSION "${InferenceEngine_VERSION}")
24-
set(HAVE_INF_ENGINE TRUE)
25-
return()
21+
if(NOT HAVE_CXX11)
22+
message(WARNING "DL Inference engine requires C++11. You can turn it on via ENABLE_CXX11=ON CMake flag.")
23+
return()
2624
endif()
2725

28-
ocv_check_environment_variables(INTEL_CVSDK_DIR INF_ENGINE_ROOT_DIR IE_PLUGINS_PATH)
26+
# =======================
2927

30-
if(NOT INF_ENGINE_ROOT_DIR OR NOT EXISTS "${INF_ENGINE_ROOT_DIR}/include/inference_engine.hpp")
31-
set(ie_root_paths "${INF_ENGINE_ROOT_DIR}")
32-
if(DEFINED INTEL_CVSDK_DIR)
33-
list(APPEND ie_root_paths "${INTEL_CVSDK_DIR}/")
34-
list(APPEND ie_root_paths "${INTEL_CVSDK_DIR}/deployment_tools/inference_engine")
35-
endif()
28+
function(add_custom_ie_build _inc _lib _lib_rel _lib_dbg _msg)
29+
if(NOT _inc OR NOT (_lib OR _lib_rel OR _lib_dbg))
30+
return()
31+
endif()
32+
add_library(inference_engine UNKNOWN IMPORTED)
33+
set_target_properties(inference_engine PROPERTIES
34+
IMPORTED_LOCATION "${_lib}"
35+
IMPORTED_IMPLIB_RELEASE "${_lib_rel}"
36+
IMPORTED_IMPLIB_DEBUG "${_lib_dbg}"
37+
INTERFACE_INCLUDE_DIRECTORIES "${_inc}"
38+
)
39+
find_library(omp_lib iomp5 PATHS "${INF_ENGINE_OMP_DIR}" NO_DEFAULT_PATH)
40+
if(NOT omp_lib)
41+
message(WARNING "OpenMP for IE have not been found. Set INF_ENGINE_OMP_DIR variable if you experience build errors.")
42+
else()
43+
set_target_properties(inference_engine PROPERTIES IMPORTED_LINK_INTERFACE_LIBRARIES "${omp_lib}")
44+
endif()
45+
set(INF_ENGINE_VERSION "Unknown" CACHE STRING "")
46+
set(INF_ENGINE_TARGET inference_engine PARENT_SCOPE)
47+
message(STATUS "Detected InferenceEngine: ${_msg}")
48+
endfunction()
3649

37-
if(NOT ie_root_paths)
38-
list(APPEND ie_root_paths "/opt/intel/computer_vision_sdk/deployment_tools/inference_engine/")
39-
endif()
50+
# ======================
4051

41-
find_path(INF_ENGINE_ROOT_DIR include/inference_engine.hpp PATHS ${ie_root_paths})
42-
if(INF_ENGINE_ROOT_DIR MATCHES "-NOTFOUND$")
43-
unset(INF_ENGINE_ROOT_DIR CACHE)
44-
endif()
52+
find_package(InferenceEngine QUIET)
53+
if(InferenceEngine_FOUND)
54+
set(INF_ENGINE_TARGET IE::inference_engine)
55+
set(INF_ENGINE_VERSION "${InferenceEngine_VERSION}" CACHE STRING "")
56+
message(STATUS "Detected InferenceEngine: cmake package")
4557
endif()
4658

47-
set(INF_ENGINE_INCLUDE_DIRS "${INF_ENGINE_ROOT_DIR}/include" CACHE PATH "Path to Inference Engine include directory")
48-
49-
if(NOT INF_ENGINE_ROOT_DIR
50-
OR NOT EXISTS "${INF_ENGINE_ROOT_DIR}"
51-
OR NOT EXISTS "${INF_ENGINE_ROOT_DIR}/include/inference_engine.hpp"
52-
)
53-
message(WARNING "DL IE: Can't detect INF_ENGINE_ROOT_DIR location.")
54-
ie_fail()
59+
if(NOT INF_ENGINE_TARGET AND INF_ENGINE_LIB_DIRS AND INF_ENGINE_INCLUDE_DIRS)
60+
find_path(ie_custom_inc "inference_engine.hpp" PATHS "${INF_ENGINE_INCLUDE_DIRS}" NO_DEFAULT_PATH)
61+
find_library(ie_custom_lib "inference_engine" PATHS "${INF_ENGINE_LIB_DIRS}" NO_DEFAULT_PATH)
62+
find_library(ie_custom_lib_rel "inference_engine" PATHS "${INF_ENGINE_LIB_DIRS}/Release" NO_DEFAULT_PATH)
63+
find_library(ie_custom_lib_dbg "inference_engine" PATHS "${INF_ENGINE_LIB_DIRS}/Debug" NO_DEFAULT_PATH)
64+
add_custom_ie_build("${ie_custom_inc}" "${ie_custom_lib}" "${ie_custom_lib_rel}" "${ie_custom_lib_dbg}" "INF_ENGINE_{INCLUDE,LIB}_DIRS")
5565
endif()
5666

57-
set(INF_ENGINE_LIBRARIES "")
58-
59-
set(ie_lib_list inference_engine)
60-
61-
if(NOT IS_ABSOLUTE "${IE_PLUGINS_PATH}")
62-
set(IE_PLUGINS_PATH "${INF_ENGINE_ROOT_DIR}/${IE_PLUGINS_PATH}")
67+
set(_loc "$ENV{INTEL_CVSDK_DIR}")
68+
if(NOT INF_ENGINE_TARGET AND _loc)
69+
set(INF_ENGINE_PLATFORM "ubuntu_16.04" CACHE STRING "InferenceEngine platform (library dir)")
70+
find_path(ie_custom_env_inc "inference_engine.hpp" PATHS "${_loc}/deployment_tools/inference_engine/include" NO_DEFAULT_PATH)
71+
find_library(ie_custom_env_lib "inference_engine" PATHS "${_loc}/deployment_tools/inference_engine/lib/${INF_ENGINE_PLATFORM}/intel64" NO_DEFAULT_PATH)
72+
find_library(ie_custom_env_lib_rel "inference_engine" PATHS "${_loc}/deployment_tools/inference_engine/lib/intel64/Release" NO_DEFAULT_PATH)
73+
find_library(ie_custom_env_lib_dbg "inference_engine" PATHS "${_loc}/deployment_tools/inference_engine/lib/intel64/Debug" NO_DEFAULT_PATH)
74+
add_custom_ie_build("${ie_custom_env_inc}" "${ie_custom_env_lib}" "${ie_custom_env_lib_rel}" "${ie_custom_env_lib_dbg}" "OpenVINO (${_loc})")
6375
endif()
6476

65-
link_directories(
66-
${INF_ENGINE_ROOT_DIR}/external/mkltiny_lnx/lib
67-
${INF_ENGINE_ROOT_DIR}/external/cldnn/lib
68-
)
69-
70-
foreach(lib ${ie_lib_list})
71-
find_library(${lib} NAMES ${lib} HINTS ${IE_PLUGINS_PATH})
72-
if(NOT ${lib})
73-
message(WARNING "DL IE: Can't find library: '${lib}'")
74-
ie_fail()
75-
endif()
76-
list(APPEND INF_ENGINE_LIBRARIES ${${lib}})
77-
endforeach()
77+
# Add more features to the target
7878

79-
set(HAVE_INF_ENGINE TRUE)
79+
if(INF_ENGINE_TARGET)
80+
if(NOT INF_ENGINE_RELEASE)
81+
message(WARNING "InferenceEngine version have not been set, 2018R2 will be used by default. Set INF_ENGINE_RELEASE variable if you experience build errors.")
82+
endif()
83+
set(INF_ENGINE_RELEASE "2018020000" CACHE STRING "Force IE version, should be in form YYYYAABBCC (e.g. 2018R2.0.2 -> 2018020002)")
84+
set_target_properties(${INF_ENGINE_TARGET} PROPERTIES
85+
INTERFACE_COMPILE_DEFINITIONS "HAVE_INF_ENGINE=1;INF_ENGINE_RELEASE=${INF_ENGINE_RELEASE}"
86+
)
87+
endif()

cmake/OpenCVModule.cmake

+3-3
Original file line numberDiff line numberDiff line change
@@ -1132,7 +1132,7 @@ function(ocv_add_perf_tests)
11321132
source_group("Src" FILES "${${the_target}_pch}")
11331133
ocv_add_executable(${the_target} ${OPENCV_PERF_${the_module}_SOURCES} ${${the_target}_pch})
11341134
ocv_target_include_modules(${the_target} ${perf_deps} "${perf_path}")
1135-
ocv_target_link_libraries(${the_target} LINK_PRIVATE ${perf_deps} ${OPENCV_MODULE_${the_module}_DEPS} ${OPENCV_LINKER_LIBS})
1135+
ocv_target_link_libraries(${the_target} LINK_PRIVATE ${perf_deps} ${OPENCV_MODULE_${the_module}_DEPS} ${OPENCV_LINKER_LIBS} ${OPENCV_PERF_${the_module}_DEPS})
11361136
add_dependencies(opencv_perf_tests ${the_target})
11371137

11381138
set_target_properties(${the_target} PROPERTIES LABELS "${OPENCV_MODULE_${the_module}_LABEL};PerfTest")
@@ -1175,7 +1175,7 @@ function(ocv_add_perf_tests)
11751175
endfunction()
11761176

11771177
# this is a command for adding OpenCV accuracy/regression tests to the module
1178-
# ocv_add_accuracy_tests([FILES <source group name> <list of sources>] [DEPENDS_ON] <list of extra dependencies>)
1178+
# ocv_add_accuracy_tests(<list of extra dependencies>)
11791179
function(ocv_add_accuracy_tests)
11801180
ocv_debug_message("ocv_add_accuracy_tests(" ${ARGN} ")")
11811181

@@ -1211,7 +1211,7 @@ function(ocv_add_accuracy_tests)
12111211
source_group("Src" FILES "${${the_target}_pch}")
12121212
ocv_add_executable(${the_target} ${OPENCV_TEST_${the_module}_SOURCES} ${${the_target}_pch})
12131213
ocv_target_include_modules(${the_target} ${test_deps} "${test_path}")
1214-
ocv_target_link_libraries(${the_target} LINK_PRIVATE ${test_deps} ${OPENCV_MODULE_${the_module}_DEPS} ${OPENCV_LINKER_LIBS})
1214+
ocv_target_link_libraries(${the_target} LINK_PRIVATE ${test_deps} ${OPENCV_MODULE_${the_module}_DEPS} ${OPENCV_LINKER_LIBS} ${OPENCV_TEST_${the_module}_DEPS})
12151215
add_dependencies(opencv_tests ${the_target})
12161216

12171217
set_target_properties(${the_target} PROPERTIES LABELS "${OPENCV_MODULE_${the_module}_LABEL};AccuracyTest")

doc/opencv.bib

+14
Original file line numberDiff line numberDiff line change
@@ -1016,3 +1016,17 @@ @INPROCEEDINGS{Ke17
10161016
year = {2017},
10171017
organization = {IEEE}
10181018
}
1019+
1020+
@ARTICLE{gonzalez,
1021+
title={Digital Image Fundamentals, Digital Imaging Processing},
1022+
author={Gonzalez, Rafael C and others},
1023+
year={1987},
1024+
publisher={Addison Wesley Publishing Company}
1025+
}
1026+
1027+
@ARTICLE{gruzman,
1028+
title={Цифровая обработка изображений в информационных системах},
1029+
author={Грузман, И.С. and Киричук, В.С. and Косых, В.П. and Перетягин, Г.И. and Спектор, А.А.},
1030+
year={2000},
1031+
publisher={Изд-во НГТУ Новосибирск}
1032+
}
Loading
Loading
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
Out-of-focus Deblur Filter {#tutorial_out_of_focus_deblur_filter}
2+
==========================
3+
4+
Goal
5+
----
6+
7+
In this tutorial you will learn:
8+
9+
- what is a degradation image model
10+
- what is PSF of out-of-focus image
11+
- how to restore a blurred image
12+
- what is Wiener filter
13+
14+
Theory
15+
------
16+
17+
@note The explanation is based on the books @cite gonzalez and @cite gruzman. Also, you can refer to Matlab's tutorial [Image Deblurring in Matlab] and an article [SmartDeblur].
18+
@note An out-of-focus image on this page is a real world image. An out-of-focus was done manually by camera optics.
19+
20+
### What is a degradation image model?
21+
22+
A mathematical model of the image degradation in frequency domain representation is:
23+
24+
\f[S = H\cdot U + N\f]
25+
26+
where
27+
\f$S\f$ is a spectrum of blurred (degraded) image,
28+
\f$U\f$ is a spectrum of original true (undegraded) image,
29+
\f$H\f$ is frequency response of point spread function (PSF),
30+
\f$N\f$ is a spectrum of additive noise.
31+
32+
Circular PSF is a good approximation of out-of-focus distortion. Such PSF is specified by only one parameter - radius \f$R\f$. Circular PSF is used in this work.
33+
34+
![Circular point spread function](psf.png)
35+
36+
### How to restore an blurred image?
37+
38+
The objective of restoration (deblurring) is to obtain an estimate of the original image. Restoration formula in frequency domain is:
39+
40+
\f[U' = H_w\cdot S\f]
41+
42+
where
43+
\f$U'\f$ is spectrum of estimation of original image \f$U\f$,
44+
\f$H_w\f$ is restoration filter, for example, Wiener filter.
45+
46+
### What is Wiener filter?
47+
48+
Wiener filter is a way to restore a blurred image. Let's suppose that PSF is a real and symmetric signal, a power spectrum of the original true image and noise are not known,
49+
then simplified Wiener formula is:
50+
51+
\f[H_w = \frac{H}{|H|^2+\frac{1}{SNR}} \f]
52+
53+
where
54+
\f$SNR\f$ is signal-to-noise ratio.
55+
56+
So, in order to recover an out-of-focus image by Wiener filter, it needs to know \f$SNR\f$ and \f$R\f$ of circular PSF.
57+
58+
59+
Source code
60+
-----------
61+
62+
You can find source code in the `samples/cpp/tutorial_code/ImgProc/out_of_focus_deblur_filter/out_of_focus_deblur_filter.cpp` of the OpenCV source code library.
63+
64+
@include cpp/tutorial_code/ImgProc/out_of_focus_deblur_filter/out_of_focus_deblur_filter.cpp
65+
66+
Explanation
67+
-----------
68+
69+
An out-of-focus image recovering algorithm consists of PSF generation, Wiener filter generation and filtering an blurred image in frequency domain:
70+
@snippet samples/cpp/tutorial_code/ImgProc/out_of_focus_deblur_filter/out_of_focus_deblur_filter.cpp main
71+
72+
A function calcPSF() forms an circular PSF according to input parameter radius \f$R\f$:
73+
@snippet samples/cpp/tutorial_code/ImgProc/out_of_focus_deblur_filter/out_of_focus_deblur_filter.cpp calcPSF
74+
75+
A function calcWnrFilter() synthesizes simplified Wiener filter \f$H_w\f$ according to formula described above:
76+
@snippet samples/cpp/tutorial_code/ImgProc/out_of_focus_deblur_filter/out_of_focus_deblur_filter.cpp calcWnrFilter
77+
78+
A function fftshift() rearranges PSF. This code was just copied from tutorial @ref tutorial_discrete_fourier_transform "Discrete Fourier Transform":
79+
@snippet samples/cpp/tutorial_code/ImgProc/out_of_focus_deblur_filter/out_of_focus_deblur_filter.cpp fftshift
80+
81+
A function filter2DFreq() filters an blurred image in frequency domain:
82+
@snippet samples/cpp/tutorial_code/ImgProc/out_of_focus_deblur_filter/out_of_focus_deblur_filter.cpp filter2DFreq
83+
84+
Result
85+
------
86+
87+
Below you can see real out-of-focus image:
88+
![Out-of-focus image](images/original.jpg)
89+
90+
91+
Below result was done by \f$R\f$ = 53 and \f$SNR\f$ = 5200 parameters:
92+
![The restored (deblurred) image](images/recovered.jpg)
93+
94+
The Wiener filter was used, values of \f$R\f$ and \f$SNR\f$ were selected manually to give the best possible visual result.
95+
We can see that the result is not perfect, but it gives us a hint to the image content. With some difficulty, the text is readable.
96+
97+
@note The parameter \f$R\f$ is the most important. So you should adjust \f$R\f$ first, then \f$SNR\f$.
98+
@note Sometimes you can observe the ringing effect in an restored image. This effect can be reduced by several methods. For example, you can taper input image edges.
99+
100+
You can also find a quick video demonstration of this on
101+
[YouTube](https://youtu.be/0bEcE4B0XP4).
102+
@youtube{0bEcE4B0XP4}
103+
104+
References
105+
------
106+
- [Image Deblurring in Matlab] - Image Deblurring in Matlab
107+
- [SmartDeblur] - SmartDeblur site
108+
109+
<!-- invisible references list -->
110+
[Digital Image Processing]: http://web.ipac.caltech.edu/staff/fmasci/home/astro_refs/Digital_Image_Processing_2ndEd.pdf
111+
[Image Deblurring in Matlab]: https://www.mathworks.com/help/images/image-deblurring.html
112+
[SmartDeblur]: http://yuzhikov.com/articles/BlurredImagesRestoration1.htm

doc/tutorials/imgproc/table_of_content_imgproc.markdown

+10
Original file line numberDiff line numberDiff line change
@@ -292,3 +292,13 @@ In this section you will learn about the image processing (manipulation) functio
292292
*Author:* Theodore Tsesmelis
293293

294294
Where we learn to segment objects using Laplacian filtering, the Distance Transformation and the Watershed algorithm.
295+
296+
- @subpage tutorial_out_of_focus_deblur_filter
297+
298+
*Languages:* C++
299+
300+
*Compatibility:* \> OpenCV 2.0
301+
302+
*Author:* Karpushin Vladislav
303+
304+
You will learn how to recover an out-of-focus image by Wiener filter.

0 commit comments

Comments
 (0)