Show / Hide Table of Contents

Class VectorOfMat

Inheritance
System.Object
DisposableObject
DisposableCvObject
VectorOfMat
Implements
ICvPtrHolder
IStdVector<Mat>
IDisposable
Inherited Members
DisposableCvObject.ptr
DisposableCvObject.CvPtr
DisposableObject.DataHandle
DisposableObject.IsDisposed
DisposableObject.IsEnabledDispose
DisposableObject.AllocatedMemory
DisposableObject.AllocatedMemorySize
DisposableObject.Dispose()
DisposableObject.Dispose(Boolean)
DisposableObject.DisposeManaged()
DisposableObject.AllocGCHandle(Object)
DisposableObject.AllocMemory(Int32)
DisposableObject.NotifyMemoryPressure(Int64)
DisposableObject.ThrowIfDisposed()
Namespace: OpenCvSharp.Internal.Vectors
Assembly: OpenCvSharp.dll
Syntax
public class VectorOfMat : DisposableCvObject, ICvPtrHolder, IStdVector<Mat>

Constructors

| Improve this Doc View Source

VectorOfMat()

Constructor

Declaration
public VectorOfMat()
| Improve this Doc View Source

VectorOfMat(IEnumerable<Mat>)

Constructor

Declaration
public VectorOfMat(IEnumerable<Mat> mats)
Parameters
Type Name Description
IEnumerable<Mat> mats
| Improve this Doc View Source

VectorOfMat(Int32)

Constructor

Declaration
public VectorOfMat(int size)
Parameters
Type Name Description
System.Int32 size

Properties

| Improve this Doc View Source

ElemPtr

&vector[0]

Declaration
public IntPtr ElemPtr { get; }
Property Value
Type Description
IntPtr
| Improve this Doc View Source

Size

vector.size()

Declaration
public int Size { get; }
Property Value
Type Description
System.Int32

Methods

| Improve this Doc View Source

DisposeUnmanaged()

Releases unmanaged resources

Declaration
protected override void DisposeUnmanaged()
Overrides
DisposableCvObject.DisposeUnmanaged()
| Improve this Doc View Source

ToArray()

Converts std::vector to managed array

Declaration
public Mat[] ToArray()
Returns
Type Description
Mat[]
| Improve this Doc View Source

ToArray<T>()

Converts std::vector to managed array

Declaration
public T[] ToArray<T>()
    where T : Mat, new()
Returns
Type Description
T[]
Type Parameters
Name Description
T

Implements

ICvPtrHolder
IStdVector<T>
IDisposable
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX