我正在尝试获取CIImage
浮点数的每像素 RGBA 值。
我希望以下工作,使用CIContext
和呈现为kCIFormatRGBAh
,但输出全为零。否则我的下一步就是从半浮点数转换为全浮点数。
我究竟做错了什么?我也在 Objective-C 中尝试过这个并得到相同的结果。
let image = UIImage(named: "test")!
let sourceImage = CIImage(CGImage: image.CGImage)
let context = CIContext(options: [kCIContextWorkingColorSpace: NSNull()])
let colorSpace = CGColorSpaceCreateDeviceRGB()
let bounds = sourceImage.extent()
let bytesPerPixel: UInt = 8
let format = kCIFormatRGBAh
let rowBytes = Int(bytesPerPixel * UInt(bounds.size.width))
let totalBytes = UInt(rowBytes * Int(bounds.size.height))
var bitmap = calloc(totalBytes, UInt(sizeof(UInt8)))
context.render(sourceImage, toBitmap: bitmap, rowBytes: rowBytes, bounds: bounds, format: format, colorSpace: colorSpace)
let bytes = UnsafeBufferPointer<UInt8>(start: UnsafePointer<UInt8>(bitmap), count: Int(totalBytes))
for (var i = 0; i < Int(totalBytes); i += 2) {
println("half float :: left: \(bytes[i]) / right: \(bytes[i + 1])")
// prints all zeroes!
}
free(bitmap)
这是一个有关获取 的输出的相关问题CIAreaHistogram
,这就是为什么我想要浮点值而不是整数的原因,但无论其来源、过滤器输出或其他方式如何,我似乎都无法kCIFormatRGBAh
处理任何问题。CIImage