Table of Contents

Operator explicit operator

Namespace
OpenCvSharp
Assembly
OpenCvSharp.dll

explicit operator int(FileNode)

Returns the node content as an integer. If the node stores floating-point number, it is rounded.

public static explicit operator int(FileNode node)

Parameters

node FileNode

Returns

int

explicit operator long(FileNode)

Returns the node content as a signed 64-bit integer. If the node stores a floating-point number, it is rounded.

public static explicit operator long(FileNode node)

Parameters

node FileNode

Returns

long

explicit operator float(FileNode)

Returns the node content as float

public static explicit operator float(FileNode node)

Parameters

node FileNode

Returns

float

explicit operator double(FileNode)

Returns the node content as double

public static explicit operator double(FileNode node)

Parameters

node FileNode

Returns

double

explicit operator string(FileNode)

Returns the node content as text string

public static explicit operator string(FileNode node)

Parameters

node FileNode

Returns

string

explicit operator Mat(FileNode)

Returns the node content as OpenCV Mat

public static explicit operator Mat(FileNode node)

Parameters

node FileNode

Returns

Mat