C# Class Trigrad.DataTypes.FrequencyTable

A frequency table defining how likely a sample will be formed during a TrigradCompression.
Afficher le fichier Open project: ruarai/Trigrad Class Usage Examples

Méthodes publiques

Свойство Type Description
Table ].double[

Méthodes publiques

Méthode Description
FrequencyTable ( PixelMap pixelmap, double power = 1.7 ) : System

Constructs a frequency table using sobel edge detection.

FrequencyTable ( double table ) : System

Constructs a frequency table using a specified table of values.

Private Methods

Méthode Description
sobelFilter ( PixelMap map ) : ].double[
sobelPass ( PixelMap map, double kernel ) : ].double[

Method Details

FrequencyTable() public méthode

Constructs a frequency table using sobel edge detection.
public FrequencyTable ( PixelMap pixelmap, double power = 1.7 ) : System
pixelmap PixelMap
power double
Résultat System

FrequencyTable() public méthode

Constructs a frequency table using a specified table of values.
public FrequencyTable ( double table ) : System
table double
Résultat System

Property Details

Table public_oe property

The underlying 2D frequency table, with values lying from 0 to 1.
public double[,] Table
Résultat ].double[