Class AbstractImageFeatureGenerator<T extends AbstractImageContainer>

    • Field Detail

      • m_Prefix

        protected String m_Prefix
        the prefix to use for the fields.
      • m_Fields

        protected Field[] m_Fields
        fields to add to the output data.
      • m_Notes

        protected BaseString[] m_Notes
        the notes to add as attributes.
    • Constructor Detail

      • AbstractImageFeatureGenerator

        public AbstractImageFeatureGenerator()
    • Method Detail

      • reset

        protected void reset()
        Resets the scheme, i.e., the header information.
        Overrides:
        reset in class AbstractOptionHandler
      • setConverter

        public void setConverter​(AbstractFeatureConverter value)
        Sets the feature converter to use.
        Parameters:
        value - the converter
      • getConverter

        public AbstractFeatureConverter getConverter()
        Returns the feature converter in use.
        Returns:
        the converter
      • converterTipText

        public String converterTipText()
        Returns the tip text for this property.
        Returns:
        tip text for this property suitable for displaying in the GUI or for listing the options.
      • setPrefix

        public void setPrefix​(String value)
        Sets the (optional) prefix for the feature names.
        Parameters:
        value - the prefix
      • getPrefix

        public String getPrefix()
        Returns the (optional) prefix for the feature names.
        Returns:
        the prefix
      • prefixTipText

        public String prefixTipText()
        Returns the tip text for this property.
        Returns:
        tip text for this property suitable for displaying in the GUI or for listing the options.
      • setFields

        public void setFields​(Field[] value)
        Sets the targets to add.
        Parameters:
        value - the targets
      • getFields

        public Field[] getFields()
        Returns the targets to add.
        Returns:
        the targets
      • fieldsTipText

        public String fieldsTipText()
        Returns the tip text for this property.
        Returns:
        tip text for this property suitable for displaying in the GUI or for listing the options.
      • setNotes

        public void setNotes​(BaseString[] value)
        Sets the notes to add as attributes.
        Parameters:
        value - the notes prefixes, e.g., "PROCESS INFORMATION"
      • getNotes

        public BaseString[] getNotes()
        Returns the current notes to add as attributes.
        Returns:
        the notes prefixes, e.g., "PROCESS INFORMATION"
      • notesTipText

        public String notesTipText()
        Returns the tip text for this property.
        Returns:
        tip text for this property suitable for displaying in the gui
      • getDatasetFormat

        public Class getDatasetFormat()
        Returns the class of the dataset that the converter generates.
        Returns:
        the format
      • getRowFormat

        public Class getRowFormat()
        Returns the class of the row that the converter generates.
        Returns:
        the format
      • checkData

        protected void checkData​(T img)
        Optional checks of the image.

        Default implementation only checks whether image is null.
        Parameters:
        img - the image to check
      • createHeader

        public abstract HeaderDefinition createHeader​(T img)
        Creates the header from a template image.
        Parameters:
        img - the image to act as a template
        Returns:
        the generated header
      • postProcessHeader

        public HeaderDefinition postProcessHeader​(HeaderDefinition header)
        Post-processes the header, adding fields and notes.
        Parameters:
        header - the header to process
        Returns:
        the post-processed header
      • generateRows

        public abstract List<Object>[] generateRows​(T img)
        Performs the actual feature genration.
        Parameters:
        img - the image to process
        Returns:
        the generated features
      • postProcessRow

        public List<Object> postProcessRow​(T img,
                                           List<Object> data)
        Post-processes the generated row, adding notes and fields.
        Parameters:
        img - the image container
        data - the inst to process
        Returns:
        the updated instance
      • postProcessRows

        public List<Object>[] postProcessRows​(T img,
                                              List<Object>[] data)
        Post-processes the generated rows, adding notes and fields.
        Parameters:
        img - the image container
        data - the inst to process
        Returns:
        the updated instance
      • generate

        public Object[] generate​(T img)
        Process the given image. This method will also create the header if necessary.
        Parameters:
        img - the image to process
        Returns:
        the generated array
        See Also:
        #createHeader(T)
      • compareTo

        public int compareTo​(Object o)
        Compares this object with the specified object for order. Returns a negative integer, zero, or a positive integer as this object is less than, equal to, or greater than the specified object.

        Only compares the commandlines of the two objects.
        Specified by:
        compareTo in interface Comparable<T extends AbstractImageContainer>
        Parameters:
        o - the object to be compared.
        Returns:
        a negative integer, zero, or a positive integer as this object is less than, equal to, or greater than the specified object.
        Throws:
        ClassCastException - if the specified object's type prevents it from being compared to this object.
      • equals

        public boolean equals​(Object o)
        Returns whether the two objects are the same.

        Only compares the commandlines of the two objects.
        Overrides:
        equals in class Object
        Parameters:
        o - the object to be compared
        Returns:
        true if the object is the same as this one
      • cleanUp

        public void cleanUp()
        Cleans up data structures, frees up memory.
        Specified by:
        cleanUp in interface CleanUpHandler