]> Creatis software - bbtk.git/commitdiff
Fix categ
authorjean-pierre roux <jean-pierre.roux@creatis.insa-lyon.fr>
Fri, 22 Jan 2010 16:32:29 +0000 (16:32 +0000)
committerjean-pierre roux <jean-pierre.roux@creatis.insa-lyon.fr>
Fri, 22 Jan 2010 16:32:29 +0000 (16:32 +0000)
packages/demo/bbs/appli/demoFiltering1.bbs
packages/wx/bbs/boxes/bbLayoutX4.bbs
packages/wxvtk/bbs/boxes/bbSimpleIsoSurfaceViewer.bbs

index a1f6ade3a3188c44577612d2ef53b347eda28ea1..215cf1defa0a345f0e4fc053ccb6b3f741831ccd 100644 (file)
@@ -1,7 +1,7 @@
 
 description "Basic segmentation and filtering of an image"
 author "jpr@creatis.insa-lyon.fr"
-category "demo"
+category "demo, filter"
 
 // 3 Slices, 2 volumes
 
index 5036ba70705138ddc8be3cb1edd3b0579bcaf27f..190ae413bcc40e9c27f63183ab3e900a798c58b6 100644 (file)
@@ -37,8 +37,8 @@ new LayoutSplit down
 
 new MultipleInputs m
  connect currentBox.BoxChange m.In1
- connect up.BoxChange     m.In2
- connect down.BoxChange   m.In3
+ connect up.BoxChange         m.In2
+ connect down.BoxChange       m.In3
   
  input  WinTitle  currentBox.WinTitle  "Title of the window (*)"
  input  WinHeight currentBox.WinHeight "Height of the window (*)"
index adf6942fd94aaef92b7d90d681220ca5ada81d16..7d617f3ea7f741d4db5e900db13c6df8e2f825f9 100644 (file)
@@ -20,7 +20,7 @@ define SimpleIsoSurfaceViewer wxvtk
  set surface.Title "Surface"
  set surface.Vertical 0
 
- connect viewer.Widget main.Widget1
+ connect viewer.Widget  main.Widget1
  connect surface.Widget main.Widget2 
 
  # WE NEED A MultipleInputs BOX TO CONNECT BOTH 
@@ -29,20 +29,20 @@ define SimpleIsoSurfaceViewer wxvtk
  new MultipleInputs refresh
 
   
- connect surface.Out viewer.In1
+ connect surface.Out       viewer.In1
  connect surface.BoxChange refresh.In1
- connect refresh.Out viewer.BoxExecute
+ connect refresh.Out       viewer.BoxExecute
 
  set main.Proportion 80
 
- input In surface.In "Input image"
- output Widget main.Widget "Widget"
- input WinDialog main.WinDialog "Dialog mode"
- input WinTitle main.WinTitle "Title of the window"
- input WinWidth main.WinWidth "Width of the window"
- input WinHeight main.WinHeight "Height of the window"
- input BoxExecute refresh.In2 "Execute the box"
+ input In         surface.In     "Input image"
+ input WinDialog  main.WinDialog "Dialog mode"
+ input WinTitle   main.WinTitle  "Title of the window"
+ input WinWidth   main.WinWidth  "Width of the window"
+ input WinHeight  main.WinHeight "Height of the window"
+ input BoxExecute refresh.In2    "Execute the box"
 
+ output Widget main.Widget "Widget"
  # EXECUTING THE COMPLEX BOX EXECUTES the main
  exec main
 endefine