Beispiel #1
0
 def autoSkeleton(menuitem, name, microstructure, x_periodicity,
                  y_periodicity, maxscale, minscale, units, threshold):
     # Run the actual callback in the main namespace, so that it can
     # use menu and registeredclass names trivially.
     prog = progress.getProgress(menuitem.name, progress.DEFINITE)
     utils.OOFrun(_autoSkeletonMain, prog, name, microstructure,
                  x_periodicity, y_periodicity, False, maxscale, minscale,
                  units, threshold)
     prog.finish()
Beispiel #2
0
 def autoSkeleton(menuitem, name, microstructure, left_right_periodicity,
                  top_bottom_periodicity, front_back_periodicity, maxscale,
                  minscale, units, threshold):
     # Run the actual callback in the main namespace, so that it can
     # use menu and registeredclass names trivially.
     prog = progress.getProgress(menuitem.name, progress.DEFINITE)
     utils.OOFrun(_autoSkeletonMain, prog, name, microstructure,
                  left_right_periodicity, top_bottom_periodicity,
                  front_back_periodicity, maxscale, minscale, units,
                  threshold)
Beispiel #3
0
 def autoSkeleton(menuitem, name, microstructure, left_right_periodicity,
                  top_bottom_periodicity, maxscale, minscale, units,
                  threshold):
     # Run the actual callback in the main namespace, so that it can
     # use menu and registeredclass names trivially.
     ## TODO: Why is the progress bar title showing up as "Thread-XX"?
     prog = progress.getProgress(menuitem.name, progress.DEFINITE)
     utils.OOFrun(_autoSkeletonMain, prog, name, microstructure,
                  left_right_periodicity, top_bottom_periodicity, False,
                  maxscale, minscale, units, threshold)