Uses of Interface
boofcv.abst.filter.FilterImageInterface
Packages that use FilterImageInterface
Package
Description
-
Uses of FilterImageInterface in boofcv.abst.denoise
Classes in boofcv.abst.denoise that implement FilterImageInterfaceModifier and TypeClassDescriptionclass
WaveletDenoiseFilter<T extends ImageGray<T>>
Simplifies removing image noise using a wavelet transform. -
Uses of FilterImageInterface in boofcv.abst.disparity
Methods in boofcv.abst.disparity that return FilterImageInterfaceConstructors in boofcv.abst.disparity with parameters of type FilterImageInterfaceModifierConstructorDescriptionWrapDisparityBlockMatchCensus
(FilterImageInterface<T, C> censusTran, DisparityBlockMatchRowFormat<C, DI> alg) -
Uses of FilterImageInterface in boofcv.abst.filter
Classes in boofcv.abst.filter that implement FilterImageInterfaceModifier and TypeClassDescriptionclass
FilterImageReflection<Input extends ImageGray<Input>,
Output extends ImageGray<Output>> Turns functions into implementations ofFilterImageInterface
Wraps around any function which has two images as input and output.class
FilterSequence<Input extends ImageGray<Input>,
Output extends ImageGray<Output>> Applies a sequence of filters.Constructors in boofcv.abst.filter with parameters of type FilterImageInterfaceModifierConstructorDescriptionFilterSequence
(FilterImageInterface<Input, Output> first, FilterImageInterface<Output, Output>... sequence) -
Uses of FilterImageInterface in boofcv.abst.filter.binary
Classes in boofcv.abst.filter.binary that implement FilterImageInterfaceModifier and TypeClassDescriptionclass
Class for binary filtersstatic class
static class
static class
static class
static class
static class
static class
static class
static class
-
Uses of FilterImageInterface in boofcv.abst.filter.blur
Subinterfaces of FilterImageInterface in boofcv.abst.filter.blurModifier and TypeInterfaceDescriptioninterface
BlurFilter<T extends ImageBase<T>>
Interface for filters which blur the image.Classes in boofcv.abst.filter.blur that implement FilterImageInterfaceModifier and TypeClassDescriptionclass
BlurStorageFilter<T extends ImageBase<T>>
Simplified interface for using a blur filter that requires storage. -
Uses of FilterImageInterface in boofcv.abst.filter.convolve
Subinterfaces of FilterImageInterface in boofcv.abst.filter.convolveModifier and TypeInterfaceDescriptioninterface
ConvolveDown<Input extends ImageBase<Input>,
Output extends ImageBase<Output>> Generalized interface for filtering images with convolution kernels while skipping pixels.interface
ConvolveInterface<Input extends ImageBase<Input>,
Output extends ImageBase<Output>> Generic interface for performing image convolutions.Classes in boofcv.abst.filter.convolve that implement FilterImageInterfaceModifier and TypeClassDescriptionclass
GenericConvolve<Input extends ImageBase<Input>,
Output extends ImageBase<Output>> Generalized interface for filtering images with convolution kernels.class
GenericConvolveDown<Input extends ImageBase<Input>,
Output extends ImageBase<Output>> Generalized interface for filtering images with convolution kernels while skipping pixels.class
PlanarConvolveDown<In extends ImageGray<In>,
Out extends ImageGray<Out>> Implementation ofConvolveDown
forPlanar
images. -
Uses of FilterImageInterface in boofcv.abst.transform.census
Classes in boofcv.abst.transform.census that implement FilterImageInterfaceModifier and TypeClassDescriptionclass
FilterCensusTransform<In extends ImageGray<In>,
Out extends ImageBase<Out>> Filter implementation ofCensusTransform
.class
FilterCensusTransformD33U8<In extends ImageGray<In>>
CensusGCensusTransform.dense3x3(T, boofcv.struct.image.GrayU8, boofcv.struct.border.ImageBorder<T>)
transform with output inGrayU8
image.class
FilterCensusTransformD55S32<In extends ImageGray<In>>
CensusGCensusTransform.dense5x5(T, boofcv.struct.image.GrayS32, boofcv.struct.border.ImageBorder<T>)
transform with output inGrayS32
image.class
FilterCensusTransformSampleIU16<In extends ImageGray<In>>
Census transform which saves output in aInterleavedU16
.class
FilterCensusTransformSampleS64<In extends ImageGray<In>>
Census transform which saves output in aGrayS64
. -
Uses of FilterImageInterface in boofcv.alg.disparity.sgm
Constructors in boofcv.alg.disparity.sgm with parameters of type FilterImageInterfaceModifierConstructorDescriptionSgmStereoDisparityCensus
(FilterImageInterface<T, C> censusTran, SgmDisparityCost<C> sgmCost, SgmDisparitySelector selector) -
Uses of FilterImageInterface in boofcv.alg.transform.pyramid
Methods in boofcv.alg.transform.pyramid with parameters of type FilterImageInterfaceModifier and TypeMethodDescriptionPyramidOps.filter
(ImagePyramid<I> input, FilterImageInterface<I, O> filter, O[] output) Runs an image filter through each layer in the pyramid. -
Uses of FilterImageInterface in boofcv.core.image
Classes in boofcv.core.image that implement FilterImageInterfaceModifier and TypeClassDescriptionclass
ConvertImageFilter<I extends ImageBase<I>,
O extends ImageBase<O>> Use the filter interface to convert the image type usingGConvertImage
. -
Uses of FilterImageInterface in boofcv.factory.disparity
Methods in boofcv.factory.disparity with parameters of type FilterImageInterfaceModifier and TypeMethodDescriptionstatic BlockRowScore
FactoryStereoDisparity.createCensusRowScore
(ConfigDisparityBM config, FilterImageInterface censusTran) -
Uses of FilterImageInterface in boofcv.factory.filter.binary
Methods in boofcv.factory.filter.binary that return FilterImageInterfaceModifier and TypeMethodDescriptionstatic FilterImageInterface<GrayU8,
GrayU8> FactoryBinaryImageOps.dilate4
(int numTimes) Filter implementation ofBinaryImageOps.dilate4(GrayU8, int, GrayU8)
static FilterImageInterface<GrayU8,
GrayU8> FactoryBinaryImageOps.dilate8
(int numTimes) Filter implementation ofBinaryImageOps.dilate8(GrayU8, int, GrayU8)
static FilterImageInterface<GrayU8,
GrayU8> FactoryBinaryImageOps.edge4
(boolean outsideZero) Filter implementation ofBinaryImageOps.edge4(GrayU8, GrayU8, boolean)
static FilterImageInterface<GrayU8,
GrayU8> FactoryBinaryImageOps.edge8
(boolean outsideZero) Filter implementation ofBinaryImageOps.edge8(GrayU8, GrayU8, boolean)
static FilterImageInterface<GrayU8,
GrayU8> FactoryBinaryImageOps.erode4
(int numTimes) Filter implementation ofBinaryImageOps.erode4(GrayU8, int, GrayU8)
static FilterImageInterface<GrayU8,
GrayU8> FactoryBinaryImageOps.erode8
(int numTimes) Filter implementation ofBinaryImageOps.erode8(GrayU8, int, GrayU8)
static FilterImageInterface<GrayS32,
GrayU8> FactoryBinaryImageOps.labelToBinary()
Filter implementation ofBinaryImageOps.labelToBinary(GrayS32, GrayU8)
static FilterImageInterface<GrayU8,
GrayU8> FactoryBinaryImageOps.removePointNoise()
Filter implementation ofBinaryImageOps.removePointNoise(GrayU8, GrayU8)