Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove spline smoothing focus #621

Merged
merged 13 commits into from
Sep 24, 2018
4 changes: 0 additions & 4 deletions pocs/camera/camera.py
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,6 @@ def autofocus(self,
merit_function='vollath_F4',
merit_function_kwargs={},
mask_dilations=None,
spline_smoothing=None,
coarse=False,
plots=True,
blocking=False,
Expand Down Expand Up @@ -334,8 +333,6 @@ def autofocus(self,
keyword arguments for the merit function.
mask_dilations (int, optional): Number of iterations of dilation to perform on the
saturated pixel mask (determine size of masked regions), default 10
spline_smoothing (float, optional): smoothing parameter for the spline fitting to
the autofocus data, 0.0 to 1.0, smaller values mean *less* smoothing, default 0.4
coarse (bool, optional): Whether to begin with coarse focusing,
default False
plots (bool, optional: Whether to write focus plots to images folder,
Expand All @@ -359,7 +356,6 @@ def autofocus(self,
merit_function=merit_function,
merit_function_kwargs=merit_function_kwargs,
mask_dilations=mask_dilations,
spline_smoothing=spline_smoothing,
coarse=coarse,
plots=plots,
blocking=blocking,
Expand Down
Loading