I m trying to do wat my title above says however i m there is no change on my pic when i scroll the trackbar. i noe there is sth missing in my code ... can anyone help me out with this ? greatly appreciate it.

private void SetTrackBarProp()
    {
        trackBar1.Maximum = 255;
        trackBar1.Minimum = 0;
        trackBar1.TickFrequency = 1;
    }

    private Bitmap ApplyRGBFilter(Bitmap pic2)
    {
        ColorFiltering filter = new ColorFiltering();
        filter.Red = new IntRange(0, red);
        filter.Blue = new IntRange(0, blue);
        filter.Green = new IntRange(0, green);
        Bitmap processedImage = filter.Apply(pic2);
        return processedImage;
    }

    void picturebox2(object sender, PaintEventArgs e)
    {

        pictureBox2.Image = ApplyRGBFilter(pic2);
    }


    private void trackBar1_Scroll(object sender, EventArgs e)
    {
        red = trackBar1.Value;
    }

Above is just a snippet of my code on the filtering part, "pic2" is the image that i can browsed from my computer with the browse button i had in my application. pictureBox2 will be the place where my pic2 will appear. THANKS A LOT IN ADVANCE !

link|improve this question

40% accept rate
It is not clear whether you are having problems with the filtering part or the control part. – RedFilter Dec 2 '10 at 16:10
i m having problems with applying the filter to the image – LouisL Dec 3 '10 at 9:23
feedback

1 Answer

It is not clear that the header files for the ColorFiltering function. The only drawback of this Program is note of Header files.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.