Image processor examples

By using the ViCANdo SDK, it is possible to write your own customized overlay plugins for the video presenter in ViCANdo.

The “image processor API” allows you to draw polygons and points on top of video frame.

_images/video_presenter_overlays.jpg

The API for the examples are vxvideoframedata.h, vximageprocessor.h. The detailed implementation can be found inside SDK package under folder examplesimage_processors

Lane detector

This example shows you how to detect lane using ViCANdo SDK. The source code is included inside the ViCANdo SDK package.

This type of plugin is added on the video presenter.

Plate detector

This example shows you how to detect the vehicle plate using ViCANdo SDK. The source code is included inside the ViCANdo SDK package.

This type of plugin is added on the video presenter.

Vehicle detector

This example shows you how to detect other vehicle in the traffic using ViCANdo SDK. The source code is included inside the ViCANdo SDK package.

This type of plugin is added on the video presenter.

Blur filter

This example shows you how to pre-process the video frame and save the processed video to session/disk. It uses the “image pre-processor API”.

This type of plugin is added on the video source.