MLKitObjectDetectionCommon Framework রেফারেন্স
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
MLKCommonObjectDetectorOptions
@interface MLKCommonObjectDetectorOptions : NSObject
সব ধরনের অবজেক্ট ডিটেক্টর দ্বারা শেয়ার করা সাধারণ কনফিগারেশন।
বস্তুর শ্রেণীবিভাগ বৈশিষ্ট্য সক্রিয় কিনা নির্দেশ করে। ডিফল্ট মান false
।
ঘোষণা
উদ্দেশ্য-C
@property (nonatomic) BOOL shouldEnableClassification;
ইমেজ বা ফ্রেমের সমস্ত শনাক্ত করা বস্তু ডিটেক্টর দ্বারা ফেরত দেওয়া উচিত কিনা তা নির্দেশ করে। false
সেট করা হলে, সনাক্তকারী শুধুমাত্র সবচেয়ে বিশিষ্ট বস্তু সনাক্ত করে। ডিফল্ট মান false
।
ঘোষণা
উদ্দেশ্য-C
@property (nonatomic) BOOL shouldEnableMultipleObjects;
অবজেক্ট ডিটেক্টরের মোড। ডিফল্ট মান হল .stream
।
অনুপলব্ধ সাবক্লাসে ক্লাস পদ্ধতি ব্যবহার করুন।
ঘোষণা
উদ্দেশ্য-C
- (nonnull instancetype)init;
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল 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"]]