Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I draw a line in a image displayed in a picturebox and try to move it depending trackbar value. But performance is very poor and movement is slower and slower. Have you any idea to improve my code ? I attached this code to trackbar:

private void btnToGrey_Click(object sender, EventArgs e)

{

using (Image<Gray, Byte> Img_src_gray = MyImages.Img_src.Clone().Convert<Gray, byte>()

{

    PointF D = new PointF(10, 10);
        PointF F = new PointF(400, 400);
        LineSegment2DF lineS = new LineSegment2DF(D, F);
        Img_src_gray.Draw(lineS, new Gray(255), 2);
    pbxPhotoDestination.Image = Img_src_gray.ToBitmap();
}

}

Thanks

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.