|
Qudi
|
This interface is used to manage and visualize a simple camera. More...


Public Member Functions | |
| def | get_name (self) |
| Retrieve an identifier of the camera that the GUI can print. More... | |
| def | get_size (self) |
| Retrieve size of the image in pixel. More... | |
| def | support_live_acquisition (self) |
| Return whether or not the camera can take care of live acquisition. More... | |
| def | start_live_acquisition (self) |
| Start a continuous acquisition. More... | |
| def | start_single_acquisition (self) |
| Start a single acquisition. More... | |
| def | stop_acquisition (self) |
| Stop/abort live or single acquisition. More... | |
| def | get_acquired_data (self) |
| Return an array of last acquired image. More... | |
| def | set_exposure (self, exposure) |
| Set the exposure time in seconds. More... | |
| def | get_exposure (self) |
| Get the exposure time in seconds. More... | |
| def | set_gain (self, gain) |
| Set the gain. More... | |
| def | get_gain (self) |
| Get the gain. More... | |
| def | get_ready_state (self) |
| Is the camera ready for an acquisition ? More... | |
Public Member Functions inherited from core.module.ModuleMeta | |
| def | __new__ (cls, name, bases, attrs) |
| Collect declared Connectors, ConfigOptions and StatusVars into dictionaries. More... | |
This interface is used to manage and visualize a simple camera.
| def camera_interface.CameraInterface.get_acquired_data | ( | self | ) |
Return an array of last acquired image.
Each pixel might be a float, integer or sub pixels
| def camera_interface.CameraInterface.get_exposure | ( | self | ) |
Get the exposure time in seconds.
| def camera_interface.CameraInterface.get_gain | ( | self | ) |
Get the gain.
| def camera_interface.CameraInterface.get_name | ( | self | ) |
Retrieve an identifier of the camera that the GUI can print.
| def camera_interface.CameraInterface.get_ready_state | ( | self | ) |
Is the camera ready for an acquisition ?
| def camera_interface.CameraInterface.get_size | ( | self | ) |
Retrieve size of the image in pixel.
| def camera_interface.CameraInterface.set_exposure | ( | self, | |
| exposure | |||
| ) |
Set the exposure time in seconds.
| float | time: desired new exposure time |
| def camera_interface.CameraInterface.set_gain | ( | self, | |
| gain | |||
| ) |
Set the gain.
| float | gain: desired new gain |
| def camera_interface.CameraInterface.start_live_acquisition | ( | self | ) |
Start a continuous acquisition.
| def camera_interface.CameraInterface.start_single_acquisition | ( | self | ) |
Start a single acquisition.
| def camera_interface.CameraInterface.stop_acquisition | ( | self | ) |
Stop/abort live or single acquisition.
| def camera_interface.CameraInterface.support_live_acquisition | ( | self | ) |
Return whether or not the camera can take care of live acquisition.
1.8.13