Click or drag to resize

FileNodeIteratorReadRaw Method (String, IntPtr, 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,
	IntPtr vec,
	long maxCount = 2147483647
)

Parameters

fmt
Type: SystemString
Specification of each array element.See @ref format_spec "format specification"
vec
Type: SystemIntPtr
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.IntPtr,System.Int64)"]

See Also