45 lines
1.7 KiB
Plaintext
45 lines
1.7 KiB
Plaintext
#wold be nice to print relative changes of the parameters
|
|
RANGE_OBJ = 1.0
|
|
STEP_OBJ = 0.1
|
|
RANGE_STIG = 10.0
|
|
STEP_STIG = 1.0
|
|
UPDATE_POSITION = True
|
|
AVERAGE = 1
|
|
SETTLING_TIME =0.5
|
|
width, height = eiger.getImageSize()
|
|
#ROI = Rectangle(width/3, height/3, width/3, height/3,)
|
|
#ROI = Rectangle(0, 0, width, height,)
|
|
ROI = Rectangle(200,100,256,256)#(x0,y0,delta_x(2**n), delta_y(2**n))
|
|
ROI = Rectangle(130,74,256,256)
|
|
|
|
|
|
initial_state = objective.read(),obj_stig_a.read(),obj_stig_b.read()
|
|
print "Initial state:" , initial_state
|
|
|
|
def apply_pos(pos):
|
|
objective.write(pos[0])
|
|
obj_stig_a.write(pos[1])
|
|
obj_stig_b.write(pos[2])
|
|
|
|
def show_roi():
|
|
global ROI
|
|
pn=show_panel(image)
|
|
ov=Overlays.Rect(Pen(Color.BLUE), Point(ROI.x,ROI.y),Dimension(ROI.width,ROI.height))
|
|
pn.clearOverlays()
|
|
ov.setMovable(True)
|
|
pn.addOverlay(ov)
|
|
show_roi()
|
|
|
|
|
|
|
|
#r=scan_focus(objective, RANGE_OBJ, STEP_OBJ, roi = ROI, average = AVERAGE, update_position = UPDATE_POSITION)
|
|
r=scan_focus(obj_stig_a, RANGE_STIG, STEP_STIG, roi = ROI, average = AVERAGE, update_position = UPDATE_POSITION)
|
|
#r=scan_focus(obj_stig_b, RANGE_STIG, STEP_STIG, roi = ROI, average = AVERAGE, update_position = UPDATE_POSITION)
|
|
#r=scan_focus(objective, RANGE_OBJ, STEP_OBJ, roi = ROI, average = AVERAGE, update_position = UPDATE_POSITION)
|
|
#r=scan_focus(obj_stig_a, RANGE_STIG, STEP_STIG, roi = ROI, average = AVERAGE, update_position = UPDATE_POSITION)
|
|
#r=scan_focus(obj_stig_b, RANGE_STIG, STEP_STIG, roi = ROI, average = AVERAGE, update_position = UPDATE_POSITION)
|
|
#r=scan_focus(objective, RANGE_OBJ, STEP_OBJ, roi = ROI, average = AVERAGE, update_position = UPDATE_POSITION)#
|
|
|
|
final_state = objective.read(),obj_stig_a.read(),obj_stig_b.read()
|
|
print "Final state:" , final_state
|