1
2
3
4
5
6
7
8
9
10
11
12
13
14 import VisionEgg, string
15 __version__ = VisionEgg.release_name
16 __cvs__ = string.split('$Revision$')[1]
17 __date__ = string.join(string.split('$Date$')[1:3], ' ')
18 __author__ = 'Andrew Straw <astraw@users.sourceforge.net>'
19
20 import sys, os
21 import Tkinter
22 import VisionEgg.PyroApps.EPhysGUIUtils as client_utils
23
26
30
32 title = "Grid for 3D calibration"
33 - def __init__(self, master=None, suppress_go_buttons=0,**kw):
42
44 """Used as basename for saving parameter files"""
45 return "grid"
46
49
51 pass
52 if self.connected:
53 self.meta_controller.set_parameters( self.meta_params )
54
57
58 if __name__=='__main__':
59 frame = GridControlFrame()
60 frame.pack(expand=1,fill=Tkinter.BOTH)
61 frame.winfo_toplevel().title("%s"%(os.path.basename(os.path.splitext(sys.argv[0])[0]),))
62 frame.mainloop()
63