csheaff / pa-tomography-xu-wang

Photoacoustic tomography as proposed by Xu and Wang in Python and Rust.
MIT License
15 stars 8 forks source link

Application algorithm #3

Closed Jaycee0602 closed 4 years ago

Jaycee0602 commented 5 years ago

Hello, I saw the algorithm "Universal back-projection algorithm for photoacoustic computed tomography" in a document, and then fortunately saw your code. But I can only do some simple modifications in it. Here is an article that uses this algorithm. I got the A-line signal mentioned in it. I want to ask you how to use the data obtained by the experiment and then use it. This algorithm finally produces an image. I am looking forward to hearing from you. Thank you. Non-contact Photoacoustic Tomography with a Laser Doppler Vibrometer.pdf

csheaff commented 5 years ago

An issue here is that the reconstruction algorithm in this repository is intended for a planar array, not a rotational PAT system as in your paper. My first thought is that one could restructure the looping over the detector position to account for a non-planar geometry.

You could add the subdetector scheme if you liked. You might want to check the paper to make sure that the formula for the reconstruction does not assume any sort of dependence on a planar array. I don't think it does, but it would be good to double check.

If you manage to get this working, it would be great to add it to this repository. Please consider submitting a pull request if you are successful.