Merge pull request #25067 from danoli3:master

Update ios_conversions.mm - Fix Mac Catalyst compile target
pull/25105/head^2
Alexander Smorkalov 9 months ago committed by GitHub
commit faba2d8148
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  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