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
TSelfTElem
Properties
this[int]
indexer
TElem this[int i] { get; }
Parameters
iint
Property Value
- TElem
Methods
Add(TSelf)
this + other
TSelf Add(TSelf other)
Parameters
otherTSelf
Returns
- TSelf
Divide(double)
this * alpha
TSelf Divide(double alpha)
Parameters
alphadouble
Returns
- TSelf
Multiply(double)
this * alpha
TSelf Multiply(double alpha)
Parameters
alphadouble
Returns
- TSelf
Subtract(TSelf)
this - other
TSelf Subtract(TSelf other)
Parameters
otherTSelf
Returns
- TSelf