DM3 Import for Gatan Digital Micrograph

버전 1.5.0.0 (1.96 MB) 작성자: Robert McLeod
Imports Gatan .DM3 format files with tags (images, spectra, & spectral images) into a MATLAB struct.
다운로드 수: 2.5K
업데이트 날짜: 2013/1/8

라이선스 보기

This script acts to import files from Gatan's .DM3 file format, utilized for electron microscopy, into a MATLAB structure. The fields of the MATLAB structure can then be referenced with the dot-operator.

For example, one can load and display a file with the appropriate scaled axes in nanometers and electrons with the following example script:

dm3struct = DM3Import( 'RandomBrightfieldImage.dm3' );
N = length( dm3struct.image_data );
imagesc( (1:N).*dmstruct.xaxis.scale (1:N).*dmstruct.yaxis.scale, ...
dm3struct.image_data.*dm3struct.intensity.scale );

This script currently imports images, EELS spectra, and spectral images. Now imports annotations (text) written on the image as well.

This script was constructed largely by parsing example DM3 files with a hex editor. It uses regular expressions to find the tags that indicate the start points of the various fields within the files, and then strips the data. To the best of my knowledge there is not existing documentation on the actual object used to write DM3 format files so it is not practical to output to DM3 format.

인용 양식

Robert McLeod (2024). DM3 Import for Gatan Digital Micrograph (https://www.mathworks.com/matlabcentral/fileexchange/29351-dm3-import-for-gatan-digital-micrograph), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2010a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
도움

줌: Autoscaleit

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
버전 게시됨 릴리스 정보
1.5.0.0

Added examples of using DM3Import with a spectral image, and fixed some bugs relating to DM3 files from other instruments.

1.4.0.0

Added example of using a spectral image and fixed a couple of bugs related to DM3 files from other instruments.

1.3.0.0

Fixed bugs in the import of spectral images that had an interlacing problem.

Added support for importing microscope state in the form of tags for Hitachi TEMs.

Added support to import annotations written on the screen.

1.2.0.0

Added support for HAADF images (i.e. datatype '11' in GATAN's scheme) since a user asked for it. If anyone finds other bugs please e-mail me and I will fix them.

1.1.0.0

Update 02Dec2010: Now with examples, and some changes to import separate xaxis for individual spectra.

1.0.0.0