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

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.4.tar.gz (19.2 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.4-py3-none-any.whl (17.8 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for lensiq-1.6.4.tar.gz
Algorithm Hash digest
SHA256 361cda910360a64f9bf4cb7e2e00ba62a0ca60e4e7cf7af883de4873fd70058e
MD5 1a275bbd5a589857ba95182dd6f7cbef
BLAKE2b-256 8507926d07f5e941f36f633003eaa51a17faaae236f745abd85a12b055f84612

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for lensiq-1.6.4-py3-none-any.whl
Algorithm Hash digest
SHA256 bfa694c17fc27256c0e49017fa57c0423de9d8f253f48c1bbdfcfb74b8337e64
MD5 61da68ae523071f9fe1c11e6f759e861
BLAKE2b-256 29bcbc83f5323539e1de19db55e38e75d070c6a011f847f49f1295c189e0dc33

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