-
Notifications
You must be signed in to change notification settings - Fork 50
Description
Just a couple of fixes needed with the documents:
-
The equation for peak=1 at the end does not seem to match the equation in the code. link
-
No PSF is seen in Block 7 and 8. Is this normal? link
-
Generally I would recommend using
radius = diameter / 2
in the examples rather than writing10
and5
within the equations. It would make following things much easier. In fact, I would suggest not using any values in the calls, such aswf.focus(100)
. This would be way easier to follow:wf.focus(efl)
. -
In Block 1, the comment says "10 waves of defocus", though the code seems to say 15. link
-
Is padding necessary in Block 4? link
-
The link at the end of Grids section is broken. link
-
While not a fix, a tutorial about degradations like jitter and smear would be appreciated. I feel like there is so much more in the library that is buried in the API description. :)