Project

General

Profile

Actions

Ceta camera support » History » Revision 3

« Previous | Revision 3/6 (diff) | Next »
Anchi Cheng, 01/05/2018 02:55 PM


Ceta camera support

Installation

Installation instruction is the same as Eagle, just replace the class name TIA_Eagle to TIA_Ceta

Testing with pyscope

In python command

from pyscope import tia
g = tia.TIA_Ceta()
g.setExposureTime(1000)
g.getImage()

You should expect these to run without error. The getImage() command should give a 2D numpy array like

array([[1000, 3400, 2300, ..., 1000,1200,3000],
         [1000, 3400, 2300, ..., 1000,1200,3000],
         [1000, 3400, 2300, ..., 1000,1200,3000],
         ...,
         [1000, 3400, 2300, ..., 1000,1200,3000],
         [1000, 3400, 2300, ..., 1000,1200,3000],
         [1000, 3400, 2300, ..., 1000,1200,3000],dtype=int16)

The number and dtype depends on the camera.

a.shape command should give a tuple of the camera dimension matching your camera.
For example, (4096,4096)

If you use python shell to do this test, some of the error will cause the shell window to close immediately. Use Python IDLE instead in that case

Using Ceta camera in Leginon

Leginon does not handle Gain/Dark correction for Ceta camera. It will not use Leginon-collected references even if you acquire them as it will make images worse.

Follow FEI's instruction in obtaining Gain/Dark References in the scope user interface.

Take an single exposure first in its Reference Manager Tab to make sure the intensity range is adequate.

Updated by Anchi Cheng over 6 years ago · 3 revisions