ARToolKit

class ARToolKit

ARToolKit is a software library for building Augmented Reality (AR) applications. These are applications that involve the overlay of virtual imagery on the real world. It was developed by Dr. Hirokazu Kato. Its ongoing development is being supported by the Human Interface Technology Laboratory (HIT Lab) at the University of Washington, HIT Lab NZ at the University of Canterbury, New Zealand, and ARToolworks, Inc, Seattle. It is available under a GPL license. It is also possible to negotiate other licenses with the copyright holders.

This class is a wrapper around the ARToolKit library.

Inheritance diagram

Inheritance diagram of ARToolKit

ARToolKit(ARToolKit const&) = default

Use ARToolKit::make() to create an ARToolKit.

void analyze(Texture *tex, bool do_flip_texture = true)

Analyzes the non-pad region of the specified texture. This causes all attached nodepaths to move. The parameter do_flip_texture is true by default, because Panda’s representation of textures is upside down from ARToolKit. If you already have a texture that’s upside-down, however, you should set it to false.

void attach_pattern(Filename const &pattern, NodePath path)

Associates the specified glyph with the specified NodePath. Each time you call analyze, ARToolKit will update the NodePath’s transform. If the node is not visible, its scale will be set to zero.

void detach_patterns(void)

Dissociates all patterns from all NodePaths.

static ARToolKit *make(NodePath camera, Filename const &paramfile, double markersize)

Create a new ARToolKit instance.

Camera must be the nodepath of a panda camera object. The panda camera’s field of view is initialized to match the field of view of the physical webcam. Each time you call analyze, all marker nodepaths will be moved into a position which is relative to this camera. The marker_size parameter indicates how large you printed the physical markers. You should use the same size units that you wish to use in the panda code.

void set_threshold(double n)

As part of its analysis, the ARToolKit occasionally converts images to black and white by thresholding them. The threshold is set to 0.5 by default, but you can tweak it here.