|
|
|
Contents: VisualRoutinesStateNode, SketchGUI tool
Here is a sample program showing how to set up a visual routines behavior:
#include "Behaviors/StateMachine.h" using namespace DualCoding; $nodeclass DstBehavior : VisualRoutinesStateNode : doStart { NEW_SKETCH(camFrame, uchar, sketchFromSeg()); NEW_SHAPEVEC(blob_shapes, BlobData, BlobData::extractBlobs(camFrame,100)); } REGISTER_BEHAVIOR(DstBehavior); |
The NEW_SKETCH macro imports a color-segmented camera image as a "sketch". The NEW_SHAPEVEC command creates a vector of blob shapes, where the blobs are extracted from the color-segmented camera image. This behavior does not produce any printed output. But we can use the SketchGUI tool to examine the results of the computation.
Explore More:
Using SketchGUI
|
|
|
|