plot#

PCCalibrationMovingScreen.plot(pattern_kwargs: dict | None = None, line_kwargs: dict | None = None, scatter_kwargs: dict | None = None, pc_kwargs: dict | None = None, return_figure: bool = False, **kwargs: dict) mfigure.Figure | None[source]#

A convenience method of three images, the first two with the patterns with points and lines annotated, and the third with the calibration results.

Parameters:
pattern_kwargs

Keyword arguments passed to matplotlib.axes.Axes.imshow().

line_kwargs

Keyword arguments passed to matplotlib.axes.Axes.axline().

scatter_kwargs

Keyword arguments passed to matplotlib.axes.Axes.scatter().

pc_kwargs

Keyword arguments to customize the PC marker; s and zorder are forwarded to get_default_projection_center_scatter_kwargs().

return_figure

Whether to return the figure, default is False.

**kwargs

Keyword arguments passed to matplotlib.pyplot.subplots().

Returns:
fig

Figure, returned if return_figure=True.