MLKitObjectDetectionCommon 프레임워크 참조
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
MLKCommonObjectDetectorOptions
@interface MLKCommonObjectDetectorOptions : NSObject
모든 유형의 객체 인식기에서 공유하는 공통 구성입니다.
-
객체 분류 기능의 사용 설정 여부를 나타냅니다. 기본값은 false
입니다.
선언
Objective-C
@property (nonatomic) BOOL shouldEnableClassification;
-
이미지 또는 프레임에서 감지된 모든 객체를 인식기에서 반환해야 하는지 여부를 나타냅니다.
false
로 설정하면 인식기가 감지된 가장 눈에 띄는 객체만 반환합니다. 기본값은 false
입니다.
선언
Objective-C
@property (nonatomic) BOOL shouldEnableMultipleObjects;
-
객체 감지기의 모드입니다. 기본값은 .stream
입니다.
-
사용할 수 없습니다. 서브클래스에서 클래스 메서드를 사용합니다.
선언
Objective-C
- (nonnull instancetype)init;
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-07-25(UTC)
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-07-25(UTC)"],[[["MLKCommonObjectDetectorOptions provides configuration settings for object detection tasks, impacting classification, multiple object detection, and detector mode."],["By default, object classification is disabled, and the detector returns only the most prominent object, operating in stream mode."],["Developers can enable classification and multiple object detection and choose between different detector modes using properties like shouldEnableClassification, shouldEnableMultipleObjects, and detectorMode."],["Direct initialization using -init is unavailable; instead, utilize class methods provided by subclasses to create instances of MLKCommonObjectDetectorOptions."]]],["`MLKCommonObjectDetectorOptions` configures object detectors, offering properties to customize their behavior. `shouldEnableClassification` (default: `false`) enables object classification. `shouldEnableMultipleObjects` (default: `false`) controls whether all or only the most prominent object is returned. `detectorMode` (default: `.stream`) defines the detector's operational mode. The standard initializer `init` is unavailable; subclasses' class methods should be used instead.\n"]]