Function build_gaussian_pyramid
pub fn build_gaussian_pyramid<T, const CHANNELS: usize>(
input: ImageView<'_, T, CHANNELS>,
levels: usize,
border: BorderMode<T, CHANNELS>,
) -> Result<Vec<Image<T, CHANNELS>>, VisionError>where
T: PixelComponent,Expand description
Builds a packed Gaussian pyramid including the input as level zero.