因此,我正在尝试使用AVCaptureMetadataOutput来扫描QR码。我的问题是,即使我使用rectOfInterest,也可以在预览区域之外进行扫描,请参见下图:

这是代码:

- (void)capture
{

session = [[AVCaptureSession alloc] init];
device = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];

if ( [device lockForConfiguration:NULL] == YES ) {

    CGPoint point = CGPointMake(0.5,0.5);
    [device setFocusPointOfInterest:point];
    [device setFocusMode:AVCaptureFocusModeContinuousAutoFocus];
    [device unlockForConfiguration];

}

NSError *error = nil;

AVCaptureDeviceInput *input = [AVCaptureDeviceInput deviceInputWithDevice:device
                                                                    error:&error];
if (!input)
{
    NSLog(@"Error: %@", error);
    return;
}

[session addInput:input];


//Add the metadata output device
output = [[AVCaptureMetadataOutput alloc] init];
[output setMetadataObjectsDelegate:self queue:dispatch_get_main_queue()];
[session addOutput:output];

output.metadataObjectTypes = @[AVMetadataObjectTypeQRCode, AVMetadataObjectTypeCode128Code];

output.rectOfInterest = self.livevideo.bounds;

newCaptureVideoPreviewLayer = [[AVCaptureVideoPreviewLayer alloc] initWithSession:session];
newCaptureVideoPreviewLayer.frame = self.livevideo.bounds;
newCaptureVideoPreviewLayer.videoGravity = AVLayerVideoGravityResizeAspectFill;
[self.livevideo.layer insertSublayer:newCaptureVideoPreviewLayer above:self.livevideo.layer];

highlightView = [[UIView alloc] init];
highlightView.autoresizingMask = UIViewAutoresizingFlexibleTopMargin|UIViewAutoresizingFlexibleLeftMargin|UIViewAutoresizingFlexibleRightMargin|UIViewAutoresizingFlexibleBottomMargin;
highlightView.layer.borderColor = [UIColor greenColor].CGColor;
highlightView.layer.borderWidth = 3;
[self.livevideo addSubview:highlightView];

[session startRunning];

}

- (void)captureOutput:(AVCaptureOutput *)captureOutput
didOutputMetadataObjects:(NSArray *)metadataObjects
   fromConnection:(AVCaptureConnection *)connection
{
AVMetadataMachineReadableCodeObject *barCodeObject;
CGRect highlightViewRect = CGRectZero;

for (AVMetadataObject *metadata in metadataObjects)
{

    for (NSString *type in output.metadataObjectTypes) {
        if ([metadata.type isEqualToString:type])
        {

            barCodeObject = (AVMetadataMachineReadableCodeObject *)[newCaptureVideoPreviewLayer transformedMetadataObjectForMetadataObject:(AVMetadataMachineReadableCodeObject *)metadata];

            highlightViewRect = barCodeObject.bounds;
            @try {
                NSString *code =[barCodeObject stringValue];
                NSLog(@"Read  type: %@", type);
                self.barcode.text = code;
            }
            @catch (NSException *exception) {
                NSLog(@"%@", exception.reason);
            }

            break;
        }
    }

}

highlightView.frame = highlightViewRect;
}

最佳答案

那是documented behavior:

其边界不与rectOfInterest相交的元数据对象将不会返回。

因此,如果QR码与矩形完全相交,它将被检测到。

关于ios - AVCaptureMetadataOutput,rectOfInterest进行外部扫描,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20195186/

10-13 04:05