Package boofcv.alg.filter.misc.impl
Class ImplAverageDownSample
java.lang.Object
boofcv.alg.filter.misc.impl.ImplAverageDownSample
@Generated("boofcv.alg.filter.misc.GenerateImplAverageDownSample") public class ImplAverageDownSample extends 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 code was automatically generated by GenerateImplAverageDownSample.
-
Constructor Summary
Constructors Constructor Description ImplAverageDownSample()
-
Method Summary
Modifier and Type Method 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.
-
Constructor Details
-
ImplAverageDownSample
public ImplAverageDownSample()
-
-
Method Details
-
horizontal
Down samples the image along the x-axis only. Image height's must be the same.- Parameters:
src
- Input image. Not modified.dst
- Output image. Modified.
-
vertical
Down samples the image along the y-axis only. Image width's must be the same.- Parameters:
src
- Input image. Not modified.dst
- Output image. Modified.
-
horizontal
Down samples the image along the x-axis only. Image height's must be the same.- Parameters:
src
- Input image. Not modified.dst
- Output image. Modified.
-
vertical
Down samples the image along the y-axis only. Image width's must be the same.- Parameters:
src
- Input image. Not modified.dst
- Output image. Modified.
-
horizontal
Down samples the image along the x-axis only. Image height's must be the same.- Parameters:
src
- Input image. Not modified.dst
- Output image. Modified.
-
vertical
Down samples the image along the y-axis only. Image width's must be the same.- Parameters:
src
- Input image. Not modified.dst
- Output image. Modified.
-
horizontal
Down samples the image along the x-axis only. Image height's must be the same.- Parameters:
src
- Input image. Not modified.dst
- Output image. Modified.
-
vertical
Down samples the image along the y-axis only. Image width's must be the same.- Parameters:
src
- Input image. Not modified.dst
- Output image. Modified.
-