| IVideoIndexerCallbacksProcessFrame Method |
Called for each frame. Source unaltered frame from the video
Note that implementing this function will slow down the indexing process significantly
The calback gets all image data for the frame and can be used to either alter the iumage
or to do analysis to determine if the frame should be captured to fast video cataloger.
Namespace: VideoCatalogerAssembly: VideoCataloger (in VideoCataloger.exe) Version: 8.0.9040.34617 (8.0.0.0)
Syntax bool ProcessFrame(
int frame,
double sample_time,
ref Bitmap image
)
Parameters
- frame Int32
- Frame number of the video frame. zero is the first frame.
- sample_time Double
- Time of the frame in seconds from the start of the video.
- image Bitmap
- Bitmap with all image data of the frame.
Return Value
BooleanReturn true if the frame should be stored in the catalog.
See Also