From 752f2323357a59b3865282219e0295486bebe4d7 Mon Sep 17 00:00:00 2001 From: LaurentBerger Date: Mon, 9 Oct 2017 22:25:57 +0200 Subject: [PATCH] It's done --- doc/tutorials/viz/histo3D/histo3D.markdown | 2 +- modules/core/include/opencv2/core/mat.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/tutorials/viz/histo3D/histo3D.markdown b/doc/tutorials/viz/histo3D/histo3D.markdown index 93d4cfc..fdf174c 100644 --- a/doc/tutorials/viz/histo3D/histo3D.markdown +++ b/doc/tutorials/viz/histo3D/histo3D.markdown @@ -34,7 +34,7 @@ Here is the general structure of the program: @snippet histo3D.cpp slide_bar_for_thresh We are ready to open a viz window with a callback function to capture keyboard event in viz window. Using @ref cv::viz::Viz3d::spinOnce enable keyboard event to be capture in @ref cv::imshow window too. @snippet histo3D.cpp manage_viz_imshow_window - The function DrawHistogram3D processes histogram Mat to display it in a Viz window. Number of plan, row and column in (three dimensional Mat)[http://docs.opencv.org/master/d3/d63/classcv_1_1Mat.html#details] can be found using this code : + The function DrawHistogram3D processes histogram Mat to display it in a Viz window. Number of plan, row and column in [three dimensional Mat](@ref CVMat_Details ) can be found using this code : @snippet histo3D.cpp get_cube_size To get histogram value at a specific location we use @ref cv::Mat::at(int i0,int i1, int i2) method with three arguments k, i and j where k is plane number, i row number and j column number. @snippet histo3D.cpp get_cube_values diff --git a/modules/core/include/opencv2/core/mat.hpp b/modules/core/include/opencv2/core/mat.hpp index 2e927c4..e973593 100644 --- a/modules/core/include/opencv2/core/mat.hpp +++ b/modules/core/include/opencv2/core/mat.hpp @@ -582,7 +582,7 @@ protected: An example demonstrating the serial out capabilities of cv::Mat */ - /** @brief n-dimensional dense array class + /** @brief n-dimensional dense array class \anchor CVMat_Details The class Mat represents an n-dimensional dense numerical single-channel or multi-channel array. It can be used to store real or complex-valued vectors and matrices, grayscale or color images, voxel -- 2.7.4