Uses of Interface
imagingbook.common.util.progress.ProgressReporter
Packages that use ProgressReporter
Package
Description
-
Uses of ProgressReporter in imagingbook.common.filter.edgepreserving
Classes in imagingbook.common.filter.edgepreserving that implement ProgressReporterModifier and TypeClassDescriptionclass
Scalar (non-separable) version of the Bilateral filter as proposed in [1].class
Scalar and separable version of the Bilateral filter as proposed in [1].class
Vector (non-separable) version of the Bilateral filter as proposed in [1], for RGB images (ColorProcessor
) only.class
Vector and separable version of the Bilateral filter as proposed in [1], for RGB images (ColorProcessor
) only.class
Scalar version of a Kuwahara-type filter, similar to the filter described in [1].class
Vector version (applicable to ColorProcessor only) of a Kuwahara-type filter, similar to the filter described in [1].class
Scalar version of the Nagao-Matsuyama filter.class
Vector version of the Nagao-Matsuyama filter.class
Scalar version of the Perona-Malik filter, without gradient array.class
Vector version (simplified ) with greatly reduced memory requirements.class
This class implements the Anisotropic Diffusion filter described in [1]. -
Uses of ProgressReporter in imagingbook.common.filter.examples
Classes in imagingbook.common.filter.examples that implement ProgressReporterModifier and TypeClassDescriptionclass
Example filter based onGenericFilterScalar
performing linear convolution with a custom 3x3 filter kernel.class
Example filter based onGenericFilterVector
performing linear convolution with a custom 3x3 filter kernel.class
This class defines a custom filter implementingGenericFilterVector
that reports its progress, which is queried by aProgressMonitor
in theFilterProgressExample.main(String[])
method. -
Uses of ProgressReporter in imagingbook.common.filter.generic
Classes in imagingbook.common.filter.generic that implement ProgressReporterModifier and TypeClassDescriptionclass
This is the (abstract) root class of the generic filter hierarchy.class
This (abstract) class represents a filter which treats all pixel values as scalars.class
This (abstract) class represents a generic scalar filter whose pixel-operation is x/y-separable.class
This (abstract) class represents a filter which treats all pixel data as vectors.class
This (abstract) class represents a generic vector filter whose pixel-operation is x/y-separable. -
Uses of ProgressReporter in imagingbook.common.filter.linear
Classes in imagingbook.common.filter.linear that implement ProgressReporterModifier and TypeClassDescriptionclass
This class implements a 2D Gaussian filter by extendingLinearFilter
.class
This class implements a x/y-separated 2D Gaussian filter by extendingLinearFilterSeparable
.class
This class represents a 2D linear filter specified by an arbitrary 2D convolution kernel.class
This class represents a 2D linear filter that is x/y-separable and specified by two 1D-kernels. -
Uses of ProgressReporter in imagingbook.common.filter.nonlinear
Classes in imagingbook.common.filter.nonlinear that implement ProgressReporterModifier and TypeClassDescriptionclass
Ordinary (scalar) median filter for color images implemented by extending theGenericFilter
class.class
Vector median filter for color images implemented by extending theGenericFilterVector
class.class
Sharpening vector median filter for color images implemented by extending theGenericFilterVector
class. -
Uses of ProgressReporter in imagingbook.common.hough
Classes in imagingbook.common.hough that implement ProgressReporterModifier and TypeClassDescriptionclass
This class implements the "classic" Hough Transform for straight lines. -
Uses of ProgressReporter in imagingbook.common.ij
Constructors in imagingbook.common.ij with parameters of type ProgressReporter -
Uses of ProgressReporter in imagingbook.common.util.progress
Classes in imagingbook.common.util.progress that implement ProgressReporterModifier and TypeClassDescriptionstatic class
The task to be monitored (some slow process).Constructors in imagingbook.common.util.progress with parameters of type ProgressReporterModifierConstructorDescriptionConstructor.ProgressMonitor
(ProgressReporter target) Constructor, starts monitoring immediately.ProgressMonitor
(ProgressReporter target, boolean autoStart) Constructor, optionally starts monitoring immediately or waits for itsThread.start()
method to be called (which starts the associated thread).