CIAreaMinMax

Trait CIAreaMinMax 

Source
pub unsafe trait CIAreaMinMax: CIAreaReductionFilter { }
Available on crate features CIFilter and CIFilterBuiltins only.
Expand description

The protocol for the Area Min and Max filter.

Calculates the per-component minimum and maximum value for the specified area in an image. The result is returned in a 2x1 image where the component minimum values are stored in the pixel on the left.

See also Apple’s documentation

Trait Implementations§

Source§

impl ProtocolType for dyn CIAreaMinMax

Source§

const NAME: &'static str = "CIAreaMinMax"

The name of the Objective-C protocol that this type represents. Read more
Source§

fn protocol() -> Option<&'static AnyProtocol>

Get a reference to the Objective-C protocol object that this type represents. Read more
Source§

impl<T> ImplementedBy<T> for dyn CIAreaMinMax
where T: ?Sized + Message + CIAreaMinMax,

Implementations on Foreign Types§

Source§

impl<T> CIAreaMinMax for ProtocolObject<T>
where T: ?Sized + CIAreaMinMax,

Implementors§