Skip to main content

Theia MCR motor control conversions and calculations

Project description

Theia Technologies lens IQ(TM)

Theia Technologies offers a MCR600 motor control board for interfacing with Theia's motorized lenses. This board controls focus, zoom, iris, and IRC filter motors. It can be connected to a host computer by USB, UART, or I2C connection. This lensIQ module allows the user to easily convert from engineering units (meters, degrees) to motor steps applicable to Theia's motorized lenses. For sending these motor steps to the control board via the virtual com port, install the additional package TheiaMCR (TheiaMCR on Github)

Features

python Engineering units can be converted to motor steps and vice versa. The calculations use the design data for the lens but it is possible to load a specific lens calibration data file as well. Some conversion examples are:

  • field of view to zoom motor steps
  • object distance to focus motor steps
  • zoom motor steps to focal length
  • F/# or numeric aperture value to iris steps
  • calculate depth of field at the focal length and object distance And there are other calculations as well. Refer to the wiki page for more detailed descriptions of the functions.

Quick start

The software module can be loaded into Python using pip:
pip install lensIQ
Once installed, it is required to initialize the class before using any functions. This is done by importing and then loading the default lens data.

import lensIQ

def app():
    # initialize lensIQ
    IQ = lensIQ.lensIQ()

    # read the default lens data
    success = lensIQ.loadDataFile(JSON_formatted_data)

After initializing it is possible to use the functions to convert from engineering units to motor steps and back. The zoom motor step can be calculated from a requested focal length. And the focus motor step can be calcualted from a requested object distance at that set focal length.

    # calculate zoom step for focal length 15mm
    FL = 15
    zoomStep, err = IQ.FL2ZoomStep(FL)

    # calculate the best focus step for zoom 15mm and 10m object distance
    objectDist = 10
    focusStep, err = IQ.OD2FocusStep(objectDist, zoomStep)

Class variables and constants

There are constants for error/results values returned from the functions. More can be found on the wiki page.

The engValues variable is where the results of calculations and motor step positions are stored. It is a list with format:

        {
            'tsLatest': (timestamp value), 
            (type): 
            {
                'value': (number), 
                'min': (number), 
                'max': (number), 
                'ts': (timestamp)
            }
        }
  • 'tsLatest' is the integer id for the latest update after a calculation set. Each configuration (see below) of the lens has a local 'ts' that can be compared to see if the configuration is potentially out of date. The 'ts' value for the engineering type ('FOV', 'AOV', etc) should be equal or greater than the zoom, focus, or iris ('irisStep' etc) motor 'ts' value depending on which of these three motor step positions affect the engineering value.
  • 'type' includes ['AOV', 'FOV', 'DOF', 'FL', 'OD', 'FNum', 'NA', 'zoomStep', 'focusStep', 'irisStep']. Each type has 'value', 'min', 'max', and 'ts'. 'min' and 'max' may not always make sense (zoomStep for instance).
  • Object distance type 'OD' can be string value 'NA (near)' or 'NA (far)' as well as float value of the set object distance.
  • Depth of field type 'DOFMin' and 'DOFMax' are the minimum and maximum object distances that are in the depth of field.
  • Types 'zoomStep', 'focusStep', and 'irisStep' are the current motor step positions. These are used for the engineering unit calculations.

Logging

There are logging commands in the module using Python's logging libray. These are set by default to log WARNING and higher levels. To see other log prints, initialize the class with IQ = lensIQ.lensIQ(degubLog=True) or manually set the logging level with lensIQ.log.setLevel(logging.INFO).

Camera back focal length calibration

Due to tolerances in the lens mount surface to image sensor (the back focal length or BFL), the focus step needs to be adjusted for the exact camera being used. This module includes functions to set this BFL calibration. See Theia's application note AN004 for more information on this procedure.

Functions that set or get the focus motor position will used this BFL correction value. Once the BFL correction curve is calculated the function BFLCorrection(self, FL:float, OD:float=1000000) -> int will calculate the focus step adjustment for any focal length. This is then passed to the function that sets or gets the focus motor position.

License

Theia Technologies proprietary license Copyright 2023-2025 Theia Technologies

Contact information

For more information contact: Mark Peterson at Theia Technologies mpeterson@theiatech.com

Revision

v.1.6.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lensiq-1.6.3.tar.gz (19.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

lensiq-1.6.3-py3-none-any.whl (17.8 kB view details)

Uploaded Python 3

File details

Details for the file lensiq-1.6.3.tar.gz.

File metadata

  • Download URL: lensiq-1.6.3.tar.gz
  • Upload date:
  • Size: 19.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for lensiq-1.6.3.tar.gz
Algorithm Hash digest
SHA256 6df979843a7b2255b487797fce2dcf9b60195622632798599528ce8f529effda
MD5 55f96abcfda0288532ed7c6a8165bef8
BLAKE2b-256 7bc2fa1b4a6ab6bc403344976ab4d306ee31a9ff20b45b271db9e206b178a3c0

See more details on using hashes here.

File details

Details for the file lensiq-1.6.3-py3-none-any.whl.

File metadata

  • Download URL: lensiq-1.6.3-py3-none-any.whl
  • Upload date:
  • Size: 17.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for lensiq-1.6.3-py3-none-any.whl
Algorithm Hash digest
SHA256 7dc9374b0f302659a4f932be6ee060de32705776be5f3d42b5eedacce6c523ac
MD5 2c96c1e2c4307d0a40ca435e4b83e2db
BLAKE2b-256 3141f1693460607dc703a274e4c825ba0e875f118c87b07de246d60df90a051d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page