applyGamma(_:intermediateBuffer:destination:)
Applies a gamma function to an 8-bit-per-channel, 2-channel interleaved pixel buffer.
Declaration
func applyGamma(_ gamma: vImage.Gamma, intermediateBuffer: vImage.PixelBuffer<vImage.InterleavedFx2>? = nil, destination: vImage.PixelBuffer<vImage.Interleaved8x2>)Parameters
- gamma:
An enumeration that specifies either a used-defined or constant gamma.
- intermediateBuffer:
An optional intermediate buffer.
- destination:
The destination pixel buffer.
Discussion
This operation applies gamma to an vImage.Interleaved8x2 buffer by calling the underlying function vImageGamma_Planar8toPlanarF(_:_:_:_:). Therefore, it requires an intermediate vImage.InterleavedFx2 buffer. For the best performance, pass an existing vImage.InterleavedFx2 buffer to intermediateBuffer, alternatively, pass `nil` to specify that the function creates the intermediate buffer.
For example, the following code applies a gamma of 2.0 to a one-pixel pixel buffer:
let buffer = vImage.PixelBuffer<vImage.Interleaved8x2>(
pixelValues: [64, 128],
size: vImage.Size(width: 1,
height: 1))
buffer.applyGamma(.fullPrecision(2),
destination: buffer)
// Prints "[16, 64]" ≅ [255 * 0.25², 255 * 0.5²].
print(buffer.array)