From dddbcc4449c7a4519444259f79a54e89025da661 Mon Sep 17 00:00:00 2001 From: Prianka Liz Kariat Date: Tue, 13 Jun 2023 22:28:09 +0530 Subject: [PATCH] Updated data types of width and height --- mediapipe/tasks/ios/vision/core/sources/MPPMask.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mediapipe/tasks/ios/vision/core/sources/MPPMask.h b/mediapipe/tasks/ios/vision/core/sources/MPPMask.h index 4f16b99b..c8064cb8 100644 --- a/mediapipe/tasks/ios/vision/core/sources/MPPMask.h +++ b/mediapipe/tasks/ios/vision/core/sources/MPPMask.h @@ -48,10 +48,10 @@ NS_SWIFT_NAME(Mask) @interface MPPMask : NSObject /** The width of the mask. */ -@property(nonatomic, readonly) CGFloat width; +@property(nonatomic, readonly) NSInteger width; /** The height of the mask. */ -@property(nonatomic, readonly) CGFloat height; +@property(nonatomic, readonly) NSInteger height; /** The data type of the mask. */ @property(nonatomic, readonly) MPPMaskDataType dataType;