Skip to content

Commit 752f232

Browse files
committed
It's done
1 parent 0a19b07 commit 752f232

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/tutorials/viz/histo3D/histo3D.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Here is the general structure of the program:
3434
@snippet histo3D.cpp slide_bar_for_thresh
3535
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.
3636
@snippet histo3D.cpp manage_viz_imshow_window
37-
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 :
37+
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 :
3838
@snippet histo3D.cpp get_cube_size
3939
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.
4040
@snippet histo3D.cpp get_cube_values

modules/core/include/opencv2/core/mat.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ struct CV_EXPORTS MatStep
582582
An example demonstrating the serial out capabilities of cv::Mat
583583
*/
584584

585-
/** @brief n-dimensional dense array class
585+
/** @brief n-dimensional dense array class \anchor CVMat_Details
586586
587587
The class Mat represents an n-dimensional dense numerical single-channel or multi-channel array. It
588588
can be used to store real or complex-valued vectors and matrices, grayscale or color images, voxel

0 commit comments

Comments
 (0)