]> Creatis software - bbtk.git/blob - packages/std/bbs/boxes/bbLoadHola.bbs
99605e2d11e03e02daa5a319f1ca8cb36b811508
[bbtk.git] / packages / std / bbs / boxes / bbLoadHola.bbs
1 load vtk
2 include util/boxes/bbPrependPackageDataPath
3
4 define LoadHola
5   description "Loads the image 'hola.mhd'" 
6   author "laurent.guigues at creatis.insa-lyon.fr"
7   category "image;misc"
8
9   new MetaImageReader reader
10   new PrependPackageDataPath ppdp
11   set ppdp.In "hola.mhd"
12   set ppdp.Package "util"
13   connect ppdp.Out reader.In
14  
15   output Out reader.Out "The image"
16   output FileName ppdp.Out "The path to the image loaded"
17
18 endefine