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(GrayF32 src,
GrayF32 dst)
Down samples the image along the x-axis only.
|
static void |
horizontal(GrayF64 src,
GrayF64 dst)
Down samples the image along the x-axis only.
|
static void |
horizontal(GrayU16 src,
GrayF32 dst)
Down samples the image along the x-axis only.
|
static void |
horizontal(GrayU8 src,
GrayF32 dst)
Down samples the image along the x-axis only.
|
static void |
vertical(GrayF32 src,
GrayF32 dst)
Down samples the image along the y-axis only.
|
static void |
vertical(GrayF32 src,
GrayI16 dst)
Down samples the image along the y-axis only.
|
static void |
vertical(GrayF32 src,
GrayI8 dst)
Down samples the image along the y-axis only.
|
static void |
vertical(GrayF64 src,
GrayF64 dst)
Down samples the image along the y-axis only.
|
public static void horizontal(GrayU8 src, GrayF32 dst)
src - Input image. Not modified.dst - Output image. Modified.public static void vertical(GrayF32 src, GrayI8 dst)
src - Input image. Not modified.dst - Output image. Modified.public static void horizontal(GrayU16 src, GrayF32 dst)
src - Input image. Not modified.dst - Output image. Modified.public static void vertical(GrayF32 src, GrayI16 dst)
src - Input image. Not modified.dst - Output image. Modified.public static void horizontal(GrayF32 src, GrayF32 dst)
src - Input image. Not modified.dst - Output image. Modified.public static void vertical(GrayF32 src, GrayF32 dst)
src - Input image. Not modified.dst - Output image. Modified.public static void horizontal(GrayF64 src, GrayF64 dst)
src - Input image. Not modified.dst - Output image. Modified.