C# Класс OpenCvSharp.Algorithm

Base class for high-level OpenCV algorithms
Наследование: OpenCvSharp.DisposableCvObject
Показать файл Открыть проект

Открытые методы

Метод Описание
GetDefaultName ( ) : String

Returns the algorithm string identifier. This string is used as top level xml/yml node tag when the object is saved to a file or string.

Read ( FileNode fn ) : void

Reads algorithm parameters from a file storage

Save ( string filename ) : void

Saves the algorithm to a file. In order to make this method work, the derived class must implement Algorithm::write(FileStorage fs).

Write ( FileStorage fs ) : void

Stores algorithm parameters in a file storage

Описание методов

GetDefaultName() публичный Метод

Returns the algorithm string identifier. This string is used as top level xml/yml node tag when the object is saved to a file or string.
public GetDefaultName ( ) : String
Результат String

Read() публичный Метод

Reads algorithm parameters from a file storage
public Read ( FileNode fn ) : void
fn FileNode
Результат void

Save() публичный Метод

Saves the algorithm to a file. In order to make this method work, the derived class must implement Algorithm::write(FileStorage fs).
public Save ( string filename ) : void
filename string
Результат void

Write() публичный Метод

Stores algorithm parameters in a file storage
public Write ( FileStorage fs ) : void
fs FileStorage
Результат void