Skip to content
This repository has been archived by the owner on Jul 4, 2024. It is now read-only.
/ micrometa Public archive

Parsing of whole-brain microscopy metadata

License

Notifications You must be signed in to change notification settings

brainglobe/micrometa

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This project is no longer in development

Travis Coverage Status

micrometa

Reading of microscopy metadata

About

micrometa reads metadata from various whole-organ microscopes for use with BrainGlobe.

This is a work in progress, and currently the only metadata files supported are:

Parameters currently supported are:

  • Number of planes in the axial direction
  • Pixel sizes in x, y & z

To install

pip install micrometa

To use

from micrometa.micrometa import get_acquisition_metadata
metadata = get_acquisition_metadata("cellfinder_metadata.ini")
print(metadata.x_pixel_um)
print(metadata.y_pixel_um)
print(metadata.z_pixel_um)
print(metadata.num_planes)