Struct Vec6b
6-Tuple of byte (System.Byte)
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.ReferenceEquals(System.Object, System.Object)
Assembly: OpenCvSharp.dll
Syntax
public struct Vec6b : IVec<Vec6b, byte>, IVec
Constructors
|
Improve this Doc
View Source
Vec6b(Byte, Byte, Byte, Byte, Byte, Byte)
Declaration
public Vec6b(byte item0, byte item1, byte item2, byte item3, byte item4, byte item5)
Parameters
Type |
Name |
Description |
System.Byte |
item0 |
|
System.Byte |
item1 |
|
System.Byte |
item2 |
|
System.Byte |
item3 |
|
System.Byte |
item4 |
|
System.Byte |
item5 |
|
Fields
|
Improve this Doc
View Source
Item0
The value of the first component of this object.
Declaration
Field Value
Type |
Description |
System.Byte |
|
|
Improve this Doc
View Source
Item1
The value of the second component of this object.
Declaration
Field Value
Type |
Description |
System.Byte |
|
|
Improve this Doc
View Source
Item2
The value of the third component of this object.
Declaration
Field Value
Type |
Description |
System.Byte |
|
|
Improve this Doc
View Source
Item3
The value of the fourth component of this object.
Declaration
Field Value
Type |
Description |
System.Byte |
|
|
Improve this Doc
View Source
Item4
The value of the fifth component of this object.
Declaration
Field Value
Type |
Description |
System.Byte |
|
|
Improve this Doc
View Source
Item5
The value of the sixth component of this object.
Declaration
Field Value
Type |
Description |
System.Byte |
|
Properties
|
Improve this Doc
View Source
Item[Int32]
Declaration
public byte this[int i] { readonly get; set; }
Parameters
Type |
Name |
Description |
System.Int32 |
i |
|
Property Value
Type |
Description |
System.Byte |
|
Methods
|
Improve this Doc
View Source
Add(Vec6b)
Declaration
public readonly Vec6b Add(Vec6b other)
Parameters
Type |
Name |
Description |
Vec6b |
other |
|
Returns
|
Improve this Doc
View Source
Deconstruct(out Byte, out Byte, out Byte, out Byte, out Byte, out Byte)
Declaration
public readonly void Deconstruct(out byte item0, out byte item1, out byte item2, out byte item3, out byte item4, out byte item5)
Parameters
Type |
Name |
Description |
System.Byte |
item0 |
|
System.Byte |
item1 |
|
System.Byte |
item2 |
|
System.Byte |
item3 |
|
System.Byte |
item4 |
|
System.Byte |
item5 |
|
|
Improve this Doc
View Source
Divide(Double)
Declaration
public readonly Vec6b Divide(double alpha)
Parameters
Type |
Name |
Description |
System.Double |
alpha |
|
Returns
|
Improve this Doc
View Source
Equals(Vec6b)
Declaration
public readonly bool Equals(Vec6b other)
Parameters
Type |
Name |
Description |
Vec6b |
other |
|
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Equals(Object)
Declaration
public override readonly bool Equals(object obj)
Parameters
Type |
Name |
Description |
System.Object |
obj |
|
Returns
Type |
Description |
System.Boolean |
|
Overrides
System.ValueType.Equals(System.Object)
|
Improve this Doc
View Source
GetHashCode()
Declaration
public override readonly int GetHashCode()
Returns
Type |
Description |
System.Int32 |
|
Overrides
System.ValueType.GetHashCode()
|
Improve this Doc
View Source
Multiply(Double)
Declaration
public readonly Vec6b Multiply(double alpha)
Parameters
Type |
Name |
Description |
System.Double |
alpha |
|
Returns
|
Improve this Doc
View Source
Subtract(Vec6b)
Declaration
public readonly Vec6b Subtract(Vec6b other)
Parameters
Type |
Name |
Description |
Vec6b |
other |
|
Returns
|
Improve this Doc
View Source
ToString()
Declaration
public override readonly string ToString()
Returns
Type |
Description |
System.String |
|
Overrides
System.ValueType.ToString()
|
Improve this Doc
View Source
ToVec6d()
Declaration
Returns
|
Improve this Doc
View Source
ToVec6f()
Declaration
Returns
|
Improve this Doc
View Source
ToVec6i()
Declaration
Returns
|
Improve this Doc
View Source
ToVec6s()
Declaration
Returns
|
Improve this Doc
View Source
ToVec6w()
Declaration
Returns
Operators
|
Improve this Doc
View Source
Addition(Vec6b, Vec6b)
Declaration
public static Vec6b operator +(Vec6b a, Vec6b b)
Parameters
Returns
|
Improve this Doc
View Source
Division(Vec6b, Double)
Declaration
public static Vec6b operator /(Vec6b a, double alpha)
Parameters
Type |
Name |
Description |
Vec6b |
a |
|
System.Double |
alpha |
|
Returns
|
Improve this Doc
View Source
Equality(Vec6b, Vec6b)
Declaration
public static bool operator ==(Vec6b a, Vec6b b)
Parameters
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Inequality(Vec6b, Vec6b)
Declaration
public static bool operator !=(Vec6b a, Vec6b b)
Parameters
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Multiply(Vec6b, Double)
Declaration
public static Vec6b operator *(Vec6b a, double alpha)
Parameters
Type |
Name |
Description |
Vec6b |
a |
|
System.Double |
alpha |
|
Returns
|
Improve this Doc
View Source
Subtraction(Vec6b, Vec6b)
Declaration
public static Vec6b operator -(Vec6b a, Vec6b b)
Parameters
Returns
Implements
IEquatable<>