0

我正在通过相机使用 AVFoundation 捕获图像,然后通过 segue 将其显示到另一个具有UIImageView. viewWillAppear图像大小为 1936 x 2592,调用后屏幕更新图像需要 5.5 秒。

这是正常的,并且仅仅是由于图像的大小吗?这是在运行 iOS6 的 iPhone4 上。这种延迟是不可接受的,所以我必须找到一个解决方案,可能首先尝试缩小图像,但我想在跳过箍之前我会问。

更新

将图像尺寸缩小到 484 x 648 需要更长的时间:5.6 秒。评论中有我正在使用的捕获代码的请求。它在这篇文章的底部。另外,我只捕获一张图像然后显示它。

// 控制台输出:

有形象

2013-03-03 11:37:16.741 RPFaceCamera[4867:907] viewWillAppear - 耗时:0.000215>

2013-03-03 11:37:22.249 RPFaceCamera [4867:907] viewDidAppear - 所用时间:5.507458>


//代码

- (void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];

    if (self.faceImage != nil){
        start = [NSDate date];
        printf("have image     \n");
        self.faceImageView.image = self.faceImage;
        NSLog(@"viewWillAppear - time taken: %f", -[start timeIntervalSinceNow]);
    }

}

- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];
    NSLog(@"viewDidAppear - time taken: %f", -[start timeIntervalSinceNow]);
}

//捕获代码 - (我想我是从 Apple 的 AVDemo 中抄来的)。Objective-C 的格式在可读性方面还有很多不足之处。

- (void)captureImage
{
    AVCaptureConnection *connection;
    connection = [stillImageOutput connectionWithMediaType:AVMediaTypeVideo];

    [stillImageOutput setOutputSettings:[NSDictionary
                                         dictionaryWithObject:[NSNumber numberWithInt:kCMPixelFormat_32BGRA]
                                         forKey:(id)kCVPixelBufferPixelFormatTypeKey]];

    [stillImageOutput captureStillImageAsynchronouslyFromConnection:connection
          completionHandler:^(CMSampleBufferRef imageDataSampleBuffer, NSError *error) {
              if(error)
                  NSLog(@"captureImage failed");
              else{

                  CVPixelBufferRef pixelBuffer = CMSampleBufferGetImageBuffer(imageDataSampleBuffer);
                  CFDictionaryRef attachments = CMCopyDictionaryOfAttachments(kCFAllocatorDefault,
                                                                              imageDataSampleBuffer,
                                                                              kCMAttachmentMode_ShouldPropagate);

                  CIImage *ciImage =
                  [[CIImage alloc] initWithCVPixelBuffer:pixelBuffer
                                                options:(__bridge NSDictionary *)attachments];

                  NSNumber *orientation = (__bridge NSNumber *)(CMGetAttachment(imageDataSampleBuffer,
                                                      kCGImagePropertyOrientation, NULL));

                  printf("original orientation     %d\n", [orientation intValue]);

                  self.faceImage = [UIImage imageWithCIImage:ciImage scale:1.0f orientation:[orientation intValue]];
                  printf("self.faceImage     %d\n", self.faceImage.imageOrientation);
                  printf("self.faceImage    width: %f height: %f\n",  self.faceImage.size.width, self.faceImage.size.height);

                  __weak __typeof__(self) weakSelf = self;
                  [weakSelf performSelectorOnMainThread:@selector(showFaceView) withObject:nil waitUntilDone:NO];
              }                                                      
          }
     ];
}

// 捕获完成时在主线程调用的方法 - (void)showFaceView { NSLog(@"showfaceView");

    [self destroyAVCapture];
    [self.delegate dismissCameraWithImage:self.faceImage];
}
4

1 回答 1

0

我猜想在图像编辑器中物理上缩小图像会导致更短的加载时间。

现在,根据您的评论,您正在设置比例[UIImage imageWithCIImage:ciImage scale:4.0f orientation:[orientation intValue]

这实际上不会使图像文件更小,因此不会使加载时间更短。查看Stackoverflow 帖子中的答案,了解有关UIImage使用NSData. 这篇文章讨论了以编程方式调整UIImage. 也许他们会工作得更好。

于 2013-03-03T17:13:36.377 回答