Class AssociatedPairConic

java.lang.Object
boofcv.struct.geo.AssociatedPairConic

public class AssociatedPairConic extends Object

The observed location of a conic feature in two camera views. Can be in pixels or normalized image coordinates.

  • Field Details

  • Constructor Details

    • AssociatedPairConic

      public AssociatedPairConic()
    • AssociatedPairConic

      public AssociatedPairConic(boolean declare)
      Constructor which allows the points to not be declared.
      Parameters:
      declare - If true then new points will be declared
    • AssociatedPairConic

      public AssociatedPairConic(ConicGeneral_F64 p1, ConicGeneral_F64 p2)
      Assigns the value to the two passed in features. A copy of the features is made.
      Parameters:
      p1 - image 1 location
      p2 - image 2 location
    • AssociatedPairConic

      public AssociatedPairConic(ConicGeneral_F64 p1, ConicGeneral_F64 p2, boolean newInstance)
      Allows features to either be copied or saved as references.
      Parameters:
      p1 - image 1 location
      p2 - image 2 location
      newInstance - Should it create new points or save a reference to these instances.
  • Method Details