![]() |
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.
|
Public Member Functions | |
| None | __init__ (self, _iChromeConnection conn, int laser_number) |
| typing.List[str] | get_status (self) |
| bool | get_is_on (self) |
| microscope.TriggerMode | trigger_mode (self) |
| microscope.TriggerType | trigger_type (self) |
| None | set_trigger (self, microscope.TriggerType ttype, microscope.TriggerMode tmode) |
Public Member Functions inherited from microscope.abc.LightSource | |
| float | power (self) |
| None | power (self, float power) |
| float | get_set_power (self) |
Public Member Functions inherited from microscope.abc.TriggerTargetMixin | |
| None | trigger (self) |
Public Member Functions inherited from microscope.abc.Device | |
| None | __del__ (self) |
| bool | get_is_enabled (self) |
| None | disable (self) |
| None | enable (self) |
| None | initialize (self) |
| None | shutdown (self) |
| None | add_setting (self, name, dtype, get_func, set_func, values, typing.Optional[typing.Callable[[], bool]] readonly=None) |
| get_setting (self, str name) | |
| get_all_settings (self) | |
| None | set_setting (self, str name, value) |
| describe_setting (self, str name) | |
| describe_settings (self) | |
| update_settings (self, incoming, bool init=False) | |
Protected Member Functions | |
| float | _do_get_power (self) |
| None | _do_set_power (self, float power) |
| None | _do_enable (self) |
| None | _do_disable (self) |
| None | _do_shutdown (self) |
| None | _do_trigger (self) |
Protected Member Functions inherited from microscope.abc.LightSource | |
Protected Member Functions inherited from microscope.abc.TriggerTargetMixin | |
Protected Member Functions inherited from microscope.abc.Device | |
Protected Attributes | |
| _conn = _iChromeLaserConnection(conn, laser_number) | |
Protected Attributes inherited from microscope.abc.LightSource | |
| float | _set_point = 0.0 |
Protected Attributes inherited from microscope.abc.Device | |
| dict | _settings = {} |
Additional Inherited Members | |
Public Attributes inherited from microscope.abc.Device | |
| bool | enabled = False |
Definition at line 170 of file toptica.py.
| None microscope.controllers.toptica._iChromeLaser.__init__ | ( | self, | |
| _iChromeConnection | conn, | ||
| int | laser_number ) |
Reimplemented from microscope.abc.LightSource.
Definition at line 171 of file toptica.py.
|
protected |
Do any device-specific work on disable. Subclasses should override this method rather than modify `disable`.
Reimplemented from microscope.abc.Device.
Definition at line 209 of file toptica.py.
|
protected |
Do any device specific work on enable. Subclasses should override this method, rather than modify `enable`.
Reimplemented from microscope.abc.Device.
Definition at line 206 of file toptica.py.
|
protected |
Internal function that actually returns the light source power.
Reimplemented from microscope.abc.LightSource.
Definition at line 200 of file toptica.py.
|
protected |
Internal function that actually sets the light source power. This function will be called by the `power` attribute setter after clipping the argument to the [0, 1] interval.
Reimplemented from microscope.abc.LightSource.
Definition at line 203 of file toptica.py.
|
protected |
Private method - actual shutdown of the device. Users should be calling :meth:`shutdown` and not this method. Concrete implementations should implement this method instead of `shutdown`.
Reimplemented from microscope.abc.Device.
Definition at line 212 of file toptica.py.
|
protected |
Actual trigger of the device. Classes implementing this interface should implement this method instead of `trigger`.
Reimplemented from microscope.abc.TriggerTargetMixin.
Definition at line 247 of file toptica.py.
| bool microscope.controllers.toptica._iChromeLaser.get_is_on | ( | self | ) |
Return True if the light source is currently able to produce light.
Reimplemented from microscope.abc.LightSource.
Definition at line 188 of file toptica.py.
| typing.List[str] microscope.controllers.toptica._iChromeLaser.get_status | ( | self | ) |
Query and return the light source status.
Reimplemented from microscope.abc.LightSource.
Definition at line 185 of file toptica.py.
| None microscope.controllers.toptica._iChromeLaser.set_trigger | ( | self, | |
| microscope.TriggerType | ttype, | ||
| microscope.TriggerMode | tmode ) |
Set device for a specific trigger.
Reimplemented from microscope.abc.TriggerTargetMixin.
Definition at line 226 of file toptica.py.
| microscope.TriggerMode microscope.controllers.toptica._iChromeLaser.trigger_mode | ( | self | ) |
Reimplemented from microscope.abc.TriggerTargetMixin.
Definition at line 216 of file toptica.py.
| microscope.TriggerType microscope.controllers.toptica._iChromeLaser.trigger_type | ( | self | ) |
Reimplemented from microscope.abc.TriggerTargetMixin.
Definition at line 220 of file toptica.py.
|
protected |
Definition at line 173 of file toptica.py.