public class ImplMedianSortEdgeNaive
extends java.lang.Object
Median filter which process only the image edges and uses quick select find the median.
radius: size of the filter's box.
storage: Used to store local values. If null an array will be declared.
DO NOT MODIFY: This class was automatically generated by GenerateImplMedianSortEdgeNaive
| Constructor and Description |
|---|
ImplMedianSortEdgeNaive() |
| Modifier and Type | Method and Description |
|---|---|
static void |
process(GrayF32 input,
GrayF32 output,
int radius,
float[] storage) |
static void |
process(GrayI input,
GrayI output,
int radius,
int[] storage) |