Updated formatting

This commit is contained in:
Prianka Liz Kariat 2023-05-25 18:57:56 +05:30
parent abf55d3756
commit 5429991986
2 changed files with 10 additions and 7 deletions

View File

@ -28,17 +28,20 @@ NS_ASSUME_NONNULL_BEGIN
+ (MPPCategory *)categoryWithProto:(const ::mediapipe::Classification &)classificationProto; + (MPPCategory *)categoryWithProto:(const ::mediapipe::Classification &)classificationProto;
/** /**
* Creates an `MPPCategory` with the given MediaPipe `Classification` proto and the given category index. * Creates an `MPPCategory` with the given MediaPipe `Classification` proto and the given category
* The resulting `MPPCategory` is created with the given category index instead of the category index specified in the `Classification` proto. * index. The resulting `MPPCategory` is created with the given category index instead of the
* This method is useful for tasks like gesture recognizer which always returns a default index for the recognized gestures. * category index specified in the `Classification` proto. This method is useful for tasks like
* gesture recognizer which always returns a default index for the recognized gestures.
* *
* @param classificationProto A MediaPipe `Classification` proto. * @param classificationProto A MediaPipe `Classification` proto.
* @param index The index to be used for creating the `MPPCategory` instead of the category index specified in the `Classification` proto. * @param index The index to be used for creating the `MPPCategory` instead of the category index
* specified in the `Classification` proto.
* *
* @return An `MPPGestureRecognizerResult` object that contains the hand gesture recognition * @return An `MPPGestureRecognizerResult` object that contains the hand gesture recognition
* results. * results.
*/ */
+ (MPPCategory *)categoryWithProto:(const ::mediapipe::Classification &)classificationProto andIndex:(NSInteger)index; + (MPPCategory *)categoryWithProto:(const ::mediapipe::Classification &)classificationProto
andIndex:(NSInteger)index;
@end @end

View File

@ -21,7 +21,8 @@ using ClassificationProto = ::mediapipe::Classification;
@implementation MPPCategory (Helpers) @implementation MPPCategory (Helpers)
+ (MPPCategory *)categoryWithProto:(const ClassificationProto &)classificationProto andIndex:(NSInteger)index { + (MPPCategory *)categoryWithProto:(const ClassificationProto &)classificationProto
andIndex:(NSInteger)index {
NSString *categoryName; NSString *categoryName;
NSString *displayName; NSString *displayName;
@ -39,7 +40,6 @@ using ClassificationProto = ::mediapipe::Classification;
displayName:displayName]; displayName:displayName];
} }
+ (MPPCategory *)categoryWithProto:(const ClassificationProto &)classificationProto { + (MPPCategory *)categoryWithProto:(const ClassificationProto &)classificationProto {
return [MPPCategory categoryWithProto:classificationProto andIndex:classificationProto.index()]; return [MPPCategory categoryWithProto:classificationProto andIndex:classificationProto.index()];
} }