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. In this example, Theia's TL1250P IQ lens ("TW90") data will be used. (Note: "TW90" is the serial number prefix for this lens model.)

import lensIQ
import lensIQ.defaultCalData

def app():
    # read the default lens data
    defaultData = lensIQ.defaultCalData.loadDefaultData("TW90")

    # initialize lensIQ
    IQ = lensIQ.lensIQ()
    IQ.loadData(defaultData)

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.

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 Theia Technologies

Contact information

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

Revision

v.1.2.32

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.2.32.tar.gz (22.8 kB view hashes)

Uploaded Source

Built Distribution

lensIQ-1.2.32-py3-none-any.whl (21.1 kB view hashes)

Uploaded Python 3

Supported by

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