public class ImplAverageDownSample
extends java.lang.Object
* Overlays a rectangular grid on top of the src image and computes the average value within each cell which is then written into the dst image. The dst image must be smaller than or equal to the src image.
DO NOT MODIFY: This class was automatically generated by boofcv.alg.filter.misc.GenerateImplAverageDownSample.
| Constructor and Description |
|---|
ImplAverageDownSample() |
| Modifier and Type | Method and Description |
|---|---|
static void |
horizontal(ImageFloat32 src,
ImageFloat32 dst)
Down samples the image along the x-axis only.
|
static void |
horizontal(ImageFloat64 src,
ImageFloat64 dst)
Down samples the image along the x-axis only.
|
static void |
horizontal(ImageUInt16 src,
ImageFloat32 dst)
Down samples the image along the x-axis only.
|
static void |
horizontal(ImageUInt8 src,
ImageFloat32 dst)
Down samples the image along the x-axis only.
|
static void |
vertical(ImageFloat32 src,
ImageFloat32 dst)
Down samples the image along the y-axis only.
|
static void |
vertical(ImageFloat32 src,
ImageInt16 dst)
Down samples the image along the y-axis only.
|
static void |
vertical(ImageFloat32 src,
ImageInt8 dst)
Down samples the image along the y-axis only.
|
static void |
vertical(ImageFloat64 src,
ImageFloat64 dst)
Down samples the image along the y-axis only.
|
public static void horizontal(ImageUInt8 src, ImageFloat32 dst)
src - Input image. Not modified.dst - Output image. Modified.public static void vertical(ImageFloat32 src, ImageInt8 dst)
src - Input image. Not modified.dst - Output image. Modified.public static void horizontal(ImageUInt16 src, ImageFloat32 dst)
src - Input image. Not modified.dst - Output image. Modified.public static void vertical(ImageFloat32 src, ImageInt16 dst)
src - Input image. Not modified.dst - Output image. Modified.public static void horizontal(ImageFloat32 src, ImageFloat32 dst)
src - Input image. Not modified.dst - Output image. Modified.public static void vertical(ImageFloat32 src, ImageFloat32 dst)
src - Input image. Not modified.dst - Output image. Modified.public static void horizontal(ImageFloat64 src, ImageFloat64 dst)
src - Input image. Not modified.dst - Output image. Modified.public static void vertical(ImageFloat64 src, ImageFloat64 dst)
src - Input image. Not modified.dst - Output image. Modified.