| FileNodeIteratorReadRaw Method (String, Byte, Int64) |
Reads node elements to the buffer with the specified format.
Usually it is more convenient to use operator `>>` instead of this method.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public FileNodeIterator ReadRaw(
string fmt,
byte[] vec,
long maxCount = 2147483647
)
Public Function ReadRaw (
fmt As String,
vec As Byte(),
Optional maxCount As Long = 2147483647
) As FileNodeIterator
public:
FileNodeIterator^ ReadRaw(
String^ fmt,
array<unsigned char>^ vec,
long long maxCount = 2147483647
)
member ReadRaw :
fmt : string *
vec : byte[] *
?maxCount : int64
(* Defaults:
let _maxCount = defaultArg maxCount 2147483647
*)
-> FileNodeIterator
Parameters
- fmt
- Type: SystemString
Specification of each array element.See @ref format_spec "format specification" - vec
- Type: SystemByte
Pointer to the destination array. - maxCount (Optional)
- Type: SystemInt64
Number of elements to read. If it is greater than number of remaining elements then all of them will be read.
Return Value
Type:
FileNodeIterator[Missing <returns> documentation for "M:OpenCvSharp.FileNodeIterator.ReadRaw(System.String,System.Byte[],System.Int64)"]
See Also