Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
edyoshikun authored Nov 12, 2022
1 parent c5301f4 commit f7d36fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# M25 Acquisition Engine for Basler and FLIR Cameras
The M25 acquisiton engine is a C++ multithreaded program that controls the acquisition of the 25-plane camera array multifocus microscope (M25) for fast and simultanous 3D imaging. The engine captures simultaneously from 25 machine vision cameras (FLIR or Basler Ace) to run at >160FPS without loss of frames to capture fast and live 3D dynamics of biological organisms.

Check out our [journal_article]() and [napari plugin](https://github.com/SaraLab-Group/m25-napari) to see the capabities and applications of the engine.
Check out our [journal_article]()(coming soon) and [napari plugin](https://github.com/SaraLab-Group/m25-napari) to see the capabities and applications of the engine.

## Summary
The M25 acquisition engine is a multithreaded program that spawns individual read and write threads per camera to offload the data into disk. This program uses the Windows OS ` Windows SDK File Handler` library for rapid storage into NVMe SSD Raid 0 arrays. Using this library we can bypass the default read and write functions by bufferring with a pre-allocated RAM memory aligned to the file-system offsets. The NVMe drives are 512B sector aligned which allows us to do direct disk writing to known locations doing pointer arithmetic. We create individual acquisition threads for each camera and copy the sensor data into the sector aligned buffer. The read and write process is done dynamically by implementing the RAM ping-pong buffer that allows the writing directly to RAM and then writing to disk into a binary file. Once the acquisition is done, the binary file is converted to desired file format (i.e `.raw` or `.tif`).
Expand Down

0 comments on commit f7d36fb

Please sign in to comment.