LoginSignup
2
2

More than 5 years have passed since last update.

iOS+OpenCV: memo

Last updated at Posted at 2014-06-02

とりあえずは自分用のメモです。

CvVideoCameraDelegate

processImage

highgui/cap_ios.h
- (void)processImage:(cv::Mat&)image;
  • この中はメインスレッドじゃない。
  • imageはCV_8UC4BGRA
    • そのままMatToUIImageに渡すとRとBが入れ替わるので注意。

MatToUIImage

highgui/ios.h
UIImage* MatToUIImage(const cv::Mat& image);
  • imageはCV_8UC4(?)のRGBA
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2