本文介绍了ios基本图像处理提取红色通道的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

直接我需要从图像中提取颜色成分,通常在Matlab中选择第一个红色矩阵。

straight forward I need to extract color components from an image, usually in Matlab this is done choosing the first matrix for Red.

在加速框架领域,哪些文档是基于参考的,我无法在不解析图形上下文的情况下找到一种简单的方法。

In the realm of accelerate framework, which documentation is reference-based I can't find an easy way of doing this without resolving to graphics context.

提前致谢!!

推荐答案



UIImage* image = // An image
CFDataRef pixelData = CGDataProviderCopyData(CGImageGetDataProvider(image.CGImage));
const UInt8* pixelBytes = CFDataGetBytePtr(pixelData);

//32-bit RGBA
for(int i = 0; i < CFDataGetLength(pixelData); i += 4) {
    pixelBytes[i]   // red
    pixelBytes[i+1] // green
    pixelBytes[i+2] // blue
    pixelBytes[i+3] // alpha
}

这篇关于ios基本图像处理提取红色通道的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-21 00:44