C# Class Accord.Controls.HistogramView

Histogram visualization control.
Inheritance: System.Windows.Forms.UserControl
ファイルを表示 Open project: accord-net/framework Class Usage Examples

Private Properties

Property Type Description
InitializeComponent void
UpdateTrackbar void
onDataBind void
trackBar_ValueChanged void

Public Methods

Method Description
HistogramView ( ) : System

Constructs a new instance of the HistogramView.

Reset ( ) : void

Resets custom settings for a fixed number of bins or bin width.

UpdateGraph ( string title = "Histogram" ) : void

Forces a update of the Histogram bins.

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Clean up any resources being used.

Private Methods

Method Description
InitializeComponent ( ) : void

Required method for Designer support - do not modify the contents of this method with the code editor.

UpdateTrackbar ( ) : void

Forces the update of the trackbar control.

onDataBind ( ) : void
trackBar_ValueChanged ( object sender, EventArgs e ) : void

Method Details

Dispose() protected method

Clean up any resources being used.
protected Dispose ( bool disposing ) : void
disposing bool true if managed resources should be disposed; otherwise, false.
return void

HistogramView() public method

Constructs a new instance of the HistogramView.
public HistogramView ( ) : System
return System

Reset() public method

Resets custom settings for a fixed number of bins or bin width.
public Reset ( ) : void
return void

UpdateGraph() public method

Forces a update of the Histogram bins.
public UpdateGraph ( string title = "Histogram" ) : void
title string
return void