
This chapter shows how to use a project wizard to create a frame filter module. A frame filter module can be loaded by other IC Imaging Control applications.
First of all, start Visual Studio 2003. If the "Start Page" is shown, click on the button "New Project". Otherwise, select File -> New -> Project from Visual Studio's menu.
The following dialog is shown:

Select the icon called IC Frame Filter Module. Enter a valid project name into the Name input field e.g. MyFilterModule. - this will be the name of the resulting FTF module file. Then, click the OK button. Now the project properties can be adjusted:

The Frame Filter Module Wizards adds a Frame Filter class to the project. The input fields are nearly the same as in the Frame Filter Class Wizard
////////////////////////////////////////////////////////////////////////// // This method is called by the framework when the live video is started. ////////////////////////////////////////////////////////////////////////// void CMyFilter::notifyStart( const FrameTypeInfo& in_type, const FrameTypeInfo& out_type ) { m_bLiveVideoRunning = true; } ////////////////////////////////////////////////////////////////////////// // This method is called by the framework when the live video is stopped. ////////////////////////////////////////////////////////////////////////// void CMyFilter::notifyStop() { m_bLiveVideoRunning = false; }
Once you have followed all of the above steps, click on the Finish button. Now the wizard creates the class.