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