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.

目录
相关文章
|
存储 算法 数据可视化
检测交通视频中的汽车
使用工具箱可视化和分析视频或图像序列,检测交通视频中的汽车。
138 0
|
存储 监控 安全
家庭智能摄像头为什么会突然火爆?
家庭智能摄像头为什么会突然火爆?
280 0
家庭智能摄像头为什么会突然火爆?
|
物联网 大数据 云计算
阿里云与飞利浦第一步:让城市路灯联网?
本文讲的是阿里云与飞利浦第一步:让城市路灯联网?,5月28日,飞利浦(中国)与阿里巴巴集团正式签订战略合作谅解备忘录。阿里巴巴有意向飞利浦提供云计算服务,并探求在智能医疗、智慧城市和移动互联网生活三大领域的合作。
1414 0