Strange dimension cameras » History » Version 2
Jim Pulokas, 11/07/2012 10:52 AM
1 | 2 | Jim Pulokas | _NOTE AS OF r17234: configure width and height of camera in instruments.cfg rather than editing python code as described below. Please modify instructions below upon final release_ |
---|---|---|---|
2 | |||
3 | 1 | Anchi Cheng | Some Tietz camera dimensions are slightly larger than a standard size, for example, 2084 x 2084 instead of the standard 2048 x 2048. Some software will have trouble dealing with these dimensions. It is recommended to force the camera to the lower standard size (some multiple of 2^n). Modify the function that gets camera dimension in tietz.py, gatan.py, or tia.py depending on which camera you are using. |
4 | |||
5 | * Go to C:\Python25\Lib\site-packages\pyScope\ |
||
6 | |||
7 | * Edit tietz.py, gatan.py, or tia.py with a plain text editor |
||
8 | |||
9 | |||
10 | * Find the function "getCameraSize" and replace its contents to force it to return a "hard coded" size. For example: |
||
11 | |||
12 | <pre> def getCameraSize(self): |
||
13 | return {'x': 2048, 'y': 2048}</pre> |