Interface IFeatureDBCreator

  • All Known Implementing Classes:
    SingleFeatureDBCreator

    public interface IFeatureDBCreator
    Creates database for storing feature values representing the fitness of a parameter for representing an event type.
    Author:
    Dustin Kempton, Data Mining Lab, Georgia State University
    • Method Detail

      • createFeatureScoreTable

        boolean createFeatureScoreTable​(EventType type)
                                 throws SQLException
        Creates the table for holding the scoring of a particular feature for a particular event type.
        Parameters:
        type - The event type to create the table for
        Returns:
        True if successful, else false
        Throws:
        SQLException - If an error occurs
      • insertParamFeatureStatVal

        boolean insertParamFeatureStatVal​(EventType type,
                                          ImageDBWaveParamPair id,
                                          float statVal)
                                   throws SQLException
        Inserts the statistic value for the feature of a particular wavelength and event type.
        Parameters:
        type - The event type to insert the statistic value for
        id - The feature to insert the statistic value for
        statVal - The value to insert
        Returns:
        True when successful
        Throws:
        SQLException - If an error occurs