1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-31 08:13:04 +04:00

Fix typos in tutorials within docs/

Fix various typos found within tutorial documentation
This commit is contained in:
luz paz
2022-03-17 16:06:54 -04:00
parent 48cd2d190f
commit 632e07b749
12 changed files with 19 additions and 19 deletions
@@ -22,7 +22,7 @@ Introduction
In *OpenCV* all the image processing operations are usually carried out on the *Mat* structure. In
iOS however, to render an image on screen it have to be an instance of the *UIImage* class. To
convert an *OpenCV Mat* to an *UIImage* we use the *Core Graphics* framework available in iOS. Below
is the code needed to covert back and forth between Mat's and UIImage's.
is the code needed to convert back and forth between Mat's and UIImage's.
@code{.m}
- (cv::Mat)cvMatFromUIImage:(UIImage *)image
{