Metadata-Version: 2.4
Name: caqtus-devices-imaging-source-dmk33gr0134
Version: 1.10.0
Summary: Contains the caqtus device extension for the Imaging Source camera DMK 33GR0134.
Author-email: light-scattering-io <lecaqtus66@gmail.com>
License: Copyright 2024 Université Paris-Saclay
        
        Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
License-File: license.md
Requires-Python: >=3.12
Requires-Dist: caqtus-suite>=6.18.1
Requires-Dist: pyside6!=6.8.1.1,>=6.8.1
Description-Content-Type: text/markdown

Readme
======

Installation
------------

The following python package must be installed from PyPI:
`caqtus-devices-imaging-source-dmk33gr0134`.

In addition, to use this package to talk to a camera, the library tisgrabber must be
installed.
The library can be downloaded from the Imaging Source website.
In the [download page](https://www.theimagingsource.com/en-us/support/download/),
section SDK, install the IC Imaging Control C Library if you are using Windows.
Untested on other platforms.

Usage
-----

The package provides the `caqtus_devices.imaging_source.imaging_source_extension` that
can be registered with the
[
`caqtus.extension.Experiment.register_device_extension`](https://caqtus.readthedocs.io/en/latest/_autosummary/caqtus.extension.Experiment.html#caqtus.extension.Experiment.register_device_extension)
method.

```python
from caqtus.extension import Experiment
from caqtus_devices.cameras import imaging_source_dmk33gr0134

my_experiment = Experiment(...)
my_experiment.register_device_extension(imaging_source_dmk33gr0134.extension)
```