gpt4 book ai didi

iphone - AVFoundation - 从 Y 平面获取灰度图像 (​​kCVPixelFormatType_420YpCbCr8BiPlanarFullRange)

转载 作者:行者123 更新时间:2023-12-03 19:55:57 32 4
gpt4 key购买 nike

我正在使用 AVFoundation 拍摄视频,并以 kCVPixelFormatType_420YpCbCr8BiPlanarFullRange 格式录制。我想直接从 YpCbCr 格式的 Y 平面制作灰度图像。

我尝试通过调用 CGBitmapContextCreate 创建 CGContextRef,但问题是,我不知道要选择什么颜色空间和像素格式。

- (void)captureOutput:(AVCaptureOutput *)captureOutput 
didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer
fromConnection:(AVCaptureConnection *)connection
{
CVImageBufferRef imageBuffer = CMSampleBufferGetImageBuffer(sampleBuffer);
CVPixelBufferLockBaseAddress(imageBuffer,0);

/* Get informations about the Y plane */
uint8_t *YPlaneAddress = CVPixelBufferGetBaseAddressOfPlane(imageBuffer, 0);
size_t bytesPerRow = CVPixelBufferGetBytesPerRowOfPlane(imageBuffer, 0);
size_t width = CVPixelBufferGetWidthOfPlane(imageBuffer, 0);
size_t height = CVPixelBufferGetHeightOfPlane(imageBuffer, 0);

/* the problematic part of code */
CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceGray();

CGContextRef newContext = CGBitmapContextCreate(YPlaneAddress,
width, height, 8, bytesPerRow, colorSpace, kCVPixelFormatType_1Monochrome);

CGImageRef newImage = CGBitmapContextCreateImage(newContext);
UIImage *grayscaleImage = [[UIImage alloc] initWithCGImage:newImage];

// process the grayscale image ...
}

当我运行上面的代码时,出现以下错误:

<Error>: CGBitmapContextCreateImage: invalid context 0x0
<Error>: CGBitmapContextCreate: unsupported parameter combination: 8 integer bits/component; 16 bits/pixel; 1-component color space; kCGImageAlphaPremultipliedLast; 192 bytes/row.

PS:抱歉我的英语。

最佳答案

如果我没记错的话,你不应该通过CGContext。相反,您应该创建一个数据提供程序,然后直接创建图像。

代码中的另一个错误是使用了kCVPixelFormatType_1Monochrome常量。它是视频处理(AV 库)中使用的常量,而不是 Core Graphics(CG 库)中使用的常量。只需使用 kCGImageAlphaNone 即可。每个像素需要一个分量(灰色)(而不是 RGB 的三个分量),这是从颜色空间得出的。

它可能看起来像这样:

CGDataProviderRef  dataProvider = CGDataProviderCreateWithData(NULL, YPlaneAdress,
height * bytesPerRow, NULL);
CGImageRef newImage = CGImageCreate(width, height, 8, 8, bytesPerRow,
colorSpace, kCGImageAlphaNone, dataProvider, NULL, NO, kCGRenderingIntentDefault);
CGDataProviderRelease(dataProvider);

关于iphone - AVFoundation - 从 Y 平面获取灰度图像 (​​kCVPixelFormatType_420YpCbCr8BiPlanarFullRange),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10163462/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com