You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue is not a duplicate. Before opening a new issue, please search existing issues.
This issue is not a question, feature request, or anything other than a bug report directly related to this project.
Description
When "enable_image_validity_check" is enabled from the camera init parameters. The console is flooded with "compute Fern" and "Compute Color" print statements.
Even when setting the sdk_verbose = 0 does not solve the issue.
This especially makes it hard to debug the application.
The issue can be only resolved when disabling the "enable_image_validity_check".
Configuration used for initParameters :
defset_init_params(self) ->sl.InitParameters:
input_type=sl.InputType()
ifself.config["svo"] isnotNone:
input_type.set_from_svo_file(self.config["svo"])
svo_real_time_mode=Trueifself.config["svo"] isnotNoneelseFalseinit_params=sl.InitParameters(input_t=input_type, svo_real_time_mode=svo_real_time_mode)
init_params.camera_resolution=self.resolution[self.config["resolution"]]
init_params.camera_fps=float(self.config["fps"])
init_params.coordinate_units=sl.UNIT.METERinit_params.depth_mode=self.depth_mode[self.config["depth"]["mode"]]
init_params.coordinate_system=sl.COORDINATE_SYSTEM.RIGHT_HANDED_Z_UP_X_FWDinit_params.depth_minimum_distance=self.config["depth"]["min_distance"]
init_params.depth_maximum_distance=self.config["depth"]["max_distance"]
init_params.camera_disable_self_calib=True# default False. ! Do not change !init_params.depth_stabilization=self.config["depth"]["smoothness"]
init_params.enable_image_enhancement=True# default True. ! Do not change !init_params.enable_image_validity_check=True# default False. ! Do not change ! init_params.async_grab_camera_recovery=True# default False. ! Do not change ! init_params.sdk_verbose=0# default 0. ! Do not change ! returninit_params
Steps to Reproduce
Set "enable_image_validity_check" parameter to True in init parameters
Run base example
...
Expected Result
Run without "Compute Fern" and "Compute Color" print spans.
Preliminary Checks
Description
When "enable_image_validity_check" is enabled from the camera init parameters. The console is flooded with "compute Fern" and "Compute Color" print statements.
Even when setting the sdk_verbose = 0 does not solve the issue.
This especially makes it hard to debug the application.
The issue can be only resolved when disabling the "enable_image_validity_check".
Configuration used for initParameters :
Steps to Reproduce
...
Expected Result
Run without "Compute Fern" and "Compute Color" print spans.
Actual Result
ZED Camera model
ZED
Environment
OS: Ubuntu 20.04.6 LTS SDK_Version : 4.0.7 CPU: aarch64 Kernel: 5.10.120-tegra GPU: Jetson AGX Orin Developer Kit
Anything else?
No response
The text was updated successfully, but these errors were encountered: