Table of Contents

Interface IVec<TSelf, TElem>

Namespace
OpenCvSharp
Assembly
OpenCvSharp.dll

Vec** interface

public interface IVec<TSelf, out TElem> : IVec where TSelf : IVec where TElem : unmanaged

Type Parameters

TSelf
TElem

Properties

this[int]

indexer

TElem this[int i] { get; }

Parameters

i int

Property Value

TElem

Methods

Add(TSelf)

this + other

TSelf Add(TSelf other)

Parameters

other TSelf

Returns

TSelf

Divide(double)

this * alpha

TSelf Divide(double alpha)

Parameters

alpha double

Returns

TSelf

Multiply(double)

this * alpha

TSelf Multiply(double alpha)

Parameters

alpha double

Returns

TSelf

Subtract(TSelf)

this - other

TSelf Subtract(TSelf other)

Parameters

other TSelf

Returns

TSelf