MatOfKeyPoint

Objective-C

@interface MatOfKeyPoint : Mat

Swift

class MatOfKeyPoint : Mat

Mat representation of an array of KeyPoint objects

Constructors

  • Create MatOfKeyPoint from Mat object

    Declaration

    Objective-C

    - (nonnull instancetype)initWithMat:(nonnull Mat *)mat;

    Swift

    init(mat: Mat)

    Parameters

    mat

    Mat object from which to create MatOfKeyPoint

  • Create MatOfKeyPoint from array

    Declaration

    Objective-C

    - (nonnull instancetype)initWithArray:(nonnull NSArray<KeyPoint *> *)array;

    Swift

    init(array: [KeyPoint])

    Parameters

    array

    Array from which to create MatOfKeyPoint

Methods

  • Allocate specified number of elements

    Declaration

    Objective-C

    - (void)alloc:(int)elemNumber;

    Swift

    func alloc(_ elemNumber: Int32)

    Parameters

    elemNumber

    Number of elements

  • Populate Mat with elements of an array

    Declaration

    Objective-C

    - (void)fromArray:(nonnull NSArray<KeyPoint *> *)array;

    Swift

    func fromArray(_ array: [KeyPoint])

    Parameters

    array

    Array with which to populate the Mat

  • Output Mat elements as an array of KeyPoint objects

    Declaration

    Objective-C

    - (nonnull NSArray<KeyPoint *> *)toArray;

    Swift

    func toArray() -> [KeyPoint]
  • Total number of values in Mat

    Declaration

    Objective-C

    - (int)length;

    Swift

    func length() -> Int32