Update ios_conversions.mm

Define fix for Mac Catalyst iOS
pull/25067/head
Dan Rosser 9 months ago
parent 6f48cb78b6
commit e596680939
  1. 3
      modules/imgcodecs/src/ios_conversions.mm

@ -39,6 +39,8 @@
// the use of this software, even if advised of the possibility of such damage.
//
//M*/
#include <TargetConditionals.h>
#if TARGET_OS_IOS && !TARGET_OS_MACCATALYST
#import <UIKit/UIKit.h>
#include "apple_conversions.h"
@ -61,3 +63,4 @@ void UIImageToMat(const UIImage* image, cv::Mat& m, bool alphaExist) {
CGImageRef imageRef = image.CGImage;
CGImageToMat(imageRef, m, alphaExist);
}
#endif

Loading…
Cancel
Save