Tools
hoptree.txt
Associated article: WiT, Visual Programming, and Hierarchical Trees
Tags: Tools Parallel
Published source code accompanying the article by Frank Hoewing in which he discusses WiT--a visual-programming package from Logical Vision originally designed for developing image-processing algorithms and applications. Frank uses it to create HopTree, a Visual Basic app that recursively scans a file and creates a tree view of the hierarchical operators used. Also see HOPTREE.ZIP.
WiT, Visual Programming, and Hierachical Trees
by Frank Hoewing
Listing One
image = rdObj("saturn");
limit = 10;
image2 = image;
for(i=0; i<limit; i++)
image2 = lopass2D(image2, 9, 9);
image = aluOp(image, image2, "-");
display(image, "hipass&...


