Expand description

Sailiency map is computed using Maximum Symmetric Surround algorithm by Radhakrishna Achanta.

https://core.ac.uk/download/pdf/147962379.pdf

Structs

Basic struct used for both owned (alias ImgVec) and borrowed (alias ImgRef) image fragments.
Iterates over pixels in the (sub)image. Call Img.pixels() to create it.
Iterates over pixels in the (sub)image. Call Img.pixels_mut() to create it.
Iterates over pixels in the (sub)image. Call Img.pixels_ref() to create it.
The RGB pixel
Rows of the image. Call Img.rows() to create it.
Rows of the image. Call Img.rows_mut() to create it.

Traits

Additional methods that depend on buffer size
Additional methods that depend on buffer size

Functions

Type Definitions

Reference to pixels inside another image. Pass this structure by value (i.e. ImgRef, not &ImgRef).
Same as ImgRef, but mutable Pass this structure by value (i.e. ImgRef, not &ImgRef).
Image owning its pixels.