We've created a few plugins for ispy to add additional functionality like numberplate (license plate) recognition, facial recognition and more.
Installation
Installing a plugin is easy, just unzip the files below into the "C:\Program Files (x86)\iSpy\iSpy\Plugins" directory and restart iSpy.
The plugins add additional features to the alert type drop-down menu on the edit
camera tab. Click the "..." button next to this to configure the plugins:
Creating your own plugin is easy! Download our
demo project to get started (visual studio 2010
required). This project adds a new alert type into the list ("Demo"), draws a diagonal line on the video and triggers an alert if you set the width of the line to 2px. To install it, compile the project and then just drop the demo.dll file into the iSpy plugins directory. If you create a useful or just plain cool plugin please
send it to us to share it with other iSpy users.
Plugins that perform complicated analysis should process in their own thread and update the UI asynchronously. See the source for the face recognition or numberplate recognition project for an example.
Important: iSpy uses reflection to load in plugins. Your plugin will need to
have a "Main" class in a "Plugins" namespace - see the demo project for an
example.