Metadata-Version: 2.1
Name: openflexure-microscope-client
Version: 0.1.3
Summary: Python client code for the OpenFlexure Microscope
Home-page: https://gitlab.com/openflexure/openflexure-microscope-pyclient/
License: LGPL-3.0-or-later
Author: Richard Bowman
Author-email: richard.bowman@cantab.net
Requires-Python: >=3.6,<4.0
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: Pillow (>=7.0,<8.0)
Requires-Dist: numpy (>=1.17,<2.0)
Requires-Dist: requests (>=2.22,<3.0)
Requires-Dist: zeroconf (>=0.25,<0.26)
Description-Content-Type: text/markdown

# A Python client for the OpenFlexure Microscope.  

The [OpenFlexure Microscope] is most often controlled by two pieces of software - the [OpenFlexure Microscope Server], which is written in Python and runs on the embedded Raspberry Pi, and [OpenFlexure eV][eV] which is a graphical interface written in Electron, that can be run either on the Raspberry Pi, or on another computer via a network connection.  However, if you want to write your own scripts to perform particular experiments or protocols, it's useful not to have to embed these in eV or package them up as plugins.  This library exists to make it easy to control your microscope from a simple Python script that can run either on the Raspberry Pi, or over the network.  I particularly like to use it from a [Jupyter] notebook on my laptop, because it allows me to plot graphs and display images as I go.

## Installation

This module can be installed with ``pip install openflexure-microscope-client``, or by cloning the repository and running ``poetry install``.

## Usage

### Connect to your microscope
You can connect to the microscope either by specifying a hostname or IP address, or using mDNS.  If your network is relatively simple, and if you can see your microscope in the "nearby devices" section of [eV], then mDNS is a zero-faff way of connecting to your microscope:
```python
import openflexure_microscope_client as ofm_client
microscope = ofm_client.find_first_microscope()
```
If your network is more complicated, or you know the address of your microscope, you can connect using the hostname or IP address.  By default, your microscope will declare itself as ``microscope.local`` though this also relies on mDNS so if the method above doesn't work, ``microscope.local`` may also not work.  
```python
microscope = ofm_client.MicroscopeClient("example.host.name")
```

### Check the connection
Usually, I run a few commands to check my microscope is working properly:
```python
pos = microscope.position
starting_pos = pos.copy()
pos['x'] += 100
microscope.move(pos)
assert microscope.position == pos
pos['x'] -= 100
microscope.move(pos)
assert microscope.position == starting_pos

# Check the microscope will autofocus
ret = microscope.autofocus()

# Acquire an image for sanity-checking too
image = microscope.grab_image()
f, ax = plt.subplots(1,1)
ax.imshow(np.array(image))
#print(image.metadata)
print("Active microscope extensions")
for k in microscope.extensions.keys():
    print(k)
```
After running this block, you should see a list of extensions that are currently active, and a picture taken by the microscope.  Given that we just autofocused, this image should be nice and sharp!

### Basic commands
There are a few basic commands built in as methods of the ``MicroscopeClient`` object:
  * ``position`` is a property that returns a dictionary with ``'x'``, ``'y'``, and ``'z'`` components, giving the position of the stage.
  * ``get_position_array()`` returns a 3-element ``numpy`` array with the same position in it.
  * ``move(position)`` accepts either a 3-element array or a dictionary as returned by ``position``, and performs an absolute move
  * ``move_rel(displacement)`` performs a relative move (i.e. supplying 0 will not move that axis)
  * ``capture_image()`` will take a new image from the camera and return it as a ``PIL`` image object
  * ``grab_image()`` will return the next image the camera sends in its MJPEG preview stream (i.e. it's quicker but lower quality than ``capture_image()``)
  * ``grab_image_array()`` returns the image as a ``numpy`` array.
  * ``autofocus()`` runs the fast autofocus routine, just like clicking the "autofocus" button in [eV]

### Extensions
To run methods provided by the microscope extensions, you can use the ``extensions`` dictionary, to make ``get`` or ``post`` requests:
```python
microscope.extensions["your.extension.name"]["link_name"].get()
microscope.extensions["your.extension.name"]["link_name"].post_json({"key":"value"})
```

[OpenFlexure Microscope]: https://openflexure.org/projects/microscope/
[eV]: https://gitlab.com/openflexure/openflexure-microscope-jsclient/
[OpenFlexure Microscope Server]: https://gitlab.com/openflexure/openflexure-microscope-server/
[Jupyter]: https://jupyter.org/
