MPSImageHistogramEqualization
A filter that equalizes the histogram of an image.
Declaration
class MPSImageHistogramEqualizationOverview
The process is divided into three steps:
Call the init(device:histogramInfo:) method to create a MPSImageHistogramEqualization object.
Call the encodeTransform(to:sourceTexture:histogram:histogramOffset:) method. This creates a privately held image transform (i.e. a cumulative distribution function of the histogram) which will be used to equalize the distribution of the histogram of the source image. This process runs on a command buffer when it is committed to a command queue. It must complete before the next step can be run. It may be performed on the same command buffer. The
histogramargument specifies the histogram buffer which contains the histogram values for the source texture. ThesourceTextureargument is used by the method to determine the number of channels and therefore which histogram data in the histogram buffer to use. The histogram for the source texture must have been computed either on the CPU or using the MPSImageHistogram kernel.Call the encode(commandBuffer:sourceTexture:destinationTexture:) method to read data from the source texture, apply the equalization transform to it, and write to the destination texture. This step is also done on the GPU on a command queue.
Topics
Initializers
Methods
Properties
See Also
Related Documentation
- Metal Image Filters: Using the image filters provided by the Metal Performance Shaders framework.