CentralCamera.noise#

property CentralCamera.noise: float | None[source]#

Set/Get projection noise (base method)

Returns:

standard deviation of noise added to projected image plane points

Return type:

float

The noise parameter is set by the object constructor.

Example:

>>> from machinevisiontoolbox import CentralCamera
>>> camera = CentralCamera.Default();
>>> camera.project_point([0, 0, 3])
array([[500.],
       [500.]])
>>> camera.noise = 2
>>> camera.project_point([0, 0, 2])
array([[499.9731],
       [501.3764]])
>>> camera.project_point([0, 0, 2])
array([[501.7665],
       [502.0101]])
Seealso:

project_point