Commit 283087dd authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

fixed typo (bug #2327)

parent 037e3ee2
...@@ -185,8 +185,7 @@ We follow the delegation pattern, which is very common in iOS, to provide access ...@@ -185,8 +185,7 @@ We follow the delegation pattern, which is very common in iOS, to provide access
#endif #endif
Note that we are using C++ here (cv::Mat). Note that we are using C++ here (cv::Mat).
Important: You have to rename the view controller's extension .m into .mm, so that the compiler compiles it under the assumption of Objective-C++ (Objective-C and C++ mixed). Then, __cplusplus is defined when the compiler is processing the file for C++ code. Therefore, we put our code within a block where __cpluscplus is defined. Important: You have to rename the view controller's extension .m into .mm, so that the compiler compiles it under the assumption of Objective-C++ (Objective-C and C++ mixed). Then, __cplusplus is defined when the compiler is processing the file for C++ code. Therefore, we put our code within a block where __cplusplus is defined.
Basic video processing Basic video processing
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment