我有 XCode 4.6 当我运行它时,我得到以下信息:
+ (UIImage *)imageWithCVMat:(const cv::Mat&)cvMat orientation:(UIImageOrientation)orientation
{
return [[UIImage alloc] initWithCVMat:cvMat orientation:orientation];
}
+ (UIImage *)imageWithCVMat:(const cv::Mat&)cvMat
{
return [[UIImage alloc] initWithCVMat:cvMat orientation:0];
}
我得到了错误
Cannot initialize a parameter of type 'UIImageOrientation' with an value of type 'int'
我该如何解决?也许有人知道