Photometric
#
- class ansys.speos.core.sensor.SensorCamera.Photometric(mode_photometric, camera_props, default_values=True, stable_ctr=False)#
Mode of camera sensor : Photometric.
This allows to set every Camera Sensor parameters, including the photometric definition parameters. By default, a camera with mode color is chosen (vs monochromatic mode).
- Parameters:
- Parameters:
Notes
Do not instantiate this class yourself, use set_type_photometric method available in sensor classes.
Overview#
Set the acquisition integration value. |
|
Set the acquisition lag time value. |
|
Set the transmittance file. |
|
Set the gamma correction. |
|
Choose 08-bits for png. |
|
Choose 10-bits for png. |
|
Choose 12-bits for png. |
|
Choose 16-bits for png. |
|
Set the range of wavelengths. |
|
Set the monochromatic mode. |
|
Set the color mode. |
|
Set the trajectory file. |
|
Set no layer separation: includes the simulation’s results in one layer. |
|
Set layer separation by source: includes one layer per active source in the result. |
Import detail#
from ansys.speos.core.sensor.SensorCamera import Photometric
Method detail#
- Photometric.set_acquisition_integration(value=0.01)#
Set the acquisition integration value.
- Parameters:
- value
float
Acquisition integration value (s). By default,
0.01
.
- value
- Returns:
ansys.speos.core.sensor.SensorCamera.Photometric
Photometric mode.
- Photometric.set_acquisition_lag_time(value=0.0)#
Set the acquisition lag time value.
- Parameters:
- value
float
Acquisition lag time value (s). By default,
0.0
.
- value
- Returns:
ansys.speos.core.sensor.SensorCamera.Photometric
Photometric mode.
- Photometric.set_transmittance_file_uri(uri)#
Set the transmittance file.
- Parameters:
- uri
str
Amount of light of the source that passes through the lens and reaches the sensor. The transmittance is expressed in a .spectrum file.
- uri
- Returns:
ansys.speos.core.sensor.SensorCamera.Photometric
Photometric mode.
- Photometric.set_gamma_correction(value=2.2)#
Set the gamma correction.
- Parameters:
- value
float
Compensation of the curve before the display on the screen. By default,
2.2
.
- value
- Returns:
ansys.speos.core.sensor.SensorCamera.Photometric
Photometric mode.
- Photometric.set_png_bits_08()#
Choose 08-bits for png.
- Returns:
ansys.speos.core.sensor.SensorCamera.Photometric
Photometric mode.
- Photometric.set_png_bits_10()#
Choose 10-bits for png.
- Returns:
ansys.speos.core.sensor.SensorCamera.Photometric
Photometric mode.
- Photometric.set_png_bits_12()#
Choose 12-bits for png.
- Returns:
ansys.speos.core.sensor.SensorCamera.Photometric
Photometric mode.
- Photometric.set_png_bits_16()#
Choose 16-bits for png.
- Returns:
ansys.speos.core.sensor.SensorCamera.Photometric
Photometric mode.
- Photometric.set_wavelengths_range()#
Set the range of wavelengths.
- Returns:
ansys.speos.core.sensor.BaseSensor.WavelengthsRange
Wavelengths range.
- Photometric.set_mode_monochromatic(spectrum_file_uri)#
Set the monochromatic mode.
Results will be available in grey scale.
- Parameters:
- spectrum_file_uri
str
Spectrum file uri.
- spectrum_file_uri
- Returns:
ansys.speos.core.sensor.SensorCamera.Photometric
Photometric mode.
- Photometric.set_mode_color()#
Set the color mode.
Results will be available in color.
- Returns:
- Photometric.set_trajectory_file_uri(uri)#
Set the trajectory file.
- Parameters:
- uri
str
Trajectory file, used to define the position and orientations of the Camera sensor in time.
- uri
- Returns:
ansys.speos.core.sensor.SensorCamera.Photometric
Photometric mode.
- Photometric.set_layer_type_none()#
Set no layer separation: includes the simulation’s results in one layer.
- Returns:
ansys.speos.core.sensor.SensorCamera.Photometric
Photometric mode.
- Photometric.set_layer_type_source()#
Set layer separation by source: includes one layer per active source in the result.
- Returns:
ansys.speos.core.sensor.SensorCamera.Photometric
Photometric mode.
Classes#
Mode of camera sensor : Color. |