Class FileNodeIterator
Inheritance
System.Object
FileNodeIterator
Implements
System.Collections.IEnumerator<
FileNode>
Assembly: OpenCvSharp.dll
Syntax
public class FileNodeIterator : DisposableCvObject, ICvPtrHolder
Constructors
|
Improve this Doc
View Source
FileNodeIterator()
Declaration
public FileNodeIterator()
|
Improve this Doc
View Source
FileNodeIterator(IntPtr)
Initializes from cv::FileNode*
Declaration
public FileNodeIterator(IntPtr ptr)
Parameters
Type |
Name |
Description |
IntPtr |
ptr |
|
Properties
|
Improve this Doc
View Source
Current
Declaration
public FileNode Current { get; }
Property Value
Methods
|
Improve this Doc
View Source
DisposeUnmanaged()
Releases unmanaged resources
Declaration
protected override void DisposeUnmanaged()
Overrides
|
Improve this Doc
View Source
Equals(FileNodeIterator)
Declaration
public bool Equals(FileNodeIterator other)
Parameters
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Equals(Object)
Declaration
public override bool Equals(object obj)
Parameters
Type |
Name |
Description |
System.Object |
obj |
|
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
LessThan(FileNodeIterator)
Declaration
public bool LessThan(FileNodeIterator it)
Parameters
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Minus(FileNodeIterator)
Declaration
public long Minus(FileNodeIterator it)
Parameters
Returns
Type |
Description |
System.Int64 |
|
|
Improve this Doc
View Source
MoveNext()
Declaration
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
MoveNext(Int32)
Declaration
public bool MoveNext(int ofs)
Parameters
Type |
Name |
Description |
System.Int32 |
ofs |
|
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
ReadRaw(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.
Declaration
public FileNodeIterator ReadRaw(string fmt, IntPtr vec, long maxCount = 2147483647L)
Parameters
Type |
Name |
Description |
System.String |
fmt |
Specification of each array element.See @ref format_spec "format specification"
|
IntPtr |
vec |
Pointer to the destination array.
|
System.Int64 |
maxCount |
Number of elements to read. If it is greater than number of remaining elements then all of them will be read.
|
Returns
|
Improve this Doc
View Source
ReadRaw(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.
Declaration
public FileNodeIterator ReadRaw(string fmt, byte[] vec, long maxCount = 2147483647L)
Parameters
Type |
Name |
Description |
System.String |
fmt |
Specification of each array element.See @ref format_spec "format specification"
|
System.Byte[] |
vec |
Pointer to the destination array.
|
System.Int64 |
maxCount |
Number of elements to read. If it is greater than number of remaining elements then all of them will be read.
|
Returns
|
Improve this Doc
View Source
Reset()
Declaration
Explicit Interface Implementations
|
Improve this Doc
View Source
IEnumerator.Current
Declaration
object IEnumerator.Current { get; }
Returns
Type |
Description |
System.Object |
|
Implements
IEquatable<>
System.Collections.IEnumerator<>