Struct image::imageops::colorops::BiLevel [−][src]
pub struct BiLevel;
A bi-level color map
Examples
use image::imageops::colorops::{index_colors, BiLevel, ColorMap}; use image::{ImageBuffer, Luma}; let (w, h) = (16, 16); // Create an image with a smooth horizontal gradient from black (0) to white (255). let gray = ImageBuffer::from_fn(w, h, |x, y| -> Luma<u8> { [(255 * x / w) as u8].into() }); // Mapping the gray image through the `BiLevel` filter should map gray pixels less than half // intensity (127) to black (0), and anything greater to white (255). let cmap = BiLevel; let palletized = index_colors(&gray, &cmap); let mapped = ImageBuffer::from_fn(w, h, |x, y| { let p = palletized.get_pixel(x, y); cmap.lookup(p.0[0] as usize) .expect("indexed color out-of-range") }); // Create an black and white image of expected output. let bw = ImageBuffer::from_fn(w, h, |x, y| -> Luma<u8> { if x <= (w / 2) { [0].into() } else { [255].into() } }); assert_eq!(mapped, bw);
Trait Implementations
impl Clone for BiLevel
[src]
impl ColorMap for BiLevel
[src]
type Color = Luma<u8>
The color type on which the map operates on
fn index_of(&self, color: &Luma<u8>) -> usize
[src]
fn lookup(&self, idx: usize) -> Option<Self::Color>
[src]
fn has_lookup(&self) -> bool
[src]
Indicate NeuQuant implements lookup
.
fn map_color(&self, color: &mut Luma<u8>)
[src]
impl Copy for BiLevel
[src]
Auto Trait Implementations
impl RefUnwindSafe for BiLevel
impl Send for BiLevel
impl Sync for BiLevel
impl Unpin for BiLevel
impl UnwindSafe for BiLevel
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Pointable for T
[src]
pub const ALIGN: usize
[src]
type Init = T
The type for initializers.
pub unsafe fn init(init: <T as Pointable>::Init) -> usize
[src]
pub unsafe fn deref<'a>(ptr: usize) -> &'a T
[src]
pub unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T
[src]
pub unsafe fn drop(ptr: usize)
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,