@@ -28,7 +28,7 @@ import typing
2828import typing_extensions
2929import vector_pb2
3030
31- DESCRIPTOR : google .protobuf .descriptor .FileDescriptor
31+ DESCRIPTOR : google .protobuf .descriptor .FileDescriptor = ...
3232
3333class CameraSpecification (google .protobuf .message .Message ):
3434 """---------------------------------------------------------------------------
@@ -43,22 +43,22 @@ class CameraSpecification(google.protobuf.message.Message):
4343
4444 Specifications for an ideal camera.
4545 """
46- DESCRIPTOR : google .protobuf .descriptor .Descriptor
46+ DESCRIPTOR : google .protobuf .descriptor .Descriptor = ...
4747 class ImageSpec (google .protobuf .message .Message ):
48- DESCRIPTOR : google .protobuf .descriptor .Descriptor
48+ DESCRIPTOR : google .protobuf .descriptor .Descriptor = ...
4949 COLS_FIELD_NUMBER : builtins .int
5050 ROWS_FIELD_NUMBER : builtins .int
5151 CHANNELS_FIELD_NUMBER : builtins .int
52- cols : builtins .int
52+ cols : builtins .int = ...
5353 """Dimensions and encoding type of camera images."""
5454
55- rows : builtins .int
56- channels : builtins .int
55+ rows : builtins .int = ...
56+ channels : builtins .int = ...
5757 def __init__ (self ,
5858 * ,
59- cols : builtins .int = ...,
60- rows : builtins .int = ...,
61- channels : builtins .int = ...,
59+ cols : builtins .int = ...,
60+ rows : builtins .int = ...,
61+ channels : builtins .int = ...,
6262 ) -> None : ...
6363 def ClearField (self , field_name : typing_extensions .Literal ["channels" ,b"channels" ,"cols" ,b"cols" ,"rows" ,b"rows" ]) -> None : ...
6464
@@ -80,9 +80,9 @@ class CameraSpecification(google.protobuf.message.Message):
8080 pass
8181 def __init__ (self ,
8282 * ,
83- image_spec : typing .Optional [global___CameraSpecification .ImageSpec ] = ...,
84- fov : typing .Optional [vector_pb2 .Vector2d ] = ...,
85- clip : typing .Optional [interval_pb2 .Intervald ] = ...,
83+ image_spec : typing .Optional [global___CameraSpecification .ImageSpec ] = ...,
84+ fov : typing .Optional [vector_pb2 .Vector2d ] = ...,
85+ clip : typing .Optional [interval_pb2 .Intervald ] = ...,
8686 ) -> None : ...
8787 def HasField (self , field_name : typing_extensions .Literal ["clip" ,b"clip" ,"fov" ,b"fov" ,"image_spec" ,b"image_spec" ]) -> builtins .bool : ...
8888 def ClearField (self , field_name : typing_extensions .Literal ["clip" ,b"clip" ,"fov" ,b"fov" ,"image_spec" ,b"image_spec" ]) -> None : ...
@@ -98,7 +98,7 @@ class CameraIntrinsics(google.protobuf.message.Message):
9898 | 0 fy cy |
9999 | 0 0 1 |
100100 """
101- DESCRIPTOR : google .protobuf .descriptor .Descriptor
101+ DESCRIPTOR : google .protobuf .descriptor .Descriptor = ...
102102 FX_FIELD_NUMBER : builtins .int
103103 FY_FIELD_NUMBER : builtins .int
104104 CX_FIELD_NUMBER : builtins .int
@@ -114,19 +114,19 @@ class CameraIntrinsics(google.protobuf.message.Message):
114114 EXTRA_FIELD_NUMBER : builtins .int
115115 ERROR_STATS_FIELD_NUMBER : builtins .int
116116 CAMERA_SPEC_FIELD_NUMBER : builtins .int
117- fx : builtins .float
117+ fx : builtins .float = ...
118118 """Focal length in x."""
119119
120- fy : builtins .float
120+ fy : builtins .float = ...
121121 """Focal length in y."""
122122
123- cx : builtins .float
123+ cx : builtins .float = ...
124124 """Center in x."""
125125
126- cy : builtins .float
126+ cy : builtins .float = ...
127127 """Center in y."""
128128
129- k1 : builtins .float
129+ k1 : builtins .float = ...
130130 """(x,y) are projected coordinates in the z=1 plane.
131131
132132 f = (1 + k1r^2 + k2r^4 + k3r^6) / (1 + k4r^2 + k5r^4 + k6r^6)
@@ -135,30 +135,30 @@ class CameraIntrinsics(google.protobuf.message.Message):
135135 r^2 distortion coefficient.
136136 """
137137
138- k2 : builtins .float
138+ k2 : builtins .float = ...
139139 """r^4 distortion coefficient."""
140140
141- k3 : builtins .float
141+ k3 : builtins .float = ...
142142 """r^6 distortion coefficient."""
143143
144- k4 : builtins .float
144+ k4 : builtins .float = ...
145145 """Denominator coefficients.
146146 r^2 distortion coefficient.
147147 """
148148
149- k5 : builtins .float
149+ k5 : builtins .float = ...
150150 """r^4 distortion coefficient."""
151151
152- k6 : builtins .float
152+ k6 : builtins .float = ...
153153 """r^6 distortion coefficient."""
154154
155- p1 : builtins .float
155+ p1 : builtins .float = ...
156156 """x' += 2p1xy + p2(r^2 + 2x^2)
157157 y' += 2p2xy + p1(r^2 + 2y^2)
158158 y distortion coefficient.
159159 """
160160
161- p2 : builtins .float
161+ p2 : builtins .float = ...
162162 """x distortion coefficient."""
163163
164164 @property
@@ -177,21 +177,21 @@ class CameraIntrinsics(google.protobuf.message.Message):
177177 pass
178178 def __init__ (self ,
179179 * ,
180- fx : typing .Optional [builtins .float ] = ...,
181- fy : typing .Optional [builtins .float ] = ...,
182- cx : typing .Optional [builtins .float ] = ...,
183- cy : typing .Optional [builtins .float ] = ...,
184- k1 : typing .Optional [builtins .float ] = ...,
185- k2 : typing .Optional [builtins .float ] = ...,
186- k3 : typing .Optional [builtins .float ] = ...,
187- k4 : typing .Optional [builtins .float ] = ...,
188- k5 : typing .Optional [builtins .float ] = ...,
189- k6 : typing .Optional [builtins .float ] = ...,
190- p1 : typing .Optional [builtins .float ] = ...,
191- p2 : typing .Optional [builtins .float ] = ...,
192- extra : typing .Optional [typing .Iterable [builtins .float ]] = ...,
193- error_stats : typing .Optional [stats_pb2 .Stats ] = ...,
194- camera_spec : typing .Optional [global___CameraSpecification ] = ...,
180+ fx : typing .Optional [builtins .float ] = ...,
181+ fy : typing .Optional [builtins .float ] = ...,
182+ cx : typing .Optional [builtins .float ] = ...,
183+ cy : typing .Optional [builtins .float ] = ...,
184+ k1 : typing .Optional [builtins .float ] = ...,
185+ k2 : typing .Optional [builtins .float ] = ...,
186+ k3 : typing .Optional [builtins .float ] = ...,
187+ k4 : typing .Optional [builtins .float ] = ...,
188+ k5 : typing .Optional [builtins .float ] = ...,
189+ k6 : typing .Optional [builtins .float ] = ...,
190+ p1 : typing .Optional [builtins .float ] = ...,
191+ p2 : typing .Optional [builtins .float ] = ...,
192+ extra : typing .Optional [typing .Iterable [builtins .float ]] = ...,
193+ error_stats : typing .Optional [stats_pb2 .Stats ] = ...,
194+ camera_spec : typing .Optional [global___CameraSpecification ] = ...,
195195 ) -> None : ...
196196 def HasField (self , field_name : typing_extensions .Literal ["_cx" ,b"_cx" ,"_cy" ,b"_cy" ,"_fx" ,b"_fx" ,"_fy" ,b"_fy" ,"_k1" ,b"_k1" ,"_k2" ,b"_k2" ,"_k3" ,b"_k3" ,"_k4" ,b"_k4" ,"_k5" ,b"_k5" ,"_k6" ,b"_k6" ,"_p1" ,b"_p1" ,"_p2" ,b"_p2" ,"camera_spec" ,b"camera_spec" ,"cx" ,b"cx" ,"cy" ,b"cy" ,"error_stats" ,b"error_stats" ,"fx" ,b"fx" ,"fy" ,b"fy" ,"k1" ,b"k1" ,"k2" ,b"k2" ,"k3" ,b"k3" ,"k4" ,b"k4" ,"k5" ,b"k5" ,"k6" ,b"k6" ,"p1" ,b"p1" ,"p2" ,b"p2" ]) -> builtins .bool : ...
197197 def ClearField (self , field_name : typing_extensions .Literal ["_cx" ,b"_cx" ,"_cy" ,b"_cy" ,"_fx" ,b"_fx" ,"_fy" ,b"_fy" ,"_k1" ,b"_k1" ,"_k2" ,b"_k2" ,"_k3" ,b"_k3" ,"_k4" ,b"_k4" ,"_k5" ,b"_k5" ,"_k6" ,b"_k6" ,"_p1" ,b"_p1" ,"_p2" ,b"_p2" ,"camera_spec" ,b"camera_spec" ,"cx" ,b"cx" ,"cy" ,b"cy" ,"error_stats" ,b"error_stats" ,"extra" ,b"extra" ,"fx" ,b"fx" ,"fy" ,b"fy" ,"k1" ,b"k1" ,"k2" ,b"k2" ,"k3" ,b"k3" ,"k4" ,b"k4" ,"k5" ,b"k5" ,"k6" ,b"k6" ,"p1" ,b"p1" ,"p2" ,b"p2" ]) -> None : ...
@@ -223,7 +223,7 @@ global___CameraIntrinsics = CameraIntrinsics
223223
224224class CameraExtrinsics (google .protobuf .message .Message ):
225225 """Pose of a camera in the world frame or with respect to a named object."""
226- DESCRIPTOR : google .protobuf .descriptor .Descriptor
226+ DESCRIPTOR : google .protobuf .descriptor .Descriptor = ...
227227 WORLD_POSE_CAMERA_FIELD_NUMBER : builtins .int
228228 FRAME_CONTEXT_FIELD_NUMBER : builtins .int
229229 ERROR_STATS_FIELD_NUMBER : builtins .int
@@ -243,9 +243,9 @@ class CameraExtrinsics(google.protobuf.message.Message):
243243 pass
244244 def __init__ (self ,
245245 * ,
246- world_pose_camera : typing .Optional [pose_pb2 .Pose3d ] = ...,
247- frame_context : typing .Optional [frame_context_pb2 .FrameContextRelative ] = ...,
248- error_stats : typing .Optional [stats_pb2 .Stats ] = ...,
246+ world_pose_camera : typing .Optional [pose_pb2 .Pose3d ] = ...,
247+ frame_context : typing .Optional [frame_context_pb2 .FrameContextRelative ] = ...,
248+ error_stats : typing .Optional [stats_pb2 .Stats ] = ...,
249249 ) -> None : ...
250250 def HasField (self , field_name : typing_extensions .Literal ["error_stats" ,b"error_stats" ,"extrinsic_type" ,b"extrinsic_type" ,"frame_context" ,b"frame_context" ,"world_pose_camera" ,b"world_pose_camera" ]) -> builtins .bool : ...
251251 def ClearField (self , field_name : typing_extensions .Literal ["error_stats" ,b"error_stats" ,"extrinsic_type" ,b"extrinsic_type" ,"frame_context" ,b"frame_context" ,"world_pose_camera" ,b"world_pose_camera" ]) -> None : ...
@@ -254,7 +254,7 @@ global___CameraExtrinsics = CameraExtrinsics
254254
255255class CameraCalibration (google .protobuf .message .Message ):
256256 """Total calibration data for a camera."""
257- DESCRIPTOR : google .protobuf .descriptor .Descriptor
257+ DESCRIPTOR : google .protobuf .descriptor .Descriptor = ...
258258 INTRINSICS_FIELD_NUMBER : builtins .int
259259 EXTRINSICS_FIELD_NUMBER : builtins .int
260260 @property
@@ -267,8 +267,8 @@ class CameraCalibration(google.protobuf.message.Message):
267267 pass
268268 def __init__ (self ,
269269 * ,
270- intrinsics : typing .Optional [global___CameraIntrinsics ] = ...,
271- extrinsics : typing .Optional [global___CameraExtrinsics ] = ...,
270+ intrinsics : typing .Optional [global___CameraIntrinsics ] = ...,
271+ extrinsics : typing .Optional [global___CameraExtrinsics ] = ...,
272272 ) -> None : ...
273273 def HasField (self , field_name : typing_extensions .Literal ["extrinsics" ,b"extrinsics" ,"intrinsics" ,b"intrinsics" ]) -> builtins .bool : ...
274274 def ClearField (self , field_name : typing_extensions .Literal ["extrinsics" ,b"extrinsics" ,"intrinsics" ,b"intrinsics" ]) -> None : ...
0 commit comments