BioImager  4.9.0
A .NET microscopy imaging application based on Bio library. Supports various microscopes by using imported libraries & GUI automation. Supports XInput game controllers to move stage, take images, run ImageJ macros on images or Bio C# scripts.
Loading...
Searching...
No Matches
setstagexy.py
1import Pyro4
2import sys
3stage = Pyro4.Proxy(sys.argv[1])
4x_axis = stage.axes["x"]
5y_axis = stage.axes["y"]
6x_axis.move_to(float(sys.argv[2]))
7y_axis.move_to(float(sys.argv[3]))
8stage._pyroRelease()
9print("OK")