introduction to vxl and Target

来源:互联网 发布:淘宝奢侈品护理 可靠吗 编辑:程序博客网 时间:2024/05/16 00:40

The vxl/TargetJr environment is written in ANSI C++ and provides a modular and portable platform for vision algorithms.

vxl was created as a `lightweight' version of the core functionality of TargetJr.

vxl is in the first place a collection of vision libraries (hence the name vxl), designed following strict, consistent rules. These libraries can be used either individually (with minimal interdependencies) or in combination with each other.

The libraries are divided into 4 layers: `elementary' libraries (layer 1), which are stand-alone (don't use other layer 1 or layer 2 libraries), `application' libraries (layer 2), the compiler compatibility layer (layer 0), and the 3rd party libraries.

Target

vxl

program:

Here's one to print "Hello world" using vxl:

 
// Include standard C++ input/output library#include // main is the first function to be calledint main(){  // send string "hello world" to the standard  // output stream cout.  vcl_cout << "Hello world/n";  // Must return something from main  return 0;}