| SparseMatFindT Method (Int32, Int32, Int32, NullableInt64) |
Return pthe specified sparse matrix element if it exists; otherwise, null.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public Nullable<T> Find<T>(
int i0,
int i1,
int i2,
Nullable<long> hashVal = null
)
where T : struct, new()
Public Function Find(Of T As {Structure, New}) (
i0 As Integer,
i1 As Integer,
i2 As Integer,
Optional hashVal As Nullable(Of Long) = Nothing
) As Nullable(Of T)
public:
generic<typename T>
where T : value class, gcnew()
Nullable<T> Find(
int i0,
int i1,
int i2,
Nullable<long long> hashVal = nullptr
)
member Find :
i0 : int *
i1 : int *
i2 : int *
?hashVal : Nullable<int64>
(* Defaults:
let _hashVal = defaultArg hashVal null
*)
-> Nullable<'T> when 'T : struct, new()
Parameters
- i0
- Type: SystemInt32
Index along the dimension 0 - i1
- Type: SystemInt32
Index along the dimension 1 - i2
- Type: SystemInt32
Index along the dimension 2 - hashVal (Optional)
- Type: SystemNullableInt64
If hashVal is not null, the element hash value is not computed but hashval is taken instead.
Type Parameters
- T
[Missing <typeparam name="T"/> documentation for "M:OpenCvSharp.SparseMat.Find``1(System.Int32,System.Int32,System.Int32,System.Nullable{System.Int64})"]
Return Value
Type:
NullableT[Missing <returns> documentation for "M:OpenCvSharp.SparseMat.Find``1(System.Int32,System.Int32,System.Int32,System.Nullable{System.Int64})"]
See Also