From a1bd39441f45e1044a2a8b774d04806e144b0a6f Mon Sep 17 00:00:00 2001 From: Alexander Alekhin Date: Wed, 24 Oct 2018 19:12:35 +0300 Subject: [PATCH] videoio: fix typo --- modules/videoio/include/opencv2/videoio.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/videoio/include/opencv2/videoio.hpp b/modules/videoio/include/opencv2/videoio.hpp index cfa27740c7..281d51eded 100644 --- a/modules/videoio/include/opencv2/videoio.hpp +++ b/modules/videoio/include/opencv2/videoio.hpp @@ -738,7 +738,7 @@ public: @note In @ref videoio_c "C API", functions cvRetrieveFrame() and cv.RetrieveFrame() return image stored inside the video capturing structure. It is not allowed to modify or release the image! You can copy the frame using - :ocvcvCloneImage and then do whatever you want with the copy. + cvCloneImage and then do whatever you want with the copy. */ CV_WRAP virtual bool retrieve(OutputArray image, int flag = 0); @@ -764,7 +764,7 @@ public: @note In @ref videoio_c "C API", functions cvRetrieveFrame() and cv.RetrieveFrame() return image stored inside the video capturing structure. It is not allowed to modify or release the image! You can copy the frame using - :ocvcvCloneImage and then do whatever you want with the copy. + cvCloneImage and then do whatever you want with the copy. */ CV_WRAP virtual bool read(OutputArray image);