planarBuffers()
Returns two 8-bit planar pixel buffers that contain the deinterleaved channels of the buffer.
Declaration
func planarBuffers() -> [vImage.PixelBuffer<vImage.Planar8>]Return Value
An array of planar pixel buffers.
Discussion
Use this function to deinterleave a buffer and create two new planar buffers that contain copies of each source channel. For example, the following code generates two 1 x 1 planar buffers from an vImage.Interleaved8x2 pixel buffer:
let src = vImage.PixelBuffer<vImage.Interleaved8x2>(
pixelValues: [100, 200] as [UInt8],
size: vImage.Size(width: 1, height: 1))
let planarBuffers = src.planarBuffers()
// Prints "[100] [200]"
for planarBuffer in planarBuffers {
print(planarBuffer.array)
}