MatOfDouble

Objective-C

@interface MatOfDouble : Mat

Swift

class MatOfDouble : Mat

Mat representation of an array of doubles

Constructors

  • Create MatOfDouble from Mat object

    Declaration

    Objective-C

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

    Swift

    init(mat: Mat)

    Parameters

    mat

    Mat object from which to create MatOfDouble

  • Create MatOfDouble from array

    Declaration

    Objective-C

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

    Swift

    init(array: [NSNumber])

    Parameters

    array

    Array from which to create MatOfDouble

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<NSNumber *> *)array;

    Swift

    func fromArray(_ array: [NSNumber])

    Parameters

    array

    Array with which to populate the Mat

  • Output Mat elements as an array

    Declaration

    Objective-C

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

    Swift

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

    Declaration

    Objective-C

    - (int)length;

    Swift

    func length() -> Int32