当前位置:   article > 正文

emgucv4学习3---图像基本操作_emgu.cv.image

emgu.cv.image

前面学习了emgucv得安装以及图像类型转换得学习,接下来开始图像基本操作得学习。

1、读取图片;

  1. Image<Bgr, byte> image = new Image<Bgr, byte>("G:\\Emgucv_Project\\image\\dog.jpg");
  2. pictureBox1.Image = image.ToBitmap();

也可以使用openFileDialog来选择打开得图像,代码如下:

  1. OpenFileDialog openFileDialog = new OpenFileDialog();
  2. openFileDialog.Filter = "图像文件(*.png;*.jpg;*.gif;*.bmp)|*.png;*.jpg;*.gif;*.bmp";
  3. if(openFileDialog.ShowDialog()==DialogResult.OK)
  4. {
  5. Image<Bgr, byte> image = new Image<Bgr, byte>(openFileDialog.FileName);
  6. pictureBox1.Image = image.ToBitmap();//在 ImageBox1 控件中显示所创建好的图像
  7. }

同理Bitmap读取也是一样。

  1. Bitmap bt = new Bitmap(openFileDialog.FileName);
  2. pictureBox1.Image = bt;//在 ImageBox1 控件中显示所创建好的图像

Mat:

Mat m
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/在线问答5/article/detail/1001650
推荐阅读
相关标签
  

闽ICP备14008679号