private void trackBar1_Scroll(object sender, EventArgs e)
{
lb.Text = trackBar1.Value.ToString();
int n = trackBar1.Value;
if (pictureBox1.Image!=null)
{
BrightnessCorrection b = new BrightnessCorrection();
pictureBox1.Image = b.Apply((Bitmap)pictureBox1.Image);
}
}