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 TypeClassDescriptionclassScalar (non-separable) version of the Bilateral filter as proposed in [1].classScalar and separable version of the Bilateral filter as proposed in [1].classVector (non-separable) version of the Bilateral filter as proposed in [1], for RGB images (ColorProcessor) only.classVector and separable version of the Bilateral filter as proposed in [1], for RGB images (ColorProcessor) only.classScalar version of a Kuwahara-type filter, similar to the filter described in [1].classVector version (applicable to ColorProcessor only) of a Kuwahara-type filter, similar to the filter described in [1].classScalar version of the Nagao-Matsuyama filter.classVector version of the Nagao-Matsuyama filter.classScalar version of the Perona-Malik filter, without gradient array.classVector version (simplified ) with greatly reduced memory requirements.classThis 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 TypeClassDescriptionclassExample filter based onGenericFilterScalarperforming linear convolution with a custom 3x3 filter kernel.classExample filter based onGenericFilterVectorperforming linear convolution with a custom 3x3 filter kernel.classThis class defines a custom filter implementingGenericFilterVectorthat reports its progress, which is queried by aProgressMonitorin theFilterProgressExample.main(String[])method. -
Uses of ProgressReporter in imagingbook.common.filter.generic
Classes in imagingbook.common.filter.generic that implement ProgressReporterModifier and TypeClassDescriptionclassThis is the (abstract) root class of the generic filter hierarchy.classThis (abstract) class represents a filter which treats all pixel values as scalars.classThis (abstract) class represents a generic scalar filter whose pixel-operation is x/y-separable.classThis (abstract) class represents a filter which treats all pixel data as vectors.classThis (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 TypeClassDescriptionclassThis class implements a 2D Gaussian filter by extendingLinearFilter.classThis class implements a x/y-separated 2D Gaussian filter by extendingLinearFilterSeparable.classThis class represents a 2D linear filter specified by an arbitrary 2D convolution kernel.classThis 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 TypeClassDescriptionclassOrdinary (scalar) median filter for color images implemented by extending theGenericFilterclass.classVector median filter for color images implemented by extending theGenericFilterVectorclass.classSharpening vector median filter for color images implemented by extending theGenericFilterVectorclass. -
Uses of ProgressReporter in imagingbook.common.hough
Classes in imagingbook.common.hough that implement ProgressReporterModifier and TypeClassDescriptionclassThis 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 classThe 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).