C# Class OpenCvSharp.FileNode

File Storage Node class
Inheritance: OpenCvSharp.DisposableCvObject
ファイルを表示 Open project: shimat/opencvsharp Class Usage Examples

Public Methods

Method Description
FileNode ( ) : System

The default constructor

FileNode ( IntPtr ptr ) : System

Initializes from cv::FileNode*

ReadDMatches ( ) : OpenCvSharp.DMatch[]

ReadDouble ( double defaultValue = default(double) ) : double

ReadFloat ( float defaultValue = default(float) ) : float

ReadInt ( int defaultValue = default(int) ) : int

ReadKeyPoints ( ) : KeyPoint[]

ReadMat ( OpenCvSharp.Mat defaultMat = null ) : OpenCvSharp.Mat

ReadObj ( ) : IntPtr

Reads the registered object and returns pointer to it

ReadRaw ( string fmt, IntPtr vec, long len ) : void

Reads node elements to the buffer with the specified format

ReadSparseMat ( SparseMat defaultMat = null ) : SparseMat

ReadString ( string defaultValue = default(string) ) : string

this ( int i ) : FileNode

returns element of a sequence node

this ( string nodeName ) : FileNode

returns element of a mapping node

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Method Details

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void

FileNode() public method

The default constructor
public FileNode ( ) : System
return System

FileNode() public method

Initializes from cv::FileNode*
public FileNode ( IntPtr ptr ) : System
ptr System.IntPtr
return System

ReadDMatches() public method

public ReadDMatches ( ) : OpenCvSharp.DMatch[]
return OpenCvSharp.DMatch[]

ReadDouble() public method

public ReadDouble ( double defaultValue = default(double) ) : double
defaultValue double
return double

ReadFloat() public method

public ReadFloat ( float defaultValue = default(float) ) : float
defaultValue float
return float

ReadInt() public method

public ReadInt ( int defaultValue = default(int) ) : int
defaultValue int
return int

ReadKeyPoints() public method

public ReadKeyPoints ( ) : KeyPoint[]
return KeyPoint[]

ReadMat() public method

public ReadMat ( OpenCvSharp.Mat defaultMat = null ) : OpenCvSharp.Mat
defaultMat OpenCvSharp.Mat
return OpenCvSharp.Mat

ReadObj() public method

Reads the registered object and returns pointer to it
public ReadObj ( ) : IntPtr
return System.IntPtr

ReadRaw() public method

Reads node elements to the buffer with the specified format
public ReadRaw ( string fmt, IntPtr vec, long len ) : void
fmt string
vec System.IntPtr
len long
return void

ReadSparseMat() public method

public ReadSparseMat ( SparseMat defaultMat = null ) : SparseMat
defaultMat SparseMat
return SparseMat

ReadString() public method

public ReadString ( string defaultValue = default(string) ) : string
defaultValue string
return string

this() public method

returns element of a sequence node
public this ( int i ) : FileNode
i int
return FileNode

this() public method

returns element of a mapping node
public this ( string nodeName ) : FileNode
nodeName string
return FileNode