Click or drag to resize

QuantizationParams Structure

http://www.emgu.com
Parameters for asymmetric quantization.

Namespace:  Emgu.TF.Lite
Assembly:  Emgu.TF.Lite.World (in Emgu.TF.Lite.World.dll) Version: 1.13.1.439 (1.13.1.439)
Syntax
public struct QuantizationParams

The QuantizationParams type exposes the following members.

Methods
  NameDescription
Public methodEquals (Inherited from ValueType.)
Protected methodFinalize (Inherited from Object.)
Public methodGetHashCode (Inherited from ValueType.)
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodToString (Inherited from ValueType.)
Top
Fields
  NameDescription
Public fieldScale
The scale
Public fieldZeroPoint
The zero point
Top
Remarks
Quantized values can be converted back to float using: real_value = scale * (quantized_value - zero_point);
See Also