版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

29 line
667 B

  1. using OpenCvSharp;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. using System.Windows.Forms;
  11. namespace MaiMuAOI.SysUI.DefectPicShow
  12. {
  13. public partial class CamImageFrm : Form
  14. {
  15. public CamImageFrm(Mat img, Bitmap bp)
  16. {
  17. InitializeComponent();
  18. UIStyle.SetUIStyle(this);
  19. this.uiTitel1.FatherForm = this;
  20. this.imageBox1.RefreshWindow(img);
  21. this.pictureBox1.Image = bp;
  22. this.Refresh();
  23. }
  24. }
  25. }