SXH232摄像头使用示范

简介: It occurred to me suddenly that I wanted to program the our camera sensor for PC desktop, just like the one purchased from shop, which can make the video recording. Finally although the result see

It occurred to me suddenly that I wanted to program the our camera sensor for PC desktop, just like the one purchased from shop, which can make the video recording. Finally although the result seemed not to be as good as expected, it improved me.

Here I used the SXH232-V1 camera. Judging from literal meaning, it has RS232 port obviously.So first connect the camera to PC with 232 port correctly. Then create a winform VS project, and create a form like this:


Here's what I intend to do. when I click "start taking photo" button, the picture taken by camera is showed in the picturebox in no time.If the speed is fast enough, then we'll see a video made up of several frames of pictures. However to my pity, I haven't done it completely, which means it has a few seconds of delay.

OK, then let's see the main code:

private SXH sxh =  new SXH();
private Queue<Image> queue = new Queue<Image>();
private Image img = null;

Thread pic, pbx;

public Form1()
{
	InitializeComponent();
	this.comboBox1.Text = "COM1";
	this.comboBox2.Text = "115200";
	this.comboBox3.Text = "640x480";
	this.comboBox4.Text = "2";

	sxh.InitSXH(this.comboBox1.Text, Convert.ToInt32(this.comboBox2.Text),
		this.comboBox3.Text,Convert.ToInt32(this.comboBox4.Text));
}

first create some private members and initiate the form and camera


private void button1_Click(object sender, EventArgs e)
{
	pic = new Thread(new ThreadStart(TakePic));
	pic.Start();

	pbx = new Thread(new ThreadStart(ShowPic));
	pbx.Start();

	this.comboBox1.Enabled = false;
	this.comboBox2.Enabled = false;
	this.comboBox3.Enabled = false;
	this.comboBox4.Enabled = false;
	this.button1.Enabled = false;
}

when I start taking, the message handling function creates two threads. One is responsible for taking picture, another for showing it.


public void TakePic()
{
	byte[] data = null;
	while (true)
	{

		sxh.GetData(0x01, out data);//获得图片字节

		if (data != null)
		{
			MemoryStream ms = new MemoryStream(data);
			img = System.Drawing.Image.FromStream(ms);                 
		}

		if (img != null)
		{
			img.RotateFlip(RotateFlipType.Rotate180FlipX);//若摄像头安反了,就反转一下
			queue.Enqueue(img);
		}
	}
}

public void ShowPic()
{
	while (true)
	{
		if (queue.Count > 0)
		{
			Image img = queue.Dequeue();
			this.pictureBox1.Size = img.Size;
			this.pictureBox1.Image = img;
			//Thread.Sleep(200);
		}
	}
}

the above are two threads. One puts the image into queue, anther gets image from the queue.


Of course, there is an important problem here. How do we get the data from camera? Well, we should write the camera driver according to camera document. As for the code, you can refer to the doc here, or you can contact me.

Finally build the execute the program. let's watch a snapshot from camera:


It has to be acknowledged that this program has imperfections. Sometimes after a little long time running, it will raise a kind of exception. Apparently there are errors in my code. Furthermore,  I'm looking forward to seeing the real-time video instead of the delayed pictures, but actually I've no idea whether it can be achieved. I had thought that I could handle it with threads programming. Anyway something's wrong with my design.

目录
相关文章
|
19天前
|
人工智能 JavaScript 前端开发
实战使用 Qwen3-coder 低代码开发 HTML 个人网站
阿里巴巴开源的Qwen3-coder模型,凭借强大性能和低代码能力,助力用户快速搭建个人网站。本文详解环境配置、提示词设计与部署流程,适合编程新手快速上手,掌握AI辅助开发技能。
1254 8
|
9天前
|
人工智能 算法 测试技术
轻量高效,8B 性能强劲书生科学多模态模型Intern-S1-mini开源
继 7 月 26 日开源『书生』科学多模态大模型 Intern-S1 之后,上海人工智能实验室(上海AI实验室)在8月23日推出了轻量化版本 Intern-S1-mini。
326 51
|
3天前
|
自然语言处理 前端开发 JavaScript
js异步
js异步
209 108