Uses of Interface
adams.flow.core.FlowContextHandler
-
-
Uses of FlowContextHandler in adams.core.command
Subinterfaces of FlowContextHandler in adams.core.command Modifier and Type Interface Description interfaceAsyncCapableExternalCommandInterface for external commands that support asynchronous mode.interfaceExternalCommandInterface for classes that execute external commands.interfaceExternalCommandWithOptionsInterface for external commands that take options.interfaceExternalCommandWithProgrammaticArgumentsInterface for external commands that support programmatic options that get folded into the command.Classes in adams.core.command that implement FlowContextHandler Modifier and Type Class Description classAbstractAsyncCapableExternalCommandAncestor for external commands that can be run in blocking or async mode.classAbstractAsyncCapableExternalCommandWithOptionsAncestor for commands that can be run in async mode that support options.classAbstractExternalCommandAncestor for external commands.classAbstractExternalCommandWithOptionsAncestor for commands that take options. -
Uses of FlowContextHandler in adams.core.command.stderr
Fields in adams.core.command.stderr declared as FlowContextHandler Modifier and Type Field Description protected FlowContextHandlerAbstractStdErrProcessor. m_Ownerthe owning command.Methods in adams.core.command.stderr with parameters of type FlowContextHandler Modifier and Type Method Description StringAbstractStdErrProcessor. setUp(FlowContextHandler owner)Configures the handler.StringCallableActorSink. setUp(FlowContextHandler owner)Configures the handler.StringEnqueue. setUp(FlowContextHandler owner)StringLog. setUp(FlowContextHandler owner)Configures the handler.StringStdErrProcessor. setUp(FlowContextHandler owner)Configures the handler. -
Uses of FlowContextHandler in adams.core.command.stdout
Fields in adams.core.command.stdout declared as FlowContextHandler Modifier and Type Field Description protected FlowContextHandlerAbstractStdOutProcessor. m_Ownerthe owning command.Methods in adams.core.command.stdout with parameters of type FlowContextHandler Modifier and Type Method Description StringAbstractStdOutProcessor. setUp(FlowContextHandler owner)Configures the handler.StringCallableActorSink. setUp(FlowContextHandler owner)Configures the handler.StringEnqueue. setUp(FlowContextHandler owner)StringLog. setUp(FlowContextHandler owner)Configures the handler.StringStdOutProcessor. setUp(FlowContextHandler owner)Configures the handler. -
Uses of FlowContextHandler in adams.data.boofcv.transformer
Classes in adams.data.boofcv.transformer that implement FlowContextHandler Modifier and Type Class Description classAbstractBoofCVTransformerAbstract base class for BoofCV transformations.classAbstractScriptAncestor for BoofCV transformer scripts.classAbstractScriptedTransformerAbstract ancestor for transformers that execute external scripts.classBinaryCreates a binary image.classBinaryContoursUses the BoofCV binary contours algorithm to detect edges in a binary image.classCannyEdgeDetectionPerforms edge detection using the Canny Edge detection algorithm.
For more information on the algorithm, see:
WikiPedia.classDilate4Applies the BoofCV dilate4 algorithm to a binary image.classDilate8Applies the BoofCV dilate8 algorithm to a binary image.classErode4Applies the BoofCV erode4 algorithm to a binary image.classErode8Applies the BoofCV erode8 algorithm to a binary image.classGray8Transforms the image into an 8-bit gray image.classImageTypeTurns an image into the specified type of image.classInverterTakes a binary image in the BoofCV Unsigned Int 8 format and inverts each pixel.classMultiTransformerApplies the specified BoofCV transformers one after the other.classPassThroughA dummy transform that just passes the image through.classScriptedAn image transformer that uses any scripting handler for processing the data with a script located in the specified file.classSharpen4Applies a Laplacian-4 based sharpen filter to the image.classSharpen8Applies a Laplacian-8 based sharpen filter to the image.classSuperPixelsTakes an image and divides it into super pixels.
For more information see:
http://boofcv.org/index.php?classWaveletDenoiseRemoves noise using wavelet transformation. -
Uses of FlowContextHandler in adams.data.image
Subinterfaces of FlowContextHandler in adams.data.image Modifier and Type Interface Description interfaceImageTransformer<T extends AbstractImageContainer>Abstract base class for AbstractImage transformations.Classes in adams.data.image that implement FlowContextHandler Modifier and Type Class Description classAbstractImageTransformer<T extends AbstractImageContainer>Abstract base class for AbstractImage transformations. -
Uses of FlowContextHandler in adams.data.image.transformer
Subinterfaces of FlowContextHandler in adams.data.image.transformer Modifier and Type Interface Description interfaceImageColorizerInterface for image colorizers (only for making it easier to select them in the GUI).interfaceImageColorizerWithColorProviderInterface for image colorizers that support a color provider.Classes in adams.data.image.transformer that implement FlowContextHandler Modifier and Type Class Description classAbstractBufferedImageTransformerAbstract base class for BufferedImage transformations.classAbstractScriptAncestor for JAI transformer scripts.classAbstractScriptedTransformerAbstract ancestor for transformers that execute external scripts.classBinaryTurns an image into a binary image, using a grayscale threshold to determine which pixels are black (below) and which are white (equal to or above).classBinaryMaskGenerates a binary image from the input and uses this mask to determine which pixels get replaced by the specified replacement color.classBlueChannelColorizerInterprets the values in the blue channel (e.g., used by image segmentation frameworks) of the images as indices and replaces them with colors from the specified color provider.classChangeCanvasSizePlaces the image on a canvas of specified size based on the anchor.classCroppingCrops the images passing through using the specified crop algorithm.classDownSampleGenerates a smaller image by taken every nth pixel (on the x and y axis).classFixObjectsEnsures that no invalid object shapes are present in the report.classGaussianBlurPerforms a gaussian blur.
Original code taken from here:
http://www.jhlabs.com/ip/blurring.html
Valid options are:classGrayOrIndexedColorizerColorizes grayscale or indexed images using the specified color provider.
Other images types get converted to grayscale first.classGrayscaleGenerates a grayscale images using the specified luminance parameters.classImageFilterApplies an ImageFilter to the buffered image.classImageTypeTurns an image into the specified type of image.classLaplaceOfGaussianApplies the Laplacian of Gaussian (LoG) to the image, using the following formula
(x^2 + y^2 - 2*sigma^2) / sigma^4 * exp(-(x^2 +y^2) / (2*sigma^2)
For more information on LoG, see:
http://fourier.eng.hmc.edu/e161/lectures/gradient/node8.html
classLaplaceOperatorApplies the Laplace operator, using the following matrix:
0 1 0
1 -4 1
0 1 0
For more information on the Laplace operator, see:
http://docs.opencv.org/modules/imgproc/doc/filtering.html?classLocalMedianFilterTODO: what class does.classMaxRGBclassMinRGBclassMinRGBOldclassMultiTransformerApplies the specified JAI transformers one after the other.classObjectAnnotationsMaskOnly leaves pixels in the image that are covered by the object annotations (= masking).classPassThroughA dummy transform that just passes the image through.classReplaceColorsAllows replacing one color with another.classReplacePredominantColorAllows replacing the predominant color with another.classResizeResizes the image to predefined width and height.
For more information on the scaling types, see:
https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/java/awt/Image.html
classRotateRotates an image by a defined number of degrees.classScriptedAn image transformer that uses any scripting handler for processing the data with a script located in the specified file.classSplitChannelsSplits the image into the specified separate RGB channels.classSplitChannelsHSVSplits the image into the specified separate HSV channels.classSplitChannelsYIQSplits the image into the specified separate YIQ channels.classSplitChannelsYUVSplits the image into the specified separate YUV channels.classSubImagesProduces subimages from the input image using the specified generator.classSuppliedImageMaskMasks out regions on the image using a supplied image from internal storage, making them transparent.classThresholdReplacementReplaces pixels of the image that fall below or above (depending on configuration) a user defined threshold in the grayscale space with the supplied replacement color.
Can be replaced to remove dark or light splotches.classTrimapColorizerColorizes trimap images using the specified color provider.classWhiteBalanceProcesses the images passing through using the specified white balance algorithm.classXScreenMaskMasks out a color by making it transparent. -
Uses of FlowContextHandler in adams.data.jai.transformer
Classes in adams.data.jai.transformer that implement FlowContextHandler Modifier and Type Class Description classAbstractJAITransformerAbstract base class for JAI transformations.classAbstractScriptAncestor for JAI transformer scripts.classAbstractScriptedTransformerAbstract ancestor for transformers that execute external scripts.classBrightnessBrightens or darkens an image using the specified factor and offset.
factor: <0=darken image, >0=brighten image.classChangeOrientationEnsures that the image has the specified orientation.classDilateclassErodeclassFlipFlips an image.classGray8Transforms the image into an 8-bit gray image.classIndexedColorsTurns an RGB image into one with an indexed color palette.classInvertInverts the image.classResizeResizes the image to predefined width and height.classRotateRotates an image by a defined number of degrees.classScriptedAn image transformer that uses any scripting handler for processing the data with a script located in the specified file. -
Uses of FlowContextHandler in adams.data.objectfilter
Subinterfaces of FlowContextHandler in adams.data.objectfilter Modifier and Type Interface Description interfaceObjectFilterInterface for image object filters.Classes in adams.data.objectfilter that implement FlowContextHandler Modifier and Type Class Description classAbstractObjectFilterAncestor for image object filters.classAddDefaultLabelFor inserting a default label if missing.classAttachMetaDataAttaches the specified meta-data value.classAttachOverlappingMetaDataAttaches meta-data from the stored report
classClipBoundingBoxesEnsures that bounding boxes fall within the image boundaries.classKeepEnclosedUses the outlines of annotations with the specified label to filter out any objects that aren't enclosed by these.classMakeSquareGenerates a square bounding box around the current center of the bounding box.
Discards any polygon data.classMergeOverlapsMerges overlapping objects into single object.classOffsetIndexOffsets the object index.classPassThroughDummy, just returns the incoming object list.classPolygonVertexLengthsCalculates the lengths of the polygon's vertices and stores them in the object's meta-data as comma-separated list.classRemoveDuplicatePolygonPointsRemoves duplicate points from polygons, e.g., introduced during scaling.classRemovePolygonsRemoves polygon information.classRenameLabelsFor renaming labels in the meta-data, stored under a specific key.
The rules for renaming are specified: old=new.classRotateRotates the objects using the specified degrees (90 degree increments only).
Requires the original image width before the image got rotated in order to rotate the objects correctly.classScaleScales the objects.classSimplifyPolygonsSimplifies polygons, i.e., to use fewer points.classTransformMetaDataTransforms the specified meta-data using the referenced callable actor.classTranslateTranslates the objects by the specified X and Y.classUpdateBoundsFromPolygonIf polygon available, updates x//width/height with bounds of polygon. -
Uses of FlowContextHandler in adams.data.opencv.transformer
Classes in adams.data.opencv.transformer that implement FlowContextHandler Modifier and Type Class Description classAbstractOpenCVTransformerAbstract base class for OpenCV transformations.classAbstractScriptAncestor for OpenCV transformer scripts.classAbstractScriptedTransformerAbstract ancestor for transformers that execute external scripts.classBlurBlurs the image using the normalized box filter.
For more information see:
https://docs.opencv.org/4.6.0/d4/d86/group__imgproc__filter.html#ga8c45db9afe636703801b0b2e440fce37
classConvertTypeConverts the image according to the conversion code.classGaussianBlurApplies Gaussian blur to the image.
For more information see:
https://docs.opencv.org/4.6.0/d4/d86/group__imgproc__filter.html#gaabe8c836e97159a9193fb0b11ac52cf1
classMultiTransformerApplies the specified OpenCV transformers one after the other.classPassThroughA dummy transform that just passes the image through.classResizeResizes the image, either using absolute width/height or factors for x/y.classScriptedAn image transformer that uses any scripting handler for processing the data with a script located in the specified file.classSplitChannelsclassThresholdGenerates a binary image using the specified image. -
Uses of FlowContextHandler in adams.flow.core
Classes in adams.flow.core that implement FlowContextHandler Modifier and Type Class Description classAbstractModelLoader<T>Ancestor for model loaders.classObjectRetrieverFor retrieving objects from storage or source actors.classWekaClassifierModelLoaderManages classifier models.classWekaClustererModelLoaderManages clusterer models.classWekaFilterModelLoaderModel loader for Weka filters. -
Uses of FlowContextHandler in adams.flow.sink.sendnotification
Classes in adams.flow.sink.sendnotification that implement FlowContextHandler Modifier and Type Class Description classAbstractNotificationAncestor for notification schemes.classConsoleOutputs the message in the console (with optional prefix).classEmailUses the incoming message as body in the email being sent.classLogFileOutputs the message to a log file.classMessageBoxSimply pops up a message box with the notification.classMultiNotificationExecutes the notifications sequentially.classNullFor suppressing notifications. -
Uses of FlowContextHandler in adams.flow.sink.simplelogging.format
Subinterfaces of FlowContextHandler in adams.flow.sink.simplelogging.format Modifier and Type Interface Description interfaceSimpleFormatInterface for schemes that format logging messages.Classes in adams.flow.sink.simplelogging.format that implement FlowContextHandler Modifier and Type Class Description classAbstractSimpleFormatAncestor for simple formatting schemes.classNoFormatApplies no formatting, just forwards the message as is.classTimestampedFormatOutputs the message using the specified format. -
Uses of FlowContextHandler in adams.flow.sink.simplelogging.output
Subinterfaces of FlowContextHandler in adams.flow.sink.simplelogging.output Modifier and Type Interface Description interfaceSimpleOutputInterface for schemes that output logging messages.Classes in adams.flow.sink.simplelogging.output that implement FlowContextHandler Modifier and Type Class Description classAbstractSimpleOutputAncestor for output schemes.classConsoleOutputJust outputs the message via stdout.classFileOutputAppends the log messages to the specified file.classMultiOutputOutputs the log message with all the specified sub-outputs.classRotatingFileOutputAppends the log messages to the specified file, but also allows for rotating them. -
Uses of FlowContextHandler in adams.flow.source.filesystemsearch
Classes in adams.flow.source.filesystemsearch that implement FlowContextHandler Modifier and Type Class Description classAbstractFileSystemSearchletAncestor for file-system search algorithms.classAbstractLocalDirectoryListerBasedSearchletAncestor for search algorithms that useLocalDirectoryListerunder the hood.classAbstractSftpDirectoryListerBasedSearchletAncestor for search algorithms that useSftpDirectoryListerunder the hood.classAbstractSmbDirectoryListerBasedSearchletAncestor for search algorithms that useSmbDirectoryListerunder the hood.classBlockingSearchExecutes the base search till there is a non-empty list returned or, if specified, the timeout reached.classLocalDirectorySearchSearches only for directories.classLocalDirectorySearchWithComparatorSearches only for directories, but uses the comparator for sorting the directories.classLocalDirectorySearchWithCustomSortSearches only for directories, but uses a regular expression to reassemble the name and perform the sorting.classLocalDirectorySearchWithTimestampConstraintsSearches only for directories.
Allows to further restrict the search using a timestamp window ('last modified') that the directories must satisfy.classLocalFileSearchSearches only for files.classLocalFileSearchWithComparatorSearches only for files, but uses the comparator for sorting the files.classLocalFileSearchWithCustomSortSearches only for files, but uses a regular expression to reassemble the name and perform the sorting.classLocalFileSearchWithTimestampConstraintsSearches only for files.
Allows to further restrict the search using a timestamp window ('last modified') that the files must satisfy.classMultiSearchCombines the search results of multiple search algorithms.classSftpDirectorySearchSearches only for directories (SFTP).classSftpDirectorySearchWithComparatorSearches only for directories, but uses the comparator for sorting the directories (SFTP).classSftpDirectorySearchWithCustomSortSearches only for directories, but uses a regular expression to reassemble the name and perform the sorting (SFTP).classSftpFileSearchSearches only for files (SFTP).classSftpFileSearchWithComparatorSearches only for files, but uses the comparator for sorting the files (SFTP).classSftpFileSearchWithCustomSortSearches only for files, but uses a regular expression to reassemble the name and perform the sorting (SFTP).classSmbDirectorySearchSearches only for directories (SMB, Windows shares).classSmbDirectorySearchWithComparatorSearches only for directories, but uses the comparator for sorting the directories (SMB, Windows shares).classSmbDirectorySearchWithCustomSortSearches only for directories, but uses a regular expression to reassemble the name and perform the sorting (SMB, Windows shares).classSmbFileSearchSearches only for files (SMB, Windows shares).classSmbFileSearchWithComparatorSearches only for files, but uses the comparator for sorting the files (SMB, Windows shares).classSmbFileSearchWithCustomSortSearches only for files, but uses a regular expression to reassemble the name and perform the sorting (SMB, Windows shares). -
Uses of FlowContextHandler in adams.flow.source.valuedefinition
Classes in adams.flow.source.valuedefinition that implement FlowContextHandler Modifier and Type Class Description classAbstractArrayValueDefinitionAncestor for array-based value definitions.classAbstractGOEValueDefinitionAncestor for GOE-based value definitions.classAbstractValueDefinitionCombines name, type and default value for a single value.classArrayValueDefinitionDefinition for generic array objects.classDefaultValueDefinitionCombines name, type and default value for a single value.classDirectoryValueDefinitionValue definition specifically for directories.classEnumValueDefinitionSpecialized definition for enums.classFileValueDefinitionValue definition specifically for files.classGOEValueDefinitionDefinition for generic GOE objects.classListSelectionValueDefinitionSpecialized definition for lists, allowing to define a default value.classRegExpConstrainedStringDefinitionDefinition for a string that is constrained by a regular expression.classWekaGOEValueDefinitionDefinition for generic WEKA GOE objects. -
Uses of FlowContextHandler in adams.flow.source.wekapackagemanageraction
Classes in adams.flow.source.wekapackagemanageraction that implement FlowContextHandler Modifier and Type Class Description classAbstractWekaPackageManagerActionAncestor for package manager actions.classListPackagesLists the packages. -
Uses of FlowContextHandler in adams.flow.standalone.wekapackagemanageraction
Classes in adams.flow.standalone.wekapackagemanageraction that implement FlowContextHandler Modifier and Type Class Description classAbstractWekaPackageManagerActionAncestor for package manager actions.classRefreshCacheRefreshes the package cache. -
Uses of FlowContextHandler in adams.flow.transformer.indexedsplitsrunsevaluation
Subinterfaces of FlowContextHandler in adams.flow.transformer.indexedsplitsrunsevaluation Modifier and Type Interface Description interfaceIndexedSplitsRunsEvaluation<I,O>Interface for performing evaluations on indexed splits runs.Classes in adams.flow.transformer.indexedsplitsrunsevaluation that implement FlowContextHandler Modifier and Type Class Description classAbstractIndexedSplitsRunsEvaluation<I,O>Ancestor for performing evaluations on indexed splits runs.classInstancesIndexedSplitsRunsEvaluationEvaluates the specified classifier on the indexed splits runs applied to the incoming data.classNullEvaluationDummy, does nothing. -
Uses of FlowContextHandler in adams.flow.transformer.indexedsplitsrunsgenerator
Subinterfaces of FlowContextHandler in adams.flow.transformer.indexedsplitsrunsgenerator Modifier and Type Interface Description interfaceIndexedSplitsRunsGeneratorInterface for schemes that generate indexed splits runs.interfaceInstancesIndexedSplitsRunsGeneratorIndicator interface for generators that process Instances objects.interfaceSpreadSheetIndexedSplitsRunsGeneratorIndicator interface for generators that process Instances objects.Classes in adams.flow.transformer.indexedsplitsrunsgenerator that implement FlowContextHandler Modifier and Type Class Description classAbstractIndexedSplitsRunsGeneratorAncestor for schemes that generate indexed splits runs.classAbstractInstancesIndexedSplitsRunsGeneratorAncestor for generators that process Instances objects.classAbstractSpreadSheetIndexedSplitsRunsGeneratorAncestor for generators that process SpreadSheet objects.classInstancesCrossValidationFoldGeneratorSplit generator that generates folds for cross-validation for Instances objects.classInstancesGroupedCrossValidationFoldGeneratorSplit generator that generates folds for cross-validation for Instances objects.classInstancesGroupedRandomSplitGeneratorRandom split generator that works on Instances objects (groups instances).classInstancesRandomSplitGeneratorRandom split generator that works on Instances objects.classManualSplitGeneratorUses the manually defined split ranges to generate the splits.classMultiRunGeneratorGenerates the specified number of runs using the configured base generator.classSpreadSheetRandomSplitGeneratorRandom split generator that works on spreadsheets. -
Uses of FlowContextHandler in adams.flow.transformer.indexedsplitsrunspredictions
Subinterfaces of FlowContextHandler in adams.flow.transformer.indexedsplitsrunspredictions Modifier and Type Interface Description interfaceIndexedSplitsRunsPredictions<T>Interface for generating predictions on indexed splits runs.Classes in adams.flow.transformer.indexedsplitsrunspredictions that implement FlowContextHandler Modifier and Type Class Description classAbstractIndexedSplitsRunsPredictions<T>Ancestor for generates predictions on indexed splits runs.classInstancesIndexedSplitsRunsPredictionsTrains the referenced classifier on the training splits and generates predictions for the test splits.classNullPredictionsDummy, does nothing. -
Uses of FlowContextHandler in adams.flow.transformer.wekapackagemanageraction
Classes in adams.flow.transformer.wekapackagemanageraction that implement FlowContextHandler Modifier and Type Class Description classAbstractWekaPackageManagerActionAncestor for package manager actions.classInstallFromFileAction that installs packages from files.classInstallFromURLAction that installs packages from URLs.classInstallOfficialAction that installs official packages via their name and (optional) version.classInstallPackageAction that installs the incoming package.classUninstallAction that removes installed packages. -
Uses of FlowContextHandler in adams.flow.websocket.client
Classes in adams.flow.websocket.client that implement FlowContextHandler Modifier and Type Class Description classSimpleSendSimple client for sending messages.classSimpleSendWithQueueSimple client for sending messages, forwards the received response in the specified queue. -
Uses of FlowContextHandler in adams.flow.websocket.server
Classes in adams.flow.websocket.server that implement FlowContextHandler Modifier and Type Class Description classEchoServerJust sends the messages back to the client. -
Uses of FlowContextHandler in adams.gui.visualization.object
Classes in adams.gui.visualization.object that implement FlowContextHandler Modifier and Type Class Description classObjectAnnotationPanelPanel for annotating objects in images. -
Uses of FlowContextHandler in adams.gui.visualization.segmentation
Classes in adams.gui.visualization.segmentation that implement FlowContextHandler Modifier and Type Class Description classSegmentationPanelPanel for performing segmentation annotations. -
Uses of FlowContextHandler in adams.multiprocess
Classes in adams.multiprocess that implement FlowContextHandler Modifier and Type Class Description classWekaCrossValidationExecutionPerforms cross-validation, either single or multi-threaded.classWekaCrossValidationJobFor evaluation of a single train/test fold in parallel. -
Uses of FlowContextHandler in adams.opt.genetic.setupupload
Classes in adams.opt.genetic.setupupload that implement FlowContextHandler Modifier and Type Class Description classAbstractSetupUploadAncestor for schemes that upload the setup of a genetic algorithm.classMySQLStores the setup information in the specified MySQL table.classNullDummy, does not nothing. -
Uses of FlowContextHandler in adams.scripting.command
Subinterfaces of FlowContextHandler in adams.scripting.command Modifier and Type Interface Description interfaceFlowAwareRemoteCommandInterface for commands that can utilize a flow that is sending this command.Classes in adams.scripting.command that implement FlowContextHandler Modifier and Type Class Description classAbstractFlowAwareCommandAncestor for commands that have a flow context..classAbstractFlowAwareCommandWithResponseAncestor for commands with a response that have flow context. -
Uses of FlowContextHandler in adams.scripting.command.basic
Classes in adams.scripting.command.basic that implement FlowContextHandler Modifier and Type Class Description classTextJust sends some text. -
Uses of FlowContextHandler in adams.scripting.command.flow
Classes in adams.scripting.command.flow that implement FlowContextHandler Modifier and Type Class Description classRemoteFlowExecutionAllows the remote execution of flows, including the transfer of storage items from the flow triggering the remote execution. -
Uses of FlowContextHandler in adams.scripting.command.gui
Classes in adams.scripting.command.gui that implement FlowContextHandler Modifier and Type Class Description classMenuItemLaunches the specified menu item on the remote machine. -
Uses of FlowContextHandler in adams.scripting.engine
Subinterfaces of FlowContextHandler in adams.scripting.engine Modifier and Type Interface Description interfaceJobQueueHandlerInterface for scripting engines that manage a job queue.interfaceMainScriptingEngineInterface for scripting engines that manage worker scripting engines and sending them jobs for execution.interfaceRemoteScriptingEngineScripting engine for remote commands.Classes in adams.scripting.engine that implement FlowContextHandler Modifier and Type Class Description classAbstractScriptingEngineAncestor of scripting engine for remote commands.classAbstractScriptingEngineEnhancerAncestor for scripting engines that enhance a base one.classAbstractScriptingEngineWithJobQueueAncestor for scripting engines that manage a job queue to restrict executions.classDefaultMainScriptingEngineManages worker scripting engines and sends them jobs for execution.classDefaultScriptingEngineDefault implementation of scripting engine for remote commands.classDefaultWorkerScriptingEngineRegisters itself with a main engine for executing jobs.classFileBasedScriptingEngineScripting engine that reads remote commands from disk.classForwardingScriptingEngineSimply forwards incoming commands to the specified connection.classManualFeedScriptingEngineScripting engine that gets commands fed programmatically.classMultiScriptingEngineManages multiple scripting engines. -
Uses of FlowContextHandler in weka.classifiers
Subinterfaces of FlowContextHandler in weka.classifiers Modifier and Type Interface Description interfaceScriptedClassifierInterface for classifiers that make use of scripts derived fromAbstractAdvancedScript. -
Uses of FlowContextHandler in weka.classifiers.meta
Classes in weka.classifiers.meta that implement FlowContextHandler Modifier and Type Class Description classThreadSafeClassifierWrapperWraps an abstaining classifier and allows turning on/of abstaining.
-