// // MPT_FeatureImprover.h // MPT_Features // // Created by Andrew Salamon on 9/26/08. // Copyright 2008 Machine Perception Laboratory, University of California San Diego. All rights reserved. // #import #import #import #include "FeatureImprover.h" @interface MPT_FeatureImprover : MPT_PluginBase { mpt::OWF::FeatureImprover *improver; NSDictionary *labelMap; } - (void)pluginsFinishedLoading:(NSArray *)plugins; - (NSString *)labelForFeatureType:(NSString *)type; - (NSArray *)outputFeatureTypes; ///< An array of all of the feature types that might be generated by this plugin @end