Show / Hide Table of Contents

Interface IVec<TSelf, TElem>

Vec** interface

Namespace: OpenCvSharp
Assembly: OpenCvSharp.dll
Syntax
public interface IVec<TSelf, out TElem> : IVec where TSelf : IVec where TElem : struct
Type Parameters
Name Description
TSelf
TElem

Properties

| Improve this Doc View Source

Item[Int32]

indexer

Declaration
TElem this[int i] { get; }
Parameters
Type Name Description
System.Int32 i
Property Value
Type Description
TElem

Methods

| Improve this Doc View Source

Add(TSelf)

this + other

Declaration
TSelf Add(TSelf other)
Parameters
Type Name Description
TSelf other
Returns
Type Description
TSelf
| Improve this Doc View Source

Divide(Double)

this * alpha

Declaration
TSelf Divide(double alpha)
Parameters
Type Name Description
System.Double alpha
Returns
Type Description
TSelf
| Improve this Doc View Source

Multiply(Double)

this * alpha

Declaration
TSelf Multiply(double alpha)
Parameters
Type Name Description
System.Double alpha
Returns
Type Description
TSelf
| Improve this Doc View Source

Subtract(TSelf)

this - other

Declaration
TSelf Subtract(TSelf other)
Parameters
Type Name Description
TSelf other
Returns
Type Description
TSelf
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX