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 called
int main()
{
// send string "hello world" to the standard
// output stream cout.
vcl_cout << "Hello world/n";
// Must return something from main
return 0;
}
|
vxl/TargetJr环境用ANSI C++编写,为视觉算法提供模块化和可移植平台。vxl是TargetJr核心功能的轻量级版本,是遵循严格规则设计的视觉库集合,可单独或组合使用,其库分为4层,还给出了使用vxl打印“Hello world”的程序示例。
851

被折叠的 条评论
为什么被折叠?



