Interface DetectDescribeMulti<T extends ImageGray<T>,Desc extends TupleDesc<Desc>>

All Superinterfaces:
DescriptorInfo<Desc>
All Known Implementing Classes:
DetectDescribeSingleToMulti

@Deprecated public interface DetectDescribeMulti<T extends ImageGray<T>,Desc extends TupleDesc<Desc>> extends DescriptorInfo<Desc>
Deprecated.
Detects and describes different types of features inside an image. All detected features are described using the same type of descriptor. Each type of detected feature is a member of a set and the found features for a set are returned inside of a PointDescSet. The order and number of sets remains constant. Type of feature descriptor
  • Method Details

    • process

      void process(T image)
      Deprecated.
      Detects features inside the image.
      Parameters:
      image - Image being processed.
    • getNumberOfSets

      int getNumberOfSets()
      Deprecated.
      The number of feature sets.
      Returns:
      number of feature sets
    • getFeatureSet

      PointDescSet<Desc> getFeatureSet(int set)
      Deprecated.
      Returns the most recently detected features for a specific set. Each time process(ImageGray) is called the results are modified.

      WARNING: The returned data structure is recycled each time process(ImageGray) is called. Create a copy if this is a problem.
      Parameters:
      set - Which set of detected features.
      Returns:
      Results for a set.