最近在做人臉識別功能, 由于涉及到 ncnn 庫的使用, 所以需要使用 Mat 圖片類型
項目需要導(dǎo)入 openvc2.framework
下載地址
// 導(dǎo)入頭文件
// #import <opencv2/imgproc/imgproc_c.h>
// 獲取圖片路徑
NSString *imagePath = [[NSBundle mainBundle] pathForResource:@"image" ofType:@"jpg"];
// 將 NSString 轉(zhuǎn)換為 const char 類型
const char *imageFile = [colorImagePath cStringUsingEncoding:NSASCIIStringEncoding];
// 獲取 mat 類型圖片
cv::Mat matImage = cv::imread(imageFile);