Oblique illumination reconstructions #501
Draft
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds multi-aperture oblique illumination reconstructions to
waveorder.A single new parameter
illumination_sector_anglesenables these reconstructions, best described by example:illumination_sector_angles = Noneuses the old behavior---a single circular illumination apertureillumination_sector_angles = [(0, 45), (45, 90)]reconstructs from two sector-illumination channels, the first sector from 0-45 degrees and the second from 45-90 degrees.illumination_sector_angles = [(i * sector_angle, (i + 1) * sector_angle) for i in range(8)] + [(0, 360)]reconstructs from 8 sector-illumination channels and a final full-aperture channel.Below is a simulation of a sphere (first column) and simulated data acquired under different illumination orientation (second column). As expected, the reconstruction with a single full aperture (third column) is not as sharp as the reconstruction with all 9 channels (last column).
2025-10-24-multiaperture.mov
Trial reconstructions of real data to come...