![]() |
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 | |
| __init__ (self, **kwargs) | |
| typing.List[str] | get_status (self) |
| bool | get_is_on (self) |
| float | power (self) |
| None | power (self, float power) |
| float | get_set_power (self) |
Public Member Functions inherited from microscope.abc.TriggerTargetMixin | |
| microscope.TriggerMode | trigger_mode (self) |
| microscope.TriggerType | trigger_type (self) |
| None | set_trigger (self, microscope.TriggerType ttype, microscope.TriggerMode tmode) |
| 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) |
Protected Member Functions inherited from microscope.abc.TriggerTargetMixin | |
| None | _do_trigger (self) |
Protected Member Functions inherited from microscope.abc.Device | |
| _do_disable (self) | |
| _do_enable (self) | |
| None | _do_shutdown (self) |
Protected Attributes | |
| 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 |
Light source such as lasers or LEDs. Light sources often, possibly always, only support the `TriggerMode.BULB`. In this context, the trigger type changes what happens when `enable` is called. `TriggerType.SOFTWARE` means that `enable` will make the device emit light immediately, and disable will make the device stop emit light. `TriggerType.HIGH` or `TriggerType.LOW` means that `enable` will set and unset the laser such that it only emits light while receiving a high or low TTL, or digital, input signal.
| microscope.abc.LightSource.__init__ | ( | self, | |
| ** | kwargs ) |
Reimplemented from microscope.abc.Device.
Definition at line 1201 of file abc.py.
|
protected |
Internal function that actually returns the light source power.
Reimplemented in microscope.controllers.coolled._CoolLEDChannel, microscope.controllers.lumencor._SpectraIIILightChannel, microscope.controllers.toptica._iChromeLaser, microscope.controllers.zaber._ZaberLED, microscope.lights.cobolt.CoboltLaser, microscope.lights.deepstar.DeepstarLaser, microscope.lights.obis.ObisLaser, microscope.lights.sapphire.SapphireLaser, microscope.lights.toptica.TopticaiBeam, and microscope.simulators.SimulatedLightSource.
Definition at line 1217 of file abc.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 in microscope.controllers.coolled._CoolLEDChannel, microscope.controllers.lumencor._SpectraIIILightChannel, microscope.controllers.toptica._iChromeLaser, microscope.controllers.zaber._ZaberLED, microscope.lights.cobolt.CoboltLaser, microscope.lights.deepstar.DeepstarLaser, microscope.lights.obis.ObisLaser, microscope.lights.sapphire.SapphireLaser, microscope.lights.toptica.TopticaiBeam, and microscope.simulators.SimulatedLightSource.
Definition at line 1222 of file abc.py.
| bool microscope.abc.LightSource.get_is_on | ( | self | ) |
Return True if the light source is currently able to produce light.
Reimplemented in microscope.controllers.coolled._CoolLEDChannel, microscope.controllers.lumencor._SpectraIIILightChannel, microscope.controllers.toptica._iChromeLaser, microscope.controllers.zaber._ZaberLED, microscope.lights.cobolt.CoboltLaser, microscope.lights.deepstar.DeepstarLaser, microscope.lights.obis.ObisLaser, microscope.lights.sapphire.SapphireLaser, microscope.lights.toptica.TopticaiBeam, and microscope.simulators.SimulatedLightSource.
Definition at line 1212 of file abc.py.
| float microscope.abc.LightSource.get_set_power | ( | self | ) |
| typing.List[str] microscope.abc.LightSource.get_status | ( | self | ) |
Query and return the light source status.
Reimplemented in microscope.controllers.coolled._CoolLEDChannel, microscope.controllers.lumencor._SpectraIIILightChannel, microscope.controllers.toptica._iChromeLaser, microscope.controllers.zaber._ZaberLED, microscope.lights.cobolt.CoboltLaser, microscope.lights.deepstar.DeepstarLaser, microscope.lights.obis.ObisLaser, microscope.lights.sapphire.SapphireLaser, microscope.lights.toptica.TopticaiBeam, and microscope.simulators.SimulatedLightSource.
Definition at line 1206 of file abc.py.
| float microscope.abc.LightSource.power | ( | self | ) |
| None microscope.abc.LightSource.power | ( | self, | |
| float | power ) |
Light source power in the [0, 1] interval. The power value will be clipped to [0, 1] interval.
Definition at line 1237 of file abc.py.