摘要:
一、使循环不卡 Application.DoEvents(); System.Threading.Thread.Sleep(5);二、计算代码运行时间 Stopwatch sw = new Stopwatch(); sw.Start(); ... sw.Stop(); 阅读全文
摘要:
一、圆 public static void cvCircle( IntPtr img, System.Drawing.Point center, //Center of the circle int radius, //Radius of the circle MCvScalar color, //Color of the circle int thickness, if negative indicates that a filled circle has to be drawn Emgu.CV.CvEn... 阅读全文