www.pudn.com > motion_src.zip > IMotionDetector.cs


namespace motion 
{ 
	using System; 
	using System.Drawing; 
 
	///  
	/// IMotionDetector interface 
	///  
	public interface IMotionDetector 
	{ 
		///  
		/// Process new frame 
		///  
		void ProcessFrame(ref Bitmap image); 
 
		///  
		/// Reset detector to initial state 
		///  
		void Reset(); 
	} 
}