We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c85fe4a commit dca6c69Copy full SHA for dca6c69
1 file changed
spot_wrapper/spot_images.py
@@ -114,12 +114,12 @@ class ImageQualityConfig:
114
Dataclass to store configuration of image quality. Default values are the default for the build_image_request
115
"""
116
117
- DEFAULT_QUALITY = 75
+ DEFAULT_QUALITY = 75.0
118
119
- robot_depth_quality: int = DEFAULT_QUALITY
120
- robot_image_quality: int = DEFAULT_QUALITY
121
- hand_image_quality: int = DEFAULT_QUALITY
122
- hand_depth_quality: int = DEFAULT_QUALITY
+ robot_depth_quality: float = DEFAULT_QUALITY
+ robot_image_quality: float = DEFAULT_QUALITY
+ hand_image_quality: float = DEFAULT_QUALITY
+ hand_depth_quality: float = DEFAULT_QUALITY
123
124
125
class SpotImages:
0 commit comments