From 0b20ce696a64e673d5847812224bd881b11459e2 Mon Sep 17 00:00:00 2001 From: Philipp Hasper Date: Wed, 22 Apr 2015 08:08:10 +0200 Subject: [PATCH] Fixed markdown: **Note** -> @note --- doc/tutorials/introduction/biicode/tutorial_biicode.markdown | 4 ++-- modules/videoio/include/opencv2/videoio.hpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/tutorials/introduction/biicode/tutorial_biicode.markdown b/doc/tutorials/introduction/biicode/tutorial_biicode.markdown index bade3a6601..ce3d267231 100644 --- a/doc/tutorials/introduction/biicode/tutorial_biicode.markdown +++ b/doc/tutorials/introduction/biicode/tutorial_biicode.markdown @@ -41,7 +41,7 @@ Windows users also execute: $ bii cpp:configure -G "Visual Studio 12" @endcode -Now execute ``bii cpp:build`` to build the project. **Note** that this can take a while, until it downloads and builds OpenCV. However, this is downloaded just once in your machine in your "user/.biicode" folder. If the OpenCV installation process fails, you might simply go there, delete OpenCV files inside "user/.biicode" and repeat. +Now execute ``bii cpp:build`` to build the project. @note This can take a while, until it downloads and builds OpenCV. However, this is downloaded just once in your machine to your "user/.biicode" folder. If the OpenCV installation process fails, you might simply go there, delete OpenCV files inside "user/.biicode" and repeat. @code{.bash} $ bii cpp:build @@ -137,7 +137,7 @@ replace with: diego/opencv(beta): 0 @endcode -**Note** that the first time you switch to 3.0-beta, it will also take a while to download and build the 3.0-beta release. From that point you can change back and forth between versions, just modifying your *biicode.conf requirements*. +@note The first time you switch to 3.0-beta, it will also take a while to download and build the 3.0-beta release. From that point on you can change back and forth between versions just by modifying your *biicode.conf requirements*. Find the hooks and examples: * [OpenCV 2.4.10](http://www.biicode.com/diego/opencv) diff --git a/modules/videoio/include/opencv2/videoio.hpp b/modules/videoio/include/opencv2/videoio.hpp index d1d3d73806..b0245b1df0 100644 --- a/modules/videoio/include/opencv2/videoio.hpp +++ b/modules/videoio/include/opencv2/videoio.hpp @@ -581,7 +581,7 @@ public: - **CAP_PROP_RECTIFICATION** Rectification flag for stereo cameras (note: only supported by DC1394 v 2.x backend currently) - **Note**: When querying a property that is not supported by the backend used by the VideoCapture + @note When querying a property that is not supported by the backend used by the VideoCapture class, value 0 is returned. */ CV_WRAP virtual double get(int propId) const; @@ -659,7 +659,7 @@ public: - **VIDEOWRITER_PROP_QUALITY** Current quality of the encoded videostream. - **VIDEOWRITER_PROP_FRAMEBYTES** (Read-only) Size of just encoded video frame; note that the encoding order may be different from representation order. - **Note**: When querying a property that is not supported by the backend used by the VideoWriter + @note When querying a property that is not supported by the backend used by the VideoWriter class, value 0 is returned. */ CV_WRAP virtual double get(int propId) const;