Click here to Skip to main content
15,896,118 members
Articles / Programming Languages / C#

How to use video and sound information to detect intruder

Rate me:
Please Sign up or sign in to vote.
4.79/5 (18 votes)
19 Sep 2011CPOL2 min read 49.5K   4.2K   74  
This article presents how to use video and sound information to detect intruder
using System;

namespace WaveStream
{
	/// <summary>
	/// Summary description for WaveStreamException.
	/// </summary>
	public class WaveStreamException : Exception
	{
		/// <summary>
		/// Constructs a new, default exception
		/// </summary>
		public WaveStreamException() : base()
		{
		}

		/// <summary>
		/// Constructs a new exception.
		/// </summary>
		/// <param name="message">Error message</param>
		public WaveStreamException(string message) : base(message)
		{
		}

		/// <summary>
		/// Constructs a new exception
		/// </summary>
		/// <param name="message">Error message</param>
		/// <param name="innerException">Exception leading to this exception</param>
		public WaveStreamException(string message, Exception innerException) : base(message, innerException)
		{
		}


	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
China China
E-mail:calinyara@gmail.com

Comments and Discussions