pub fn map_pixels_mut_parallel<P, F>(image: &mut Image<P>, f: F)Expand description
An parallel version of map_pixels_mut().
This function does the same operation as map_pixels_mut() but using multi-threading via rayon iterators.
Read the top-level crate documentation on parallelism for some of the tradeoffs involved with multi-threaded vs single-threaded image processing functions.