Changeset 4339
- Timestamp:
- 07/12/07 09:22:53 (6 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
experimental/components/image_display/trunk/image_display/image_display.py
r4125 r4339 109 109 """Takes care of initializing the ORB and bind the object""" 110 110 111 # remove __init__ for threading approach. thread cannot take input args? 112 def __init__(self, prnt_frame, uuid, label): 111 def __init__(self, uuid, label): 113 112 114 113 print uuid 115 # for __init__:116 #self.prnt_frame = prnt_frame117 # for no __init__:118 114 self.prnt_frame = app.frame 119 115 … … 139 135 140 136 def ORB_Init_fun(): 141 orb = ORB_Init( app,uuid, label)137 orb = ORB_Init(uuid, label) 142 138 143 139