diff --git a/doc/py_tutorials/py_setup/py_setup_in_fedora/py_setup_in_fedora.markdown b/doc/py_tutorials/py_setup/py_setup_in_fedora/py_setup_in_fedora.markdown index 9da7008dad..9c7301cddc 100644 --- a/doc/py_tutorials/py_setup/py_setup_in_fedora/py_setup_in_fedora.markdown +++ b/doc/py_tutorials/py_setup/py_setup_in_fedora/py_setup_in_fedora.markdown @@ -234,10 +234,9 @@ Thus OpenCV installation is finished. Open a terminal and try import cv2. To build the documentation, just enter following commands: @code{.sh} -make docs -make html_docs +make doxygen @endcode -Then open opencv/build/doc/_html/index.html and bookmark it in the browser. +Then open opencv/build/doc/doxygen/html/index.html and bookmark it in the browser. Additional Resources -------------------- diff --git a/doc/tutorials/introduction/linux_install/linux_install.markdown b/doc/tutorials/introduction/linux_install/linux_install.markdown index 2c33c510c4..9f691c2589 100644 --- a/doc/tutorials/introduction/linux_install/linux_install.markdown +++ b/doc/tutorials/introduction/linux_install/linux_install.markdown @@ -104,12 +104,12 @@ Building OpenCV from Source Using CMake make -j7 # runs 7 jobs in parallel @endcode -# [optional] Building documents. Enter \ and run make with target - "html_docs" + "doxygen" For example @code{.bash} cd ~/opencv/build/doc/ - make -j7 html_docs + make -j7 doxygen @endcode -# To install libraries, execute the following command from build directory @code{.bash}