diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index 8d7593e6bfd029cf592f9106a1d71aa14c5864b1..ed94e46317b282a4d9097a8855789e3f0b610b55 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -34,6 +34,7 @@ if(DOXYGEN_FOUND) foreach(m ${OPENCV_MODULES_MAIN} ${OPENCV_MODULES_EXTRA}) list(FIND blacklist ${m} _pos) if(${_pos} EQUAL -1) + list(APPEND CMAKE_DOXYGEN_ENABLED_SECTIONS "HAVE_opencv_${m}") # include folder set(header_dir "${OPENCV_MODULE_opencv_${m}_LOCATION}/include") if(EXISTS "${header_dir}") @@ -125,6 +126,8 @@ if(DOXYGEN_FOUND) # set export variables string(REPLACE ";" " \\\n" CMAKE_DOXYGEN_INPUT_LIST "${rootfile} ; ${faqfile} ; ${paths_include} ; ${paths_hal_interface} ; ${paths_doc} ; ${tutorial_path} ; ${tutorial_py_path} ; ${tutorial_js_path} ; ${paths_tutorial} ; ${tutorial_contrib_root}") string(REPLACE ";" " \\\n" CMAKE_DOXYGEN_IMAGE_PATH "${paths_doc} ; ${tutorial_path} ; ${tutorial_py_path} ; ${tutorial_js_path} ; ${paths_tutorial}") + string(REPLACE ";" " \\\n" CMAKE_DOXYGEN_EXCLUDE_LIST "${CMAKE_DOXYGEN_EXCLUDE_LIST}") + string(REPLACE ";" " " CMAKE_DOXYGEN_ENABLED_SECTIONS "${CMAKE_DOXYGEN_ENABLED_SECTIONS}") # TODO: remove paths_doc from EXAMPLE_PATH after face module tutorials/samples moved to separate folders string(REPLACE ";" " \\\n" CMAKE_DOXYGEN_EXAMPLE_PATH "${example_path} ; ${paths_doc} ; ${paths_sample}") string(REPLACE ";" " \\\n" CMAKE_DOXYGEN_INCLUDE_ROOTS "${paths_include}") diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in index 8386b14ff9d35fedade88d6f58bce8bd38459cbf..456bd005240a74b6e86141920d19b7baf4aa0fb0 100644 --- a/doc/Doxyfile.in +++ b/doc/Doxyfile.in @@ -85,7 +85,7 @@ GENERATE_TODOLIST = YES GENERATE_TESTLIST = YES GENERATE_BUGLIST = YES GENERATE_DEPRECATEDLIST= YES -ENABLED_SECTIONS = +ENABLED_SECTIONS = @CMAKE_DOXYGEN_ENABLED_SECTIONS@ MAX_INITIALIZER_LINES = 30 SHOW_USED_FILES = YES SHOW_FILES = YES @@ -104,7 +104,7 @@ INPUT = @CMAKE_DOXYGEN_INPUT_LIST@ INPUT_ENCODING = UTF-8 FILE_PATTERNS = RECURSIVE = YES -EXCLUDE = +EXCLUDE = @CMAKE_DOXYGEN_EXCLUDE_LIST@ EXCLUDE_SYMLINKS = NO EXCLUDE_PATTERNS = *.inl.hpp *.impl.hpp *_detail.hpp */cudev/**/detail/*.hpp *.m */opencl/runtime/* EXCLUDE_SYMBOLS = cv::DataType<*> cv::traits::* int void CV__* T __CV* diff --git a/doc/py_tutorials/py_imgproc/py_histograms/py_histogram_begins/py_histogram_begins.markdown b/doc/py_tutorials/py_imgproc/py_histograms/py_histogram_begins/py_histogram_begins.markdown index df52e86bf80102ae79d7dd8b1ba092630f18eed1..c26449cad4815214027da24dc1594a4d461877a2 100644 --- a/doc/py_tutorials/py_imgproc/py_histograms/py_histogram_begins/py_histogram_begins.markdown +++ b/doc/py_tutorials/py_imgproc/py_histograms/py_histogram_begins/py_histogram_begins.markdown @@ -41,8 +41,7 @@ you need 256 values to show the above histogram. But consider, what if you need of pixels for all pixel values separately, but number of pixels in a interval of pixel values? say for example, you need to find the number of pixels lying between 0 to 15, then 16 to 31, ..., 240 to 255. You will need only 16 values to represent the histogram. And that is what is shown in example -given in [OpenCV Tutorials on -histograms](http://docs.opencv.org/doc/tutorials/imgproc/histograms/histogram_calculation/histogram_calculation.html#histogram-calculation). +given in @ref tutorial_histogram_calculation "OpenCV Tutorials on histograms". So what you do is simply split the whole histogram to 16 sub-parts and value of each sub-part is the sum of all pixel count in it. This each sub-part is called "BIN". In first case, number of bins diff --git a/doc/py_tutorials/py_setup/py_setup_in_windows/py_setup_in_windows.markdown b/doc/py_tutorials/py_setup/py_setup_in_windows/py_setup_in_windows.markdown index 891c51fb6c35de275047fa596dbf001b84093123..0ba1643ee1ab5c226c55701f54454b7b22f9d874 100644 --- a/doc/py_tutorials/py_setup/py_setup_in_windows/py_setup_in_windows.markdown +++ b/doc/py_tutorials/py_setup/py_setup_in_windows/py_setup_in_windows.markdown @@ -15,18 +15,18 @@ Installing OpenCV from prebuilt binaries -# Below Python packages are to be downloaded and installed to their default locations. - -# [Python-2.7.x](http://www.python.org/ftp/python/2.7.13/python-2.7.13.msi). + -# Python 3.x (3.4+) or Python 2.7.x from [here](https://www.python.org/downloads/). - -# [Numpy](https://sourceforge.net/projects/numpy/files/NumPy/1.10.2/numpy-1.10.2-win32-superpack-python2.7.exe/download). + -# Numpy package (for example, using `pip install numpy` command). - -# [Matplotlib](https://sourceforge.net/projects/matplotlib/files/matplotlib/matplotlib-1.5.0/windows/matplotlib-1.5.0.win32-py2.7.exe/download) (*Matplotlib is optional, but recommended since we use it a lot in our tutorials*). + -# Matplotlib (`pip install matplotlib`) (*Matplotlib is optional, but recommended since we use it a lot in our tutorials*). --# Install all packages into their default locations. Python will be installed to `C:/Python27/`. +-# Install all packages into their default locations. Python will be installed to `C:/Python27/` in case of Python 2.7. -# After installation, open Python IDLE. Enter **import numpy** and make sure Numpy is working fine. --# Download latest OpenCV release from [sourceforge - site](http://sourceforge.net/projects/opencvlibrary/files/opencv-win/2.4.6/OpenCV-2.4.6.0.exe/download) +-# Download latest OpenCV release from [GitHub](https://github.com/opencv/opencv/releases) or + [SourceForge site](https://sourceforge.net/projects/opencvlibrary/files/) and double-click to extract it. -# Goto **opencv/build/python/2.7** folder. @@ -49,16 +49,13 @@ Building OpenCV from source -# [Visual Studio 2012](http://go.microsoft.com/?linkid=9816768) - -# [CMake](http://www.cmake.org/files/v2.8/cmake-2.8.11.2-win32-x86.exe) + -# [CMake](https://cmake.org/download/) -# Download and install necessary Python packages to their default locations - -# [Python 2.7.x](http://python.org/ftp/python/2.7.5/python-2.7.5.msi) + -# Python - -# [Numpy](http://sourceforge.net/projects/numpy/files/NumPy/1.7.1/numpy-1.7.1-win32-superpack-python2.7.exe/download) - - -# [Matplotlib](https://downloads.sourceforge.net/project/matplotlib/matplotlib/matplotlib-1.3.0/matplotlib-1.3.0.win32-py2.7.exe) - (*Matplotlib is optional, but recommended since we use it a lot in our tutorials.*) + -# Numpy @note In this case, we are using 32-bit binaries of Python packages. But if you want to use OpenCV for x64, 64-bit binaries of Python packages are to be installed. Problem is that, there diff --git a/doc/tutorials/calib3d/camera_calibration_pattern/camera_calibration_pattern.markdown b/doc/tutorials/calib3d/camera_calibration_pattern/camera_calibration_pattern.markdown index de219a60f4133d3af54b848ecc7bc853358e6a11..fba4f5a4cc8e5c9e0867e22058653e02467bc662 100644 --- a/doc/tutorials/calib3d/camera_calibration_pattern/camera_calibration_pattern.markdown +++ b/doc/tutorials/calib3d/camera_calibration_pattern/camera_calibration_pattern.markdown @@ -30,4 +30,9 @@ If you want to change unit use -u option (mm inches, px, m) If you want to change page size use -w and -h options -If you want to create a ChArUco board read tutorial Detection of ChArUco Corners in opencv_contrib tutorial(https://docs.opencv.org/3.4/df/d4a/tutorial_charuco_detection.html) \ No newline at end of file +@cond HAVE_opencv_aruco +If you want to create a ChArUco board read @ref tutorial_charuco_detection "tutorial Detection of ChArUco Corners" in opencv_contrib tutorial. +@endcond +@cond !HAVE_opencv_aruco +If you want to create a ChArUco board read tutorial Detection of ChArUco Corners in opencv_contrib tutorial. +@endcond diff --git a/doc/tutorials/gpu/gpu-basics-similarity/gpu_basics_similarity.markdown b/doc/tutorials/gpu/gpu-basics-similarity/gpu_basics_similarity.markdown index 1ef0e74311964dce6bbf967f75843f70a030f122..b511221a796953353ac42c8d91707299a67558c0 100644 --- a/doc/tutorials/gpu/gpu-basics-similarity/gpu_basics_similarity.markdown +++ b/doc/tutorials/gpu/gpu-basics-similarity/gpu_basics_similarity.markdown @@ -96,9 +96,7 @@ I1 = gI1; // Download, gI1.download(I1) will work too @endcode Once you have your data up in the GPU memory you may call GPU enabled functions of OpenCV. Most of the functions keep the same name just as on the CPU, with the difference that they only accept -*GpuMat* inputs. A full list of these you will find in the documentation: [online -here](http://docs.opencv.org/modules/gpu/doc/gpu.html) or the OpenCV reference manual that comes -with the source code. +*GpuMat* inputs. Another thing to keep in mind is that not for all channel numbers you can make efficient algorithms on the GPU. Generally, I found that the input images for the GPU images need to be either one or diff --git a/doc/tutorials/introduction/android_binary_package/O4A_SDK.markdown b/doc/tutorials/introduction/android_binary_package/O4A_SDK.markdown index cb61f6dd94e9ceec584b7ea8304e766ad1fb8525..57e4c3fe1552dd526adb1e7542c86080290b0f1b 100644 --- a/doc/tutorials/introduction/android_binary_package/O4A_SDK.markdown +++ b/doc/tutorials/introduction/android_binary_package/O4A_SDK.markdown @@ -83,7 +83,7 @@ The structure of package contents looks as follows: - `doc` folder contains various OpenCV documentation in PDF format. It's also available online at <http://docs.opencv.org>. - @note The most recent docs (nightly build) are at <http://docs.opencv.org/2.4>. Generally, it's more + @note The most recent docs (nightly build) are at <http://docs.opencv.org/3.4>. Generally, it's more up-to-date, but can refer to not-yet-released functionality. @todo I'm not sure that this is the best place to talk about OpenCV Manager @@ -97,10 +97,6 @@ applications developers: - Automatic updates and bug fixes; - Trusted OpenCV library source. All packages with OpenCV are published on Google Play; -For additional information on OpenCV Manager see the: - -- [Slides](https://docs.google.com/a/itseez.com/presentation/d/1EO_1kijgBg_BsjNp2ymk-aarg-0K279_1VZRcPplSuk/present#slide=id.p) -- [Reference Manual](http://docs.opencv.org/android/refman.html) Manual OpenCV4Android SDK setup ------------------------------- @@ -108,8 +104,8 @@ Manual OpenCV4Android SDK setup ### Get the OpenCV4Android SDK -# Go to the [OpenCV download page on - SourceForge](http://sourceforge.net/projects/opencvlibrary/files/opencv-android/) and download - the latest available version. Currently it's [OpenCV-2.4.9-android-sdk.zip](http://sourceforge.net/projects/opencvlibrary/files/opencv-android/2.4.9/OpenCV-2.4.9-android-sdk.zip/download). + SourceForge](http://sourceforge.net/projects/opencvlibrary/files/) and download + the latest available version. This tutorial is based on this package: [OpenCV-2.4.9-android-sdk.zip](http://sourceforge.net/projects/opencvlibrary/files/opencv-android/2.4.9/OpenCV-2.4.9-android-sdk.zip/download). -# Create a new folder for Android with OpenCV development. For this tutorial we have unpacked OpenCV SDK to the `C:\Work\OpenCV4Android\` directory. diff --git a/doc/tutorials/introduction/clojure_dev_intro/clojure_dev_intro.markdown b/doc/tutorials/introduction/clojure_dev_intro/clojure_dev_intro.markdown index d85335ed1f7ef3e0e7c78a0fef95b9fb2b192d48..2cd8c74a073e3842798f0f7466cf5037d04325e3 100644 --- a/doc/tutorials/introduction/clojure_dev_intro/clojure_dev_intro.markdown +++ b/doc/tutorials/introduction/clojure_dev_intro/clojure_dev_intro.markdown @@ -27,8 +27,8 @@ lein run Preamble -------- -For detailed instruction on installing OpenCV with desktop Java support refer to the [corresponding -tutorial](http://docs.opencv.org/2.4.4-beta/doc/tutorials/introduction/desktop_java/java_dev_intro.html). +For detailed instruction on installing OpenCV with desktop Java support refer to the @ref tutorial_java_dev_intro "corresponding +tutorial". If you are in hurry, here is a minimum quick start guide to install OpenCV on Mac OS X: @@ -302,7 +302,7 @@ Then you can start interacting with OpenCV by just referencing the fully qualifi classes. @note -[Here](http://docs.opencv.org/java/) you can find the full OpenCV Java API. +[Here](https://docs.opencv.org/3.4/javadoc/index.html) you can find the full OpenCV Java API. @code{.clojure} user=> (org.opencv.core.Point. 0 0) @@ -387,8 +387,7 @@ user=> (javadoc Rect) @endcode ### Mimic the OpenCV Java Tutorial Sample in the REPL -Let's now try to port to Clojure the [opencv java tutorial -sample](http://docs.opencv.org/2.4.4-beta/doc/tutorials/introduction/desktop_java/java_dev_intro.html). +Let's now try to port to Clojure the @ref tutorial_java_dev_intro "OpenCV Java tutorial sample". Instead of writing it in a source file we're going to evaluate it at the REPL. Following is the original Java source code of the cited sample. diff --git a/doc/tutorials/ml/introduction_to_svm/introduction_to_svm.markdown b/doc/tutorials/ml/introduction_to_svm/introduction_to_svm.markdown index 5039285df4280e9bc0baa10b89e30d3828437173..e7bf3f4fb6be56d4b6c05b4b2646b67a53cb89c2 100644 --- a/doc/tutorials/ml/introduction_to_svm/introduction_to_svm.markdown +++ b/doc/tutorials/ml/introduction_to_svm/introduction_to_svm.markdown @@ -94,8 +94,6 @@ the weight vector \f$\beta\f$ and the bias \f$\beta_{0}\f$ of the optimal hyperp Source Code ----------- -@note The following code has been implemented with OpenCV 3.0 classes and functions. An equivalent version of the code using OpenCV 2.4 can be found in [this page.](http://docs.opencv.org/2.4/doc/tutorials/ml/introduction_to_svm/introduction_to_svm.html#introductiontosvms) - @add_toggle_cpp - **Downloadable code**: Click [here](https://github.com/opencv/opencv/tree/3.4/samples/cpp/tutorial_code/ml/introduction_to_svm/introduction_to_svm.cpp) diff --git a/doc/tutorials/ml/non_linear_svms/non_linear_svms.markdown b/doc/tutorials/ml/non_linear_svms/non_linear_svms.markdown index 9212911b1a16c89cf6ad5e9513e9282ce162428d..d193e3a75126d8ba95dc163c548e62b74ebdbf8e 100644 --- a/doc/tutorials/ml/non_linear_svms/non_linear_svms.markdown +++ b/doc/tutorials/ml/non_linear_svms/non_linear_svms.markdown @@ -89,9 +89,6 @@ Source Code You may also find the source code in `samples/cpp/tutorial_code/ml/non_linear_svms` folder of the OpenCV source library or [download it from here](https://github.com/opencv/opencv/tree/3.4/samples/cpp/tutorial_code/ml/non_linear_svms/non_linear_svms.cpp). -@note The following code has been implemented with OpenCV 3.0 classes and functions. An equivalent version of the code -using OpenCV 2.4 can be found in [this page.](http://docs.opencv.org/2.4/doc/tutorials/ml/non_linear_svms/non_linear_svms.html#nonlinearsvms) - @add_toggle_cpp - **Downloadable code**: Click [here](https://github.com/opencv/opencv/tree/3.4/samples/cpp/tutorial_code/ml/non_linear_svms/non_linear_svms.cpp) diff --git a/samples/android/camera-calibration/src/org/opencv/samples/cameracalibration/CameraCalibrationActivity.java b/samples/android/camera-calibration/src/org/opencv/samples/cameracalibration/CameraCalibrationActivity.java index af0853a7ccf6af1c66af6488d92860c5b5908f3d..77353a702c69799b52b5888cc8b686064810527f 100644 --- a/samples/android/camera-calibration/src/org/opencv/samples/cameracalibration/CameraCalibrationActivity.java +++ b/samples/android/camera-calibration/src/org/opencv/samples/cameracalibration/CameraCalibrationActivity.java @@ -1,8 +1,8 @@ // This sample is based on "Camera calibration With OpenCV" tutorial: -// http://docs.opencv.org/doc/tutorials/calib3d/camera_calibration/camera_calibration.html +// https://docs.opencv.org/3.4/d4/d94/tutorial_camera_calibration.html // // It uses standard OpenCV asymmetric circles grid pattern 11x4: -// https://github.com/opencv/opencv/blob/2.4/doc/acircles_pattern.png. +// https://github.com/opencv/opencv/blob/3.4/doc/acircles_pattern.png // The results are the camera matrix and 5 distortion coefficients. // // Tap on highlighted pattern to capture pattern corners for calibration. diff --git a/samples/cpp/matchmethod_orb_akaze_brisk.cpp b/samples/cpp/matchmethod_orb_akaze_brisk.cpp index 890d673e91e66643ab722e4811c61b062c86988f..4ae606f2a9ea8b69826d5ab5fd90a4ea65366875 100644 --- a/samples/cpp/matchmethod_orb_akaze_brisk.cpp +++ b/samples/cpp/matchmethod_orb_akaze_brisk.cpp @@ -24,11 +24,11 @@ int main(int argc, char *argv[]) vector<String> typeAlgoMatch; vector<String> fileName; // This descriptor are going to be detect and compute - typeDesc.push_back("AKAZE-DESCRIPTOR_KAZE_UPRIGHT"); // see http://docs.opencv.org/trunk/d8/d30/classcv_1_1AKAZE.html - typeDesc.push_back("AKAZE"); // see http://docs.opencv.org/trunk/d8/d30/classcv_1_1AKAZE.html - typeDesc.push_back("ORB"); // see http://docs.opencv.org/trunk/de/dbf/classcv_1_1BRISK.html - typeDesc.push_back("BRISK"); // see http://docs.opencv.org/trunk/db/d95/classcv_1_1ORB.html - // This algorithm would be used to match descriptors see http://docs.opencv.org/trunk/db/d39/classcv_1_1DescriptorMatcher.html#ab5dc5036569ecc8d47565007fa518257 + typeDesc.push_back("AKAZE-DESCRIPTOR_KAZE_UPRIGHT"); // see https://docs.opencv.org/3.4/d8/d30/classcv_1_1AKAZE.html + typeDesc.push_back("AKAZE"); // see http://docs.opencv.org/3.4/d8/d30/classcv_1_1AKAZE.html + typeDesc.push_back("ORB"); // see http://docs.opencv.org/3.4/de/dbf/classcv_1_1BRISK.html + typeDesc.push_back("BRISK"); // see http://docs.opencv.org/3.4/db/d95/classcv_1_1ORB.html + // This algorithm would be used to match descriptors see http://docs.opencv.org/3.4/db/d39/classcv_1_1DescriptorMatcher.html#ab5dc5036569ecc8d47565007fa518257 typeAlgoMatch.push_back("BruteForce"); typeAlgoMatch.push_back("BruteForce-L1"); typeAlgoMatch.push_back("BruteForce-Hamming");