MBPProcessorGroup
Objective-C
@interface MBPProcessorGroup : NSObjectSwift
class MBPProcessorGroup : NSObjectClass that represents a group of processors that will be executed on same dewarped image.
- 
                  
                  Constructor for MBPProcessorGroup. DeclarationObjective-C - (nonnull instancetype) initWithProcessingLocation:(CGRect)processingLocation dewarpPolicy:(nonnull MBPDewarpPolicy *)dewarpPolicy andProcessors: (nonnull NSArray<__kindof MBPProcessor *> *)processors;Swift init(processingLocation: CGRect, dewarpPolicy: MBPDewarpPolicy, andProcessors processors: [MBPProcessor])ParametersprocessingLocationPosition in detected location that should be processed. Expressed as relative rectangle with respect to detected rectangle. dewarpPolicyDewarp policy that will mandate how the perspective correction will be performed. processorsProcessors that will be executed on given processing location after perspective has been corrected. 
- 
                  
                  Processors that are members of the processor group DeclarationObjective-C @property (nonatomic, strong, readonly) NSArray<__kindof MBPProcessor *> *_Nonnull processors;Swift var processors: [MBPProcessor] { get }
 View on GitHub
            View on GitHub
          