Dataset Preview
Duplicate
The full dataset viewer is not available (click to read why). Only showing a preview of the rows.
The dataset generation failed
Error code:   DatasetGenerationError
Exception:    ArrowNotImplementedError
Message:      Cannot write struct type 'scenario' with no child field to Parquet. Consider adding a dummy child field.
Traceback:    Traceback (most recent call last):
                File "/usr/local/lib/python3.14/site-packages/datasets/builder.py", line 1816, in _prepare_split_single
                  for key, table in generator:
                                    ^^^^^^^^^
                File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 613, in wrapped
                  for item in generator(*args, **kwargs):
                              ~~~~~~~~~^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 343, in _generate_tables
                  self._cast_table(pa_table, json_field_paths=json_field_paths),
                  ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 132, in _cast_table
                  pa_table = table_cast(pa_table, self.info.features.arrow_schema)
                File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 2369, in table_cast
                  return cast_table_to_schema(table, schema)
                File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 2303, in cast_table_to_schema
                  cast_array_to_feature(
                  ~~~~~~~~~~~~~~~~~~~~~^
                      table[name] if name in table_column_names else pa.array([None] * len(table), type=schema.field(name).type),
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                      feature,
                      ^^^^^^^^
                  )
                  ^
                File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 1852, in wrapper
                  return pa.chunked_array([func(chunk, *args, **kwargs) for chunk in array.chunks])
                                           ~~~~^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 2149, in cast_array_to_feature
                  raise TypeError(f"Couldn't cast array of type\n{_short_str(array.type)}\nto\n{_short_str(feature)}")
              TypeError: Couldn't cast array of type
              struct<trial_type: int64, port_type: string, rail_idx: int64, board_x: double, board_y: double, board_yaw: double, gripper_offset_x: double, gripper_offset_y: double, gripper_offset_z: double, nic_translation: double, nic_yaw: double, sc_translation: double, sfp_port_idx: int64, cable_roll: double, cable_pitch: double, cable_yaw: double, robot_home_joint_positions: struct<shoulder_pan_joint: double, shoulder_lift_joint: double, elbow_joint: double, wrist_1_joint: double, wrist_2_joint: double, wrist_3_joint: double>, lighting: struct<enabled: bool, distribution: string, trial_index: int64, world_file: string, lights: struct<enclosure_light: struct<base_intensity: double, intensity: double, scale: double, diffuse_rgb: list<item: double>, pose: list<item: double>>, ceiling_01: struct<base_intensity: double, intensity: double, scale: double, diffuse_rgb: list<item: double>, pose: list<item: double>>, ceiling_02: struct<base_intensity: double, intensity: double, scale: double, diffuse_rgb: list<item: double>, pose: list<item: double>>>, ambient: double, background: double>>
              to
              {}
              
              During handling of the above exception, another exception occurred:
              
              Traceback (most recent call last):
                File "/usr/local/lib/python3.14/site-packages/datasets/builder.py", line 1858, in _prepare_split_single
                  num_examples, num_bytes = writer.finalize()
                                            ~~~~~~~~~~~~~~~^^
                File "/usr/local/lib/python3.14/site-packages/datasets/arrow_writer.py", line 781, in finalize
                  self.write_rows_on_file()
                  ~~~~~~~~~~~~~~~~~~~~~~~^^
                File "/usr/local/lib/python3.14/site-packages/datasets/arrow_writer.py", line 663, in write_rows_on_file
                  self._write_table(table)
                  ~~~~~~~~~~~~~~~~~^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/arrow_writer.py", line 771, in _write_table
                  self._build_writer(inferred_schema=pa_table.schema)
                  ~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/arrow_writer.py", line 812, in _build_writer
                  self.pa_writer = pq.ParquetWriter(
                                   ~~~~~~~~~~~~~~~~^
                      self.stream,
                      ^^^^^^^^^^^^
                  ...<9 lines>...
                      },
                      ^^
                  )
                  ^
                File "/usr/local/lib/python3.14/site-packages/pyarrow/parquet/core.py", line 1070, in __init__
                  self.writer = _parquet.ParquetWriter(
                                ~~~~~~~~~~~~~~~~~~~~~~^
                      sink, schema,
                      ^^^^^^^^^^^^^
                  ...<18 lines>...
                      store_decimal_as_integer=store_decimal_as_integer,
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                      **options)
                      ^^^^^^^^^^
                File "pyarrow/_parquet.pyx", line 2363, in pyarrow._parquet.ParquetWriter.__cinit__
                File "pyarrow/error.pxi", line 155, in pyarrow.lib.pyarrow_internal_check_status
                  return check_status(status)
                File "pyarrow/error.pxi", line 92, in pyarrow.lib.check_status
                  raise convert_status(status)
              pyarrow.lib.ArrowNotImplementedError: Cannot write struct type 'scenario' with no child field to Parquet. Consider adding a dummy child field.
              
              The above exception was the direct cause of the following exception:
              
              Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 1369, in compute_config_parquet_and_info_response
                  parquet_operations, partial, estimated_dataset_info = stream_convert_to_parquet(
                                                                        ~~~~~~~~~~~~~~~~~~~~~~~~~^
                      builder, max_dataset_size_bytes=max_dataset_size_bytes
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                  )
                  ^
                File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 948, in stream_convert_to_parquet
                  builder._prepare_split(split_generator=splits_generators[split], file_format="parquet")
                  ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/builder.py", line 1683, in _prepare_split
                  for job_id, done, content in self._prepare_split_single(
                                               ~~~~~~~~~~~~~~~~~~~~~~~~~~^
                      gen_kwargs=gen_kwargs, job_id=job_id, **_prepare_split_args
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                  ):
                  ^
                File "/usr/local/lib/python3.14/site-packages/datasets/builder.py", line 1869, in _prepare_split_single
                  raise DatasetGenerationError("An error occurred while generating the dataset") from e
              datasets.exceptions.DatasetGenerationError: An error occurred while generating the dataset

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

sample_id
string
camera
string
connector
string
image
string
task
dict
scenario
dict
command
dict
location
dict
label
dict
collect
dict
visibility
dict
20260619_182736_task_1_collect_000001
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000001_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4789216170110225, "y": 0.268399694820154, "z": 0.0705390038178495 }, "orientation_xyzw": { "x": 0.9405209129261433, "y": -0.015229186740484672, "z": -0.1829940417223228, "w": 0.2858350309425458 } }
{ "x_m": -0.007607863615713639, "y_m": -0.005829441042856209, "z_m": 0.023121999052432507, "roll_rad": 0.08718394597559147, "pitch_rad": 0.13349602995067927, "yaw_rad": 0.047115098808690276 }
{ "x_m": 0.007607863615713639, "y_m": 0.005829441042856209, "z_m": -0.023121999052432507, "roll_rad": -0.08158583963853562, "pitch_rad": -0.13697609730910448, "yaw_rad": -0.035683908286496785 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.007395372530021668, "local_y_m": -0.011154618034263888, "local_z_m": 0.0016645916670709165, "local_roll_rad": -0.34907230944221873, "local_pitch_rad": 0.14828363595525226, "local_yaw_rad": 0.03293083765696571, "local_roll_deg": -20.000370075923808, "l...
{ "camera": { "visible": true, "u_px": 626.4643549909924, "v_px": 621.2954202748231, "depth_m": 0.25774086950074154, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000002
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000002_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4827749915079804, "y": 0.3016389802249883, "z": 0.07564518462690284 }, "orientation_xyzw": { "x": 0.9515445333903039, "y": 0.19491709789833783, "z": -0.13900594532565883, "w": 0.1929965623684489 } }
{ "x_m": 0.0020742859836925254, "y_m": 0.006442558660174569, "z_m": 0.01877755312290419, "roll_rad": 0.09022670203949752, "pitch_rad": 0.2638595009699767, "yaw_rad": 0.21674085906036303 }
{ "x_m": -0.0020742859836925254, "y_m": -0.006442558660174569, "z_m": -0.01877755312290419, "roll_rad": -0.0334137303824561, "pitch_rad": -0.27655906847306644, "yaw_rad": -0.20010920429532297 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.02032361042925248, "local_y_m": 0.00046778240592064874, "local_z_m": 0.005614831364929615, "local_roll_rad": -0.35732977664387666, "local_pitch_rad": -0.11092376183877907, "local_yaw_rad": 0.42547088544728184, "local_roll_deg": -20.47348809604651, "l...
{ "camera": { "visible": true, "u_px": 584.6679486899153, "v_px": 672.12289259349, "depth_m": 0.25625619465479327, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000003
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000003_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.46152530184411494, "y": 0.27818087270869646, "z": 0.07642366060416601 }, "orientation_xyzw": { "x": 0.9817008568775735, "y": 0.02422484079422703, "z": -0.13026233632884351, "w": 0.13677831856139905 } }
{ "x_m": 0.005375900402021849, "y_m": 0.009830244443107539, "z_m": 0.019769483266972587, "roll_rad": 0.1420493667757605, "pitch_rad": 0.2589288271715496, "yaw_rad": 0.20987554179846815 }
{ "x_m": -0.005375900402021849, "y_m": -0.009830244443107539, "z_m": -0.019769483266972587, "roll_rad": -0.08927645982230914, "pitch_rad": -0.2810861778759589, "yaw_rad": -0.17871244568997002 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.00034164348170146385, "local_y_m": -0.020756351919012296, "local_z_m": 0.007035771965978626, "local_roll_rad": -0.2796512344523852, "local_pitch_rad": -0.17708577082426571, "local_yaw_rad": 0.08545824616830092, "local_roll_deg": -16.022835469745154, "...
{ "camera": { "visible": true, "u_px": 581.5003197509526, "v_px": 699.9770692166442, "depth_m": 0.263781480329665, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000004
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000004_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.46461506790514884, "y": 0.2749542858558772, "z": 0.08138837200754087 }, "orientation_xyzw": { "x": 0.9621401628087681, "y": -0.2378002546184949, "z": 0.07604142329236978, "w": 0.10933914192715738 } }
{ "x_m": 0.02709973209944283, "y_m": -0.001465330270483678, "z_m": 0.024338662030905844, "roll_rad": 0.16981094832076424, "pitch_rad": 0.0634455708986832, "yaw_rad": -0.02613148276914148 }
{ "x_m": -0.02709973209944283, "y_m": 0.001465330270483678, "z_m": -0.024338662030905844, "roll_rad": -0.17170171379533647, "pitch_rad": -0.05808678241571314, "yaw_rad": 0.036533623446189836 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.0018546176616964264, "local_y_m": -0.018699971817831843, "local_z_m": 0.012244570886635605, "local_roll_rad": 0.19612730253559527, "local_pitch_rad": -0.28310623032033433, "local_yaw_rad": -0.28589239344088907, "local_roll_deg": 11.237266682575058, "l...
{ "camera": { "visible": true, "u_px": 474.92519379824427, "v_px": 664.6850818955148, "depth_m": 0.26341405826129266, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000006
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000006_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.46678038970732566, "y": 0.276095862962144, "z": 0.08195453681137649 }, "orientation_xyzw": { "x": 0.9777242623058432, "y": -0.18251445737733077, "z": 0.09496059329977491, "w": 0.04154786958326624 } }
{ "x_m": 0.024226610604644372, "y_m": -0.006142975321076549, "z_m": 0.027684292544357447, "roll_rad": 0.2054701800910559, "pitch_rad": -0.08823882536793082, "yaw_rad": -0.13615384395324792 }
{ "x_m": -0.024226610604644372, "y_m": 0.006142975321076549, "z_m": -0.027684292544357447, "roll_rad": -0.19285388536657094, "pitch_rad": 0.11340860084972004, "yaw_rad": 0.11606942073384977 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.0012419594804154318, "local_y_m": -0.02589126049953506, "local_z_m": 0.011909076867335581, "local_roll_rad": 0.20584083985838178, "local_pitch_rad": -0.411386329803001, "local_yaw_rad": -0.15431257879526322, "local_roll_deg": 11.79381137531353, "local...
{ "camera": { "visible": true, "u_px": 453.252658871022, "v_px": 643.0139816218409, "depth_m": 0.2619070962552638, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000007
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000007_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.49067588877838103, "y": 0.3023273122676404, "z": 0.08627475238788279 }, "orientation_xyzw": { "x": 0.9577392488302349, "y": -0.13196500515159792, "z": 0.12446836323699828, "w": 0.22322274798626368 } }
{ "x_m": 0.017714210627843063, "y_m": -0.014674004641393623, "z_m": 0.03637305483492903, "roll_rad": 0.15907759590356815, "pitch_rad": -0.18906023231139607, "yaw_rad": -0.13125666025831123 }
{ "x_m": -0.017714210627843063, "y_m": 0.014674004641393623, "z_m": -0.03637305483492903, "roll_rad": -0.13604971831664095, "pitch_rad": 0.20615644960580065, "yaw_rad": 0.10204732652854719 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.023410621223927335, "local_y_m": -0.0024189265722908255, "local_z_m": 0.01739945431191378, "local_roll_rad": 0.2960133838944506, "local_pitch_rad": -0.04317580774983541, "local_yaw_rad": -0.0728484744453205, "local_roll_deg": 16.960317576537836, "loc...
{ "camera": { "visible": true, "u_px": 434.9685664364362, "v_px": 585.1805080451148, "depth_m": 0.2610974482933689, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000008
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000008_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.5017615385743487, "y": 0.3035274151932609, "z": 0.08992003391627128 }, "orientation_xyzw": { "x": 0.9565608031754322, "y": 0.12752032224257864, "z": -0.11270929021945651, "w": 0.23669941516984616 } }
{ "x_m": -0.016650261163751456, "y_m": 0.01113584189536404, "z_m": 0.03467956294629615, "roll_rad": 0.058893331787079325, "pitch_rad": -0.031064065493613263, "yaw_rad": 0.07489242388565642 }
{ "x_m": 0.016650261163751456, "y_m": -0.01113584189536404, "z_m": -0.03467956294629615, "roll_rad": -0.061073607545926153, "pitch_rad": 0.02651742277969217, "yaw_rad": -0.07661755160031475 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.02058628357430361, "local_y_m": 0.0067237657887837836, "local_z_m": 0.020635339323442005, "local_roll_rad": -0.2862860270037893, "local_pitch_rad": -0.0022611954640001618, "local_yaw_rad": 0.32095945027036527, "local_roll_deg": -16.402981080885443, "...
{ "camera": { "visible": true, "u_px": 619.5154917280032, "v_px": 623.2378182401969, "depth_m": 0.2731620912764799, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000009
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000009_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4668140520180568, "y": 0.29586085420040414, "z": 0.08350260082383537 }, "orientation_xyzw": { "x": 0.9766398186722085, "y": 0.12953399682715208, "z": 0.1714253957408579, "w": -0.0029903085107253376 } }
{ "x_m": 0.011873003659171766, "y_m": 0.03566572784852351, "z_m": 0.031028097456701875, "roll_rad": 0.184842424032484, "pitch_rad": -0.12235809444832967, "yaw_rad": 0.25586545597022536 }
{ "x_m": -0.011873003659171766, "y_m": -0.03566572784852351, "z_m": -0.031028097456701875, "roll_rad": -0.21022190812501515, "pitch_rad": 0.06960977049617072, "yaw_rad": -0.2745670445331218 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.016902532572030834, "local_y_m": -0.021955766575080117, "local_z_m": 0.013159715534105597, "local_roll_rad": 0.35862192684707567, "local_pitch_rad": -0.4049801634563367, "local_yaw_rad": 0.5433286279406501, "local_roll_deg": 20.547522849186784, "loca...
{ "camera": { "visible": true, "u_px": 519.5760778271258, "v_px": 759.7383644814571, "depth_m": 0.28431726335533225, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000011
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000011_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.519979634416338, "y": 0.27082037852658686, "z": 0.07625547392164037 }, "orientation_xyzw": { "x": 0.9414761205224523, "y": -0.09056427704207472, "z": -0.1557048576289126, "w": 0.2849154673242563 } }
{ "x_m": -0.023154514675343574, "y_m": -0.008584372304160148, "z_m": 0.036870661848381614, "roll_rad": 0.03532455123183794, "pitch_rad": 0.14790682317711146, "yaw_rad": 0.030911930933866284 }
{ "x_m": 0.023154514675343574, "y_m": 0.008584372304160148, "z_m": -0.036870661848381614, "roll_rad": -0.031097271028944586, "pitch_rad": -0.14884640182660525, "yaw_rad": -0.025975689584727 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.011809906348604822, "local_y_m": 0.028873524421900026, "local_z_m": 0.0065231871248851905, "local_roll_rad": -0.24911355925148093, "local_pitch_rad": 0.15612616030224308, "local_yaw_rad": -0.10810058704129008, "local_roll_deg": -14.27315556459202, "lo...
{ "camera": { "visible": true, "u_px": 698.019709301936, "v_px": 568.8871410288059, "depth_m": 0.2643961959342156, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000012
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000012_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.49069762887611995, "y": 0.2599336662580049, "z": 0.09437306224453676 }, "orientation_xyzw": { "x": 0.8644958906008929, "y": -0.28899735522289477, "z": -0.17330995113535833, "w": 0.37294911803864156 } }
{ "x_m": -0.018827328858288528, "y_m": -0.018154469406055196, "z_m": 0.035357044697875706, "roll_rad": -0.1597214118134548, "pitch_rad": 0.17903541628645964, "yaw_rad": -0.24526411204350937 }
{ "x_m": 0.018827328858288528, "y_m": 0.018154469406055196, "z_m": -0.035357044697875706, "roll_rad": 0.11436724944116657, "pitch_rad": -0.2107260588036889, "yaw_rad": 0.2187896722969874 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.022048863959553387, "local_y_m": 0.0014278015207626568, "local_z_m": 0.024031312962341712, "local_roll_rad": -0.08893056748324284, "local_pitch_rad": 0.3816165129588931, "local_yaw_rad": -0.5284173538310258, "local_roll_deg": -5.0953461864931695, "loc...
{ "camera": { "visible": true, "u_px": 686.1002589225187, "v_px": 527.8209257357619, "depth_m": 0.24445680516625792, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000013
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000013_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.48487489808679823, "y": 0.28033510042984, "z": 0.1042719987510187 }, "orientation_xyzw": { "x": 0.9267216736806083, "y": 0.1800455207761844, "z": 0.12991019113000238, "w": 0.30314005380287684 } }
{ "x_m": 0.04661235647542783, "y_m": -0.020870005561693605, "z_m": 0.03207093078648837, "roll_rad": -0.17128633609380428, "pitch_rad": 0.08639168717995706, "yaw_rad": 0.005437998409044515 }
{ "x_m": -0.04661235647542783, "y_m": 0.020870005561693605, "z_m": -0.03207093078648837, "roll_rad": 0.17236965035634735, "pitch_rad": -0.08419287852146283, "yaw_rad": -0.020138017126142233 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.005558936382104439, "local_y_m": -0.001078106085384616, "local_z_m": 0.03352776524025645, "local_roll_rad": 0.13267994684123427, "local_pitch_rad": 0.1925002163917187, "local_yaw_rad": 0.5242271534016085, "local_roll_deg": 7.602000980022842, "local_pi...
{ "camera": { "visible": true, "u_px": 394.3809301651721, "v_px": 557.5574564513823, "depth_m": 0.24601353208918364, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000014
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000014_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.48804193277210417, "y": 0.3186092589355104, "z": 0.0856072580731204 }, "orientation_xyzw": { "x": 0.8987078928941761, "y": -0.2417681885541977, "z": -0.18891365578893507, "w": 0.3133430977529136 } }
{ "x_m": -0.017793421613211735, "y_m": 0.007473074909715216, "z_m": 0.04573316581601716, "roll_rad": -0.17994701406554217, "pitch_rad": 0.10968187943797289, "yaw_rad": -0.09773040482573091 }
{ "x_m": 0.017793421613211735, "y_m": -0.007473074909715216, "z_m": -0.04573316581601716, "roll_rad": 0.16974652971100987, "pitch_rad": -0.12496946881945684, "yaw_rad": 0.07717950813592495 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.03075571454918808, "local_y_m": 0.0018300320251936003, "local_z_m": 0.014813053000547595, "local_roll_rad": -0.19609254590820543, "local_pitch_rad": 0.2639622004383091, "local_yaw_rad": -0.4220278057046774, "local_roll_deg": -11.235275274515512, "loc...
{ "camera": { "visible": true, "u_px": 607.7189698168921, "v_px": 526.2037582650594, "depth_m": 0.26960533601609693, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000016
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000016_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4664899396355162, "y": 0.31368048758266837, "z": 0.07541023170566756 }, "orientation_xyzw": { "x": 0.9169435460903269, "y": -0.1098273582286746, "z": -0.24181659060420216, "w": 0.29778720787899327 } }
{ "x_m": -0.0007114433514788798, "y_m": 0.02192612217843376, "z_m": 0.028941568488268343, "roll_rad": -0.18484985062958031, "pitch_rad": 0.2528541080213074, "yaw_rad": -0.06899934588668062 }
{ "x_m": 0.0007114433514788798, "y_m": -0.02192612217843376, "z_m": -0.028941568488268343, "roll_rad": 0.17310168941964998, "pitch_rad": -0.2609445440944492, "yaw_rad": 0.022668059357347278 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.029589659522054015, "local_y_m": -0.017662750697321202, "local_z_m": 0.004558547655167054, "local_roll_rad": -0.3998616331663637, "local_pitch_rad": 0.2290971185795275, "local_yaw_rad": -0.16494895521825306, "local_roll_deg": -22.91038396964098, "loc...
{ "camera": { "visible": true, "u_px": 624.4836394306093, "v_px": 642.1181896468137, "depth_m": 0.2732095281610063, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000017
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000017_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.47716966228349994, "y": 0.2509803575390523, "z": 0.07356243182662042 }, "orientation_xyzw": { "x": 0.9709923203149345, "y": 0.23369321890396194, "z": -0.01822403529959747, "w": 0.04721522916521312 } }
{ "x_m": 0.030436185106572755, "y_m": 0.01952310904833615, "z_m": 0.010016628587539378, "roll_rad": 0.05262730344831568, "pitch_rad": 0.24832885104781216, "yaw_rad": 0.18404852535250021 }
{ "x_m": -0.030436185106572755, "y_m": -0.01952310904833615, "z_m": -0.010016628587539378, "roll_rad": -0.007020223195497683, "pitch_rad": -0.2536364553942319, "yaw_rad": -0.17658370566126333 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.03195325648149581, "local_y_m": -0.013311246102175572, "local_z_m": 0.0031973136212883565, "local_roll_rad": -0.07586526459770147, "local_pitch_rad": -0.3793544306493245, "local_yaw_rad": 0.5681954443028535, "local_roll_deg": -4.346759473091554, "loca...
{ "camera": { "visible": true, "u_px": 446.13363177462116, "v_px": 743.8221790143853, "depth_m": 0.2714823916810556, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000018
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000018_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.45674916099631857, "y": 0.26222719404024486, "z": 0.07038266513920845 }, "orientation_xyzw": { "x": 0.8830344060916797, "y": -0.1461121521564644, "z": 0.15471392776543402, "w": 0.4182882704617869 } }
{ "x_m": 0.03635916780868498, "y_m": -0.0749159333936186, "z_m": 0.02862256112984385, "roll_rad": -0.08831763037056109, "pitch_rad": -0.007142059418079397, "yaw_rad": 0.11138225811350971 }
{ "x_m": -0.03635916780868498, "y_m": 0.0749159333936186, "z_m": -0.02862256112984385, "roll_rad": 0.08698758209914341, "pitch_rad": 0.016874813584169004, "yaw_rad": -0.1103322365643107 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.013022621334278983, "local_y_m": -0.03248450116669985, "local_z_m": 0.0009458252864605835, "local_roll_rad": 0.43612660445515167, "local_pitch_rad": 0.34929580839879276, "local_yaw_rad": -0.17589514652873414, "local_roll_deg": 24.988213768651637, "loc...
{ "camera": { "visible": true, "u_px": 398.23175466164355, "v_px": 413.2544360827766, "depth_m": 0.22286121443608958, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000019
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000019_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.49223421798082995, "y": 0.3190344179266435, "z": 0.0905420477502537 }, "orientation_xyzw": { "x": 0.9041325195441934, "y": -0.32370382463602737, "z": 0.11073044952450384, "w": 0.2559277018354564 } }
{ "x_m": 0.016815179409688352, "y_m": -0.03794040806552501, "z_m": 0.028496774744476205, "roll_rad": -0.1104220078912815, "pitch_rad": -0.20360766468191893, "yaw_rad": -0.13826694368965908 }
{ "x_m": -0.016815179409688352, "y_m": 0.03794040806552501, "z_m": -0.028496774744476205, "roll_rad": 0.13967261991237515, "pitch_rad": 0.18491815310023008, "yaw_rad": 0.16253052066436163 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.03037437760472684, "local_y_m": 0.002636198130601353, "local_z_m": 0.01963084249121978, "local_roll_rad": 0.3667228026630159, "local_pitch_rad": -0.03619097925768049, "local_yaw_rad": -0.4672814055437088, "local_roll_deg": 21.011668843799757, "local_...
{ "camera": { "visible": true, "u_px": 367.0696318947545, "v_px": 478.69959844252423, "depth_m": 0.2184146340090364, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000021
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000021_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.47699911454433386, "y": 0.2725813445025008, "z": 0.09339785886663482 }, "orientation_xyzw": { "x": 0.9493147441532225, "y": 0.12669217911975544, "z": 0.0881760494714614, "w": 0.27381671348330067 } }
{ "x_m": -0.006195440982054712, "y_m": -0.009442414535976107, "z_m": 0.031925981917804824, "roll_rad": -0.20001339631425888, "pitch_rad": -0.1853224046416747, "yaw_rad": 0.15120672862058834 }
{ "x_m": 0.006195440982054712, "y_m": 0.009442414535976107, "z_m": -0.031925981917804824, "roll_rad": 0.17388887492339777, "pitch_rad": 0.20999722668522103, "yaw_rad": -0.11418706399081904 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.017082718220739153, "local_y_m": -0.023572134853557147, "local_z_m": 0.023081723941129496, "local_roll_rad": 0.09500816962462669, "local_pitch_rad": 0.10904043292717416, "local_yaw_rad": 0.4064993188121612, "local_roll_deg": 5.443567138754136, "local_...
{ "camera": { "visible": true, "u_px": 573.8170049681735, "v_px": 561.5936009502335, "depth_m": 0.2519128881640099, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000022
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000022_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.48259791340785024, "y": 0.32253022674997317, "z": 0.08837703962728534 }, "orientation_xyzw": { "x": 0.9734611900164745, "y": -0.054789939788356834, "z": -0.1307363050780421, "w": 0.17966466698891792 } }
{ "x_m": -0.03092248420574184, "y_m": 0.01516024595260701, "z_m": 0.032680932563696974, "roll_rad": -0.058807988938598225, "pitch_rad": -0.02897504776800949, "yaw_rad": 0.10352766484919887 }
{ "x_m": 0.03092248420574184, "y_m": -0.01516024595260701, "z_m": -0.032680932563696974, "roll_rad": 0.0555328757143045, "pitch_rad": 0.03484699690924564, "yaw_rad": -0.10170745391906422 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.032566890486414146, "local_y_m": -0.00863756631523114, "local_z_m": 0.017699776304343887, "local_roll_rad": -0.2453369479541745, "local_pitch_rad": -0.07333139880034477, "local_yaw_rad": -0.0542028083806068, "local_roll_deg": -14.056771676394934, "lo...
{ "camera": { "visible": true, "u_px": 703.3075005249905, "v_px": 616.6338893283751, "depth_m": 0.2703953182827307, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000023
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000023_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.5040854958255481, "y": 0.3007661309342575, "z": 0.10364721298142235 }, "orientation_xyzw": { "x": 0.9795426748324237, "y": 0.10708629730347069, "z": 0.09503509088214254, "w": 0.14141076554844184 } }
{ "x_m": 0.020854048554746707, "y_m": 0.019673975977631653, "z_m": 0.04383844443142104, "roll_rad": 0.0555680873725846, "pitch_rad": -0.03434680786610803, "yaw_rad": 0.19316812397576164 }
{ "x_m": -0.020854048554746707, "y_m": -0.019673975977631653, "z_m": -0.04383844443142104, "roll_rad": -0.06114280308162366, "pitch_rad": 0.022989506185235348, "yaw_rad": -0.1948258279945762 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.010996873579064526, "local_y_m": 0.015949667564944005, "local_z_m": 0.03292477912336534, "local_roll_rad": 0.150591209986548, "local_pitch_rad": -0.1593015577308758, "local_yaw_rad": 0.3902472116112182, "local_roll_deg": 8.628240763997535, "local_pit...
{ "camera": { "visible": true, "u_px": 507.80133205214713, "v_px": 662.4599370466566, "depth_m": 0.2842678230669084, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000024
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000024_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.527648953178881, "y": 0.27046152598892437, "z": 0.07046179734140245 }, "orientation_xyzw": { "x": 0.9052098813027488, "y": -0.10951238969002716, "z": -0.19732306311348402, "w": 0.3600912607378236 } }
{ "x_m": -0.021842700961768435, "y_m": -0.012903810992825115, "z_m": 0.04884902857393558, "roll_rad": -0.03844182421323211, "pitch_rad": 0.1094541392987926, "yaw_rad": 0.061922538031068855 }
{ "x_m": 0.021842700961768435, "y_m": 0.012903810992825115, "z_m": -0.04884902857393558, "roll_rad": 0.04538748835041699, "pitch_rad": -0.10677025221013939, "yaw_rad": -0.06645444438567817 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.018536457691149488, "local_y_m": 0.03382286975681657, "local_z_m": 0.00031926989213113465, "local_roll_rad": -0.29821398579151054, "local_pitch_rad": 0.3366682067894438, "local_yaw_rad": -0.1395572243352008, "local_roll_deg": -17.086402777627853, "loc...
{ "camera": { "visible": true, "u_px": 659.307513655059, "v_px": 507.908168319361, "depth_m": 0.2727370701532039, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000026
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000026_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4877828078408961, "y": 0.30438100826629094, "z": 0.10593580374908856 }, "orientation_xyzw": { "x": 0.9891700840538179, "y": -0.08739610158662175, "z": 0.10275569916860137, "w": 0.05784230742973344 } }
{ "x_m": 0.005055150057125757, "y_m": 0.015170606393730246, "z_m": 0.04533105800578463, "roll_rad": 0.1369789395196763, "pitch_rad": -0.06656552776126493, "yaw_rad": -0.16001870781821295 }
{ "x_m": -0.005055150057125757, "y_m": -0.015170606393730246, "z_m": -0.04533105800578463, "roll_rad": -0.125104346238394, "pitch_rad": 0.08691847133242199, "yaw_rad": 0.15000339126785522 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.017660806057892494, "local_y_m": 0.0012522031633167103, "local_z_m": 0.03523571943668101, "local_roll_rad": 0.21631613554060317, "local_pitch_rad": -0.36111705058452703, "local_yaw_rad": 0.03777169579310321, "local_roll_deg": 12.39400160705643, "loca...
{ "camera": { "visible": true, "u_px": 575.8496273316886, "v_px": 647.9695916768006, "depth_m": 0.2801120932973701, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000027
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000027_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4718458773096357, "y": 0.28419854879623235, "z": 0.10385264952037947 }, "orientation_xyzw": { "x": 0.9565730751528442, "y": -0.22383630051521955, "z": 0.11204060971901063, "w": 0.14937256855957168 } }
{ "x_m": 0.011026797318716142, "y_m": 0.0037791026567295383, "z_m": 0.05532770567599665, "roll_rad": 0.17979592683595197, "pitch_rad": -0.1913756519898772, "yaw_rad": -0.205339407402386 }
{ "x_m": -0.011026797318716142, "y_m": -0.0037791026567295383, "z_m": -0.05532770567599665, "roll_rad": -0.14080640799227961, "pitch_rad": 0.22148134518351678, "yaw_rad": 0.17235356660611842 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.004853519218732873, "local_y_m": -0.01986845032484557, "local_z_m": 0.0341696118784876, "local_roll_rad": 0.28057640218665825, "local_pitch_rad": -0.21198908801059, "local_yaw_rad": -0.24005289044330608, "local_roll_deg": 16.07584367626068, "local_pi...
{ "camera": { "visible": true, "u_px": 513.897388312314, "v_px": 605.8537395727427, "depth_m": 0.2910741698434106, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000028
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000028_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4972896766335815, "y": 0.24639449459341461, "z": 0.08809267421277897 }, "orientation_xyzw": { "x": 0.9718916324705643, "y": -0.15377940736210632, "z": -0.1411606710754816, "w": 0.1088678719668058 } }
{ "x_m": -0.014450173367547503, "y_m": -0.00487682810618012, "z_m": 0.04504948104022022, "roll_rad": 0.19189701351362137, "pitch_rad": -0.0504922897747309, "yaw_rad": -0.21785332311040817 }
{ "x_m": 0.014450173367547503, "y_m": 0.00487682810618012, "z_m": -0.04504948104022022, "roll_rad": -0.17713884399517615, "pitch_rad": 0.08971507925105505, "yaw_rad": 0.20502055693530002 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.03570475865416175, "local_y_m": -0.003750431599431309, "local_z_m": 0.019111747513241795, "local_roll_rad": -0.2577419411737832, "local_pitch_rad": -0.18734058519196123, "local_yaw_rad": -0.2718359388549664, "local_roll_deg": -14.767525432766917, "loc...
{ "camera": { "visible": true, "u_px": 603.8207535724932, "v_px": 575.5775712430304, "depth_m": 0.2820460146439417, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000029
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000029_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4667477476153051, "y": 0.27900006823897827, "z": 0.10170023191908463 }, "orientation_xyzw": { "x": 0.8905767678817754, "y": -0.1994205078420391, "z": 0.0743782405124524, "w": 0.40196064347090665 } }
{ "x_m": 0.017431160922012356, "y_m": -0.06524650475668764, "z_m": 0.04852635000846961, "roll_rad": -0.011011683539716675, "pitch_rad": -0.08582123106502501, "yaw_rad": -0.2379783021653217 }
{ "x_m": -0.017431160922012356, "y_m": 0.06524650475668764, "z_m": -0.04852635000846961, "roll_rad": 0.031012530295958917, "pitch_rad": 0.08078712399868092, "yaw_rad": 0.23970460392028564 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.0007082431895748236, "local_y_m": -0.024904404869232524, "local_z_m": 0.032381772607523424, "local_roll_rad": 0.31385799291629396, "local_pitch_rad": 0.31497084663650576, "local_yaw_rad": -0.2928333455783414, "local_roll_deg": 17.98273836055053, "loc...
{ "camera": { "visible": true, "u_px": 413.8429626588236, "v_px": 389.1134486251901, "depth_m": 0.2447796435016894, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000031
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000031_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.507343617720597, "y": 0.25655311780361, "z": 0.09475090150774389 }, "orientation_xyzw": { "x": 0.8647315956520255, "y": -0.3207424025613328, "z": -0.22761481874702305, "w": 0.3123380747956382 } }
{ "x_m": -0.05387418730439508, "y_m": -0.01737008284455721, "z_m": 0.05360537946286925, "roll_rad": -0.04489407159555767, "pitch_rad": 0.029458403584625543, "yaw_rad": -0.2880333044466966 }
{ "x_m": 0.05387418730439508, "y_m": 0.01737008284455721, "z_m": -0.05360537946286925, "roll_rad": 0.03470774360073738, "pitch_rad": -0.0409724155249455, "yaw_rad": 0.2866606908166708 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.03187162205147282, "local_y_m": 0.008057826688404207, "local_z_m": 0.024783510345831823, "local_roll_rad": -0.20389413567060433, "local_pitch_rad": 0.3075124303189846, "local_yaw_rad": -0.6046380354240788, "local_roll_deg": -11.68227344139344, "local_...
{ "camera": { "visible": true, "u_px": 722.0473296771288, "v_px": 428.38783357608406, "depth_m": 0.26556730710414994, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000032
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000032_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.502077755803409, "y": 0.29396355184553613, "z": 0.1094674960897675 }, "orientation_xyzw": { "x": 0.954984700614039, "y": 0.26216000941205014, "z": -0.04961639311348048, "w": 0.12967098593207652 } }
{ "x_m": -0.017841597185901947, "y_m": -0.004851313730875606, "z_m": 0.037412103529805396, "roll_rad": 0.039974832899071354, "pitch_rad": 0.15966428588164033, "yaw_rad": 0.020307893590127652 }
{ "x_m": 0.017841597185901947, "y_m": 0.004851313730875606, "z_m": -0.037412103529805396, "roll_rad": -0.03721581420133804, "pitch_rad": -0.1603244813734484, "yaw_rad": -0.014119344326538724 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.0024131373104522304, "local_y_m": 0.014525055160487499, "local_z_m": 0.038545696329472, "local_roll_rad": -0.17989357061040595, "local_pitch_rad": -0.23032109658788127, "local_yaw_rad": 0.5990812090120508, "local_roll_deg": -10.307142357514925, "loca...
{ "camera": { "visible": true, "u_px": 694.5250083734327, "v_px": 567.6043643924797, "depth_m": 0.25528433460335775, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000033
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000033_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.47746981829647056, "y": 0.2591851019634759, "z": 0.10022868631382083 }, "orientation_xyzw": { "x": 0.9905401938053567, "y": -0.04505056105770284, "z": -0.12774311882606518, "w": 0.021960578248813107 } }
{ "x_m": -0.019697360632824457, "y_m": 0.004199317483767895, "z_m": 0.047827775421951824, "roll_rad": 0.21748825815152356, "pitch_rad": 0.16462792512432725, "yaw_rad": 0.10164057876414252 }
{ "x_m": 0.019697360632824457, "y_m": -0.004199317483767895, "z_m": -0.047827775421951824, "roll_rad": -0.2031576684651397, "pitch_rad": -0.18209743103785625, "yaw_rad": -0.06501508873023586 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.02684598563258299, "local_y_m": -0.009422882255363588, "local_z_m": 0.030256416452943264, "local_roll_rad": -0.2893996532390951, "local_pitch_rad": -0.3880815986127229, "local_yaw_rad": -0.08423666574374038, "local_roll_deg": -16.581378723149673, "loc...
{ "camera": { "visible": true, "u_px": 709.4312727178049, "v_px": 622.9124526221066, "depth_m": 0.2809843638289976, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000034
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000034_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4443966557734911, "y": 0.2655707586033097, "z": 0.07146070018382349 }, "orientation_xyzw": { "x": 0.9877718545005061, "y": 0.09886960942523593, "z": -0.03655567686402635, "w": 0.11487056314715897 } }
{ "x_m": 0.02079902912838638, "y_m": -0.01882915470715718, "z_m": 0.03834229160114555, "roll_rad": 0.27412824652865386, "pitch_rad": 0.13277559329829386, "yaw_rad": 0.18133722188810192 }
{ "x_m": -0.02079902912838638, "y_m": 0.01882915470715718, "z_m": -0.03834229160114555, "roll_rad": -0.24964693165668603, "pitch_rad": -0.17506680170822508, "yaw_rad": -0.14097514998135108 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.012673071302210941, "local_y_m": -0.03975037073406966, "local_z_m": 0.0027719534995548933, "local_roll_rad": -0.10914335005721058, "local_pitch_rad": -0.23986922294776805, "local_yaw_rad": 0.28728778705385993, "local_roll_deg": -6.2534533201970985, "l...
{ "camera": { "visible": true, "u_px": 557.6171771302282, "v_px": 546.1125660639055, "depth_m": 0.2716055454881295, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000036
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000036_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.5263582295583082, "y": 0.2820701373520528, "z": 0.07478007185364184 }, "orientation_xyzw": { "x": 0.9773012259856951, "y": -0.08090081204414631, "z": 0.15154951078505108, "w": 0.1239762803050107 } }
{ "x_m": -0.008028200302357291, "y_m": -0.013361094715474864, "z_m": 0.030751760957568486, "roll_rad": 0.269727377658884, "pitch_rad": -0.08201264515949964, "yaw_rad": 0.02251111186089832 }
{ "x_m": 0.008028200302357291, "y_m": 0.013361094715474864, "z_m": -0.030751760957568486, "roll_rad": -0.2722453123914181, "pitch_rad": 0.07300560684468549, "yaw_rad": -0.04364923045592236 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.006027780334647076, "local_y_m": 0.04111809511320601, "local_z_m": 0.006704643628887139, "local_roll_rad": 0.3197021041569207, "local_pitch_rad": -0.22700400217470923, "local_yaw_rad": 0.07076979999778772, "local_roll_deg": 18.31758126964341, "local_p...
{ "camera": { "visible": true, "u_px": 575.9477412378959, "v_px": 581.0830137527153, "depth_m": 0.2610929755444161, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000037
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000037_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4771707969259655, "y": 0.31952902228395674, "z": 0.08669949712044826 }, "orientation_xyzw": { "x": 0.9654062752930516, "y": -0.0368920738805009, "z": -0.026158584554052625, "w": 0.25679841698055905 } }
{ "x_m": -0.04547057026205015, "y_m": 0.007003382165043037, "z_m": 0.031194622100644054, "roll_rad": 0.12839283735616994, "pitch_rad": -0.07626163426736451, "yaw_rad": 0.0402228676420218 }
{ "x_m": 0.04547057026205015, "y_m": -0.007003382165043037, "z_m": -0.031194622100644054, "roll_rad": -0.1316808028290623, "pitch_rad": 0.07040891207699822, "yaw_rad": -0.0497720672310814 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.037760517510463276, "local_y_m": -0.00579671173090393, "local_z_m": 0.018120315358078766, "local_roll_rad": -0.0365331303796314, "local_pitch_rad": 0.057551541505461455, "local_yaw_rad": 0.0400038231102896, "local_roll_deg": -2.09319418315405, "local...
{ "camera": { "visible": true, "u_px": 754.1714126095571, "v_px": 597.7984315204817, "depth_m": 0.26727929851861615, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000038
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000038_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4488542300072634, "y": 0.2904077141453949, "z": 0.09001663866981227 }, "orientation_xyzw": { "x": 0.97672867957811, "y": 0.1051895275230511, "z": 0.08620933292393877, "w": 0.16584390463893636 } }
{ "x_m": -0.0006813403143925978, "y_m": 0.031486501640996645, "z_m": 0.029804046092854808, "roll_rad": 0.07471775520779478, "pitch_rad": -0.09608652286132034, "yaw_rad": 0.18443453219746733 }
{ "x_m": 0.0006813403143925978, "y_m": -0.031486501640996645, "z_m": -0.029804046092854808, "roll_rad": -0.09134941479671597, "pitch_rad": 0.0804454335742163, "yaw_rad": -0.19170750852737306 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.010256675140482584, "local_y_m": -0.03579834058144798, "local_z_m": 0.020127265442206707, "local_roll_rad": 0.12671894991023996, "local_pitch_rad": -0.11482460773064387, "local_yaw_rad": 0.3764487688285929, "local_roll_deg": 7.260461014186432, "local...
{ "camera": { "visible": true, "u_px": 615.3676429169851, "v_px": 734.070042267861, "depth_m": 0.28391294223480945, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000039
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000039_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4937036233798878, "y": 0.2560738370776592, "z": 0.10197026941055759 }, "orientation_xyzw": { "x": 0.9747144084477865, "y": -0.09536108437188298, "z": -0.19005955141717237, "w": 0.0686691522213852 } }
{ "x_m": -0.0204544977852551, "y_m": 0.012387642462221293, "z_m": 0.039459997718298556, "roll_rad": 0.18266481861249234, "pitch_rad": 0.05311537858944493, "yaw_rad": 0.07535796053538034 }
{ "x_m": 0.0204544977852551, "y_m": -0.012387642462221293, "z_m": -0.039459997718298556, "roll_rad": -0.17853572394307024, "pitch_rad": -0.06578228764918889, "yaw_rad": -0.06460213731154747 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.028158796893211307, "local_y_m": 0.004266883726653819, "local_z_m": 0.031882927007303385, "local_roll_rad": -0.39033901924914666, "local_pitch_rad": -0.2540536292320501, "local_yaw_rad": -0.20900369103234667, "local_roll_deg": -22.364778382251902, "lo...
{ "camera": { "visible": true, "u_px": 660.2652752858166, "v_px": 682.8019441363986, "depth_m": 0.28207757235033337, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000041
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000041_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.5181442275391996, "y": 0.3028396426935056, "z": 0.09379486488644474 }, "orientation_xyzw": { "x": 0.8907535790796128, "y": -0.21739578737457388, "z": -0.2501574015489818, "w": 0.310995831867423 } }
{ "x_m": -0.013858386435202208, "y_m": -0.02736112789092121, "z_m": 0.04108780061213757, "roll_rad": -0.1404450332947863, "pitch_rad": 0.2110446166942335, "yaw_rad": -0.19743412766987414 }
{ "x_m": 0.013858386435202208, "y_m": 0.02736112789092121, "z_m": -0.04108780061213757, "roll_rad": 0.09942302394759256, "pitch_rad": -0.23294885094971451, "yaw_rad": 0.1708922138580335 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.008727642231233318, "local_y_m": 0.03551826116820182, "local_z_m": 0.023152795616124912, "local_roll_rad": -0.33056653086642396, "local_pitch_rad": 0.2968854751382988, "local_yaw_rad": -0.38650080750134147, "local_roll_deg": -18.94006706692715, "loca...
{ "camera": { "visible": true, "u_px": 579.6020865205712, "v_px": 413.5050184709991, "depth_m": 0.2354014142855384, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000042
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000042_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.49325801358813, "y": 0.26685608719206166, "z": 0.1055152147520433 }, "orientation_xyzw": { "x": 0.9340580420470974, "y": 0.03202840035506319, "z": 0.20809329216184952, "w": 0.2884561273661594 } }
{ "x_m": 0.037483915093222464, "y_m": -0.01823726058209396, "z_m": 0.027385650232932157, "roll_rad": -0.15271146666068405, "pitch_rad": 0.025300173202744667, "yaw_rad": -0.035984939550419905 }
{ "x_m": -0.037483915093222464, "y_m": 0.01823726058209396, "z_m": -0.027385650232932157, "roll_rad": 0.15177274245747233, "pitch_rad": -0.030464391055935406, "yaw_rad": 0.031732802358069204 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.024835679934139446, "local_y_m": 0.009291161687954358, "local_z_m": 0.03495694197846258, "local_roll_rad": 0.3806694263980002, "local_pitch_rad": 0.15217661799383522, "local_yaw_rad": 0.25373401322476474, "local_roll_deg": 21.81075152227134, "local_pi...
{ "camera": { "visible": true, "u_px": 424.81427441226936, "v_px": 592.8883641438517, "depth_m": 0.2466486642264966, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000043
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000043_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.45166959762551173, "y": 0.3125847626859187, "z": 0.08573043098635269 }, "orientation_xyzw": { "x": 0.8871109153455085, "y": -0.11328238377894492, "z": 0.09782051283509838, "w": 0.4366147875059806 } }
{ "x_m": 0.024702927053198875, "y_m": -0.011652746274791292, "z_m": 0.046244688744432993, "roll_rad": -0.27159602122365145, "pitch_rad": -0.13279756100841938, "yaw_rad": 0.01640723582037943 }
{ "x_m": -0.024702927053198875, "y_m": 0.011652746274791292, "z_m": -0.046244688744432993, "roll_rad": 0.2718226471450849, "pitch_rad": 0.1323240609309196, "yaw_rad": 0.01988615175132916 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.02624480778212882, "local_y_m": -0.033072168273333494, "local_z_m": 0.01447017563973611, "local_roll_rad": 0.3035619883639367, "local_pitch_rad": 0.41021587919229235, "local_yaw_rad": -0.12469044358891988, "local_roll_deg": 17.39282075385298, "local_...
{ "camera": { "visible": true, "u_px": 416.85693752421673, "v_px": 493.316555220643, "depth_m": 0.25280376916710373, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000044
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000044_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.5161432655643783, "y": 0.25651105836724314, "z": 0.07457943871091785 }, "orientation_xyzw": { "x": 0.8891539853132762, "y": -0.14595342842552814, "z": -0.23855618416975755, "w": 0.3622067560478643 } }
{ "x_m": -0.026998190849331305, "y_m": 0.02069137510387309, "z_m": 0.028814598755468435, "roll_rad": -0.31801708557791714, "pitch_rad": 0.045487285866446625, "yaw_rad": -0.11569248537215111 }
{ "x_m": 0.026998190849331305, "y_m": -0.02069137510387309, "z_m": -0.028814598755468435, "roll_rad": 0.3115828986974006, "pitch_rad": -0.07907970560362906, "yaw_rad": 0.09596990344256053 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.0407186924073801, "local_y_m": 0.018067975811969093, "local_z_m": 0.003870887573669918, "local_roll_rad": -0.34700735594971077, "local_pitch_rad": 0.3739623053516918, "local_yaw_rad": -0.22098616398266965, "local_roll_deg": -19.882056955912304, "local...
{ "camera": { "visible": true, "u_px": 664.255743158304, "v_px": 602.6583846593503, "depth_m": 0.26930886134720955, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000046
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000046_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.5237187519706341, "y": 0.2722178394504331, "z": 0.09289036493551933 }, "orientation_xyzw": { "x": 0.9802602040673359, "y": 0.14785984148188444, "z": -0.12324212853200538, "w": 0.04515282221209883 } }
{ "x_m": -0.017765982653922707, "y_m": 0.012862505313434358, "z_m": 0.04065030293480665, "roll_rad": 0.08403559425018133, "pitch_rad": 0.13675219052611312, "yaw_rad": -0.07598102564277365 }
{ "x_m": 0.017765982653922707, "y_m": -0.012862505313434358, "z_m": -0.04065030293480665, "roll_rad": -0.094941949166874, "pitch_rad": -0.12944304538623225, "yaw_rad": 0.08789738503425637 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.021143926577995804, "local_y_m": 0.03332592058619304, "local_z_m": 0.022146445477609383, "local_roll_rad": -0.29441697462979005, "local_pitch_rad": -0.39151752927106165, "local_yaw_rad": 0.30217262591294747, "local_roll_deg": -16.868850063297202, "loc...
{ "camera": { "visible": true, "u_px": 661.9766960672277, "v_px": 651.5062909612243, "depth_m": 0.2780228996510776, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000047
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000047_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.47332121045038106, "y": 0.2451850751603493, "z": 0.09600678373803441 }, "orientation_xyzw": { "x": 0.9943054695530731, "y": 0.10238969842595173, "z": 0.020674292882203352, "w": 0.021108208993339865 } }
{ "x_m": -0.005521571392547608, "y_m": -0.016344259338822165, "z_m": 0.04512506248704162, "roll_rad": 0.27472997984495645, "pitch_rad": 0.06401760216895518, "yaw_rad": 0.15263261679635023 }
{ "x_m": 0.005521571392547608, "y_m": 0.016344259338822165, "z_m": -0.04512506248704162, "roll_rad": -0.26315768659516964, "pitch_rad": -0.10228383311116569, "yaw_rad": -0.1302319375867135 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.03494888250822159, "local_y_m": -0.014557384139366055, "local_z_m": 0.02624369231529189, "local_roll_rad": 0.02529964670928596, "local_pitch_rad": -0.41873789854379023, "local_yaw_rad": 0.3432083867925261, "local_roll_deg": 1.449562979614127, "local_p...
{ "camera": { "visible": true, "u_px": 644.9987575178243, "v_px": 576.8373951158346, "depth_m": 0.27300109765989494, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000048
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000048_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.46606956670481003, "y": 0.2894212411449437, "z": 0.11160592810320566 }, "orientation_xyzw": { "x": 0.9781979382235032, "y": 0.18339601351705667, "z": 0.0916369343623369, "w": 0.03312654739045243 } }
{ "x_m": 0.014204244329912186, "y_m": -0.013914371728107389, "z_m": 0.05657034614727152, "roll_rad": 0.342633116655333, "pitch_rad": -0.062410589319829415, "yaw_rad": 0.32044638250766194 }
{ "x_m": -0.014204244329912186, "y_m": 0.013914371728107389, "z_m": -0.05657034614727152, "roll_rad": -0.3445716768296794, "pitch_rad": -0.050093383444235966, "yaw_rad": -0.3225290297376714 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.01163882526088266, "local_y_m": -0.014962685575560157, "local_z_m": 0.043158060771278574, "local_roll_rad": 0.16539209704429755, "local_pitch_rad": -0.3623104876922647, "local_yaw_rad": 0.5633069873773853, "local_roll_deg": 9.476269125456387, "local_...
{ "camera": { "visible": true, "u_px": 542.5301082917033, "v_px": 524.350311868727, "depth_m": 0.2815580085718797, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000049
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000049_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4604894488194199, "y": 0.2417801076293919, "z": 0.083591145615619 }, "orientation_xyzw": { "x": 0.9101731884070164, "y": 0.23182565384641649, "z": -0.06119835358962247, "w": 0.3377815786001464 } }
{ "x_m": 0.016589084478664473, "y_m": -0.03955588511614361, "z_m": 0.04948073138804787, "roll_rad": 0.13215699387996135, "pitch_rad": 0.060860040335044725, "yaw_rad": 0.45499048073978454 }
{ "x_m": -0.016589084478664473, "y_m": 0.03955588511614361, "z_m": -0.04948073138804787, "roll_rad": -0.09258578906076033, "pitch_rad": -0.11230218400138642, "yaw_rad": -0.4457538662683969 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.03425152708609529, "local_y_m": -0.02860212483203097, "local_z_m": 0.0158354127820731, "local_roll_rad": -0.27824749835222995, "local_pitch_rad": 0.18771036149621587, "local_yaw_rad": 0.5821796706083057, "local_roll_deg": -15.942407315656103, "local_p...
{ "camera": { "visible": true, "u_px": 572.0200144601174, "v_px": 425.09652365615653, "depth_m": 0.2680947247860727, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000051
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000051_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4824912553243976, "y": 0.2522029111894146, "z": 0.09997985780039403 }, "orientation_xyzw": { "x": 0.9867584419709975, "y": 0.008720057476158491, "z": 0.022225374877096086, "w": 0.16042995514602265 } }
{ "x_m": -0.003382894941140413, "y_m": 0.018535936081177096, "z_m": 0.04138926559913103, "roll_rad": -0.046231242227555557, "pitch_rad": -0.08321043560321836, "yaw_rad": 0.3540180181419053 }
{ "x_m": 0.003382894941140413, "y_m": -0.018535936081177096, "z_m": -0.04138926559913103, "roll_rad": 0.014631588260733611, "pitch_rad": 0.09403678259867258, "yaw_rad": -0.35140463096594904 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.036036116378428254, "local_y_m": -0.013748194803153651, "local_z_m": 0.029123553843594618, "local_roll_rad": 0.03367922838048278, "local_pitch_rad": -0.14128258126158835, "local_yaw_rad": 0.15301109024431284, "local_roll_deg": 1.9296776434588863, "loc...
{ "camera": { "visible": true, "u_px": 501.61062974912437, "v_px": 613.2214056881792, "depth_m": 0.2789466366192633, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000052
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000052_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.46186280953704184, "y": 0.2865229252288146, "z": 0.10935980055127234 }, "orientation_xyzw": { "x": 0.9503486212593568, "y": -0.13063810868017095, "z": 0.13999543910567835, "w": 0.24530075348542196 } }
{ "x_m": 0.012785052516184892, "y_m": 0.0001305616603166082, "z_m": 0.0504593286123205, "roll_rad": -0.03829971719737757, "pitch_rad": -0.19173228432236727, "yaw_rad": 0.1553593400185324 }
{ "x_m": -0.012785052516184892, "y_m": -0.0001305616603166082, "z_m": -0.0504593286123205, "roll_rad": 0.008526709620800554, "pitch_rad": 0.19529039519621633, "yaw_rad": -0.15084070488848317 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.003453264052692448, "local_y_m": -0.028911351559531662, "local_z_m": 0.03873201792639238, "local_roll_rad": 0.33053156505548126, "local_pitch_rad": 0.0012674057330547138, "local_yaw_rad": -0.07008071417085225, "local_roll_deg": 18.93806367353288, "lo...
{ "camera": { "visible": true, "u_px": 513.5063322102708, "v_px": 568.8374190266683, "depth_m": 0.2758646633991663, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000053
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000053_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.5137574929183361, "y": 0.33140026408108453, "z": 0.0796621940446382 }, "orientation_xyzw": { "x": 0.9687770916047226, "y": -0.21173476076195433, "z": -0.12776225876831687, "w": 0.017780413420125173 } }
{ "x_m": -0.012888485115076675, "y_m": 0.035182176532674914, "z_m": 0.04061048526242117, "roll_rad": 0.1558800355917148, "pitch_rad": -0.07593201104659332, "yaw_rad": -0.08787120782296585 }
{ "x_m": 0.012888485115076675, "y_m": -0.035182176532674914, "z_m": -0.04061048526242117, "roll_rad": -0.14920734033078534, "pitch_rad": 0.08838962950739143, "yaw_rad": 0.07532748695299482 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.04103515915779543, "local_y_m": 0.024398138424699463, "local_z_m": 0.009502862610455194, "local_roll_rad": -0.2725705571517993, "local_pitch_rad": -0.35557185508005257, "local_yaw_rad": -0.4140044385891716, "local_roll_deg": -15.617142544327496, "loc...
{ "camera": { "visible": true, "u_px": 604.5954629868106, "v_px": 671.9555670559059, "depth_m": 0.29204474324161045, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000054
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000054_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.45456321091110047, "y": 0.27413726423606694, "z": 0.09940689916367144 }, "orientation_xyzw": { "x": 0.9831708031505935, "y": -0.08907534226812551, "z": 0.04784069806989865, "w": 0.15215788786723528 } }
{ "x_m": 0.019024870795420368, "y_m": 0.00939465379591986, "z_m": 0.04310529890663073, "roll_rad": 0.18957397323870265, "pitch_rad": -0.06303423094941765, "yaw_rad": -0.09933169865423476 }
{ "x_m": -0.019024870795420368, "y_m": -0.00939465379591986, "z_m": -0.04310529890663073, "roll_rad": -0.18298292039025724, "pitch_rad": 0.08033273821115881, "yaw_rad": 0.08596267976829564 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.00139549556841598, "local_y_m": -0.03865224070380559, "local_z_m": 0.030044577994886176, "local_roll_rad": 0.11506595779332678, "local_pitch_rad": -0.16715024305582546, "local_yaw_rad": -0.01805792286880084, "local_roll_deg": 6.592793747188088, "local...
{ "camera": { "visible": true, "u_px": 539.4204646468868, "v_px": 677.6018427400574, "depth_m": 0.2851656899008185, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000056
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000056_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.5081301588945, "y": 0.3310937998842459, "z": 0.07856575166260481 }, "orientation_xyzw": { "x": 0.9524968225999945, "y": -0.22664983365833186, "z": 0.13723910040989148, "w": 0.1501502086520321 } }
{ "x_m": 0.016986843920891448, "y_m": 0.013511349762739988, "z_m": 0.045543132781147744, "roll_rad": 0.09362445273287097, "pitch_rad": -0.19502625683755903, "yaw_rad": -0.16337010416832873 }
{ "x_m": -0.016986843920891448, "y_m": -0.013511349762739988, "z_m": -0.045543132781147744, "roll_rad": -0.06223025610400547, "pitch_rad": 0.20705605314319403, "yaw_rad": 0.14773705452855773 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.04459930415245263, "local_y_m": 0.019319346476985872, "local_z_m": 0.008313989304628637, "local_roll_rad": 0.33318042104409146, "local_pitch_rad": -0.22024484864249486, "local_yaw_rad": -0.2274515319718328, "local_roll_deg": 19.089831942218197, "loca...
{ "camera": { "visible": true, "u_px": 449.04772874378, "v_px": 617.8003732495486, "depth_m": 0.2839781284527446, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000057
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000057_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.5331910123378293, "y": 0.3043763883074867, "z": 0.09710931094345233 }, "orientation_xyzw": { "x": 0.9074250298877476, "y": 0.09455542249849525, "z": 0.10151143266743219, "w": 0.3966541519348524 } }
{ "x_m": -0.013930184688677016, "y_m": 0.011073891640637767, "z_m": 0.04560441245442903, "roll_rad": -0.09513260601710398, "pitch_rad": -0.18860608214896749, "yaw_rad": 0.048219633663225334 }
{ "x_m": 0.013930184688677016, "y_m": -0.011073891640637767, "z_m": -0.04560441245442903, "roll_rad": 0.0876052644490872, "pitch_rad": 0.19218460441056698, "yaw_rad": -0.030765366667967996 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.01659389559147463, "local_y_m": 0.037462618381154014, "local_z_m": 0.02767070333110985, "local_roll_rad": 0.11912623108396984, "local_pitch_rad": 0.3689688072833507, "local_yaw_rad": 0.3356007864230984, "local_roll_deg": 6.82543027041163, "local_pitc...
{ "camera": { "visible": true, "u_px": 571.8011745725657, "v_px": 591.428842969779, "depth_m": 0.2810570999263074, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000058
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000058_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.48771013545458436, "y": 0.23936266592929067, "z": 0.08694381098223852 }, "orientation_xyzw": { "x": 0.9185277305360144, "y": 0.11116798369723474, "z": 0.030733997129140003, "w": 0.37815857660182245 } }
{ "x_m": -0.031128682376388994, "y_m": 0.004419507180328519, "z_m": 0.03614347995524714, "roll_rad": -0.2548860584688927, "pitch_rad": -0.08818084136649564, "yaw_rad": 0.23308397915305037 }
{ "x_m": 0.031128682376388994, "y_m": -0.004419507180328519, "z_m": -0.03614347995524714, "roll_rad": 0.22993549174491548, "pitch_rad": 0.1416278283311511, "yaw_rad": -0.20539572032448924 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.0444647682313697, "local_y_m": -0.014273786801814481, "local_z_m": 0.016342109616793526, "local_roll_rad": -0.028064977461741802, "local_pitch_rad": 0.3126111734919682, "local_yaw_rad": 0.35910311478307005, "local_roll_deg": -1.6080047606875831, "loca...
{ "camera": { "visible": true, "u_px": 686.0631034326241, "v_px": 577.9338819820073, "depth_m": 0.27727882181954233, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000059
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000059_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.5093201774517251, "y": 0.27432985543377325, "z": 0.11508876556413986 }, "orientation_xyzw": { "x": 0.9019564993216849, "y": 0.03191332423493092, "z": 0.1295717490551296, "w": 0.41069109427213324 } }
{ "x_m": -0.015486901885178761, "y_m": -0.01852923026340081, "z_m": 0.04704193771283194, "roll_rad": -0.3318158273286349, "pitch_rad": -0.09659198350989595, "yaw_rad": 0.25992710748910103 }
{ "x_m": 0.015486901885178761, "y_m": 0.01852923026340081, "z_m": -0.04704193771283194, "roll_rad": 0.3002751567450295, "pitch_rad": 0.17269916677118755, "yaw_rad": -0.2175519685594945 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.01599554113865861, "local_y_m": 0.015788064323867982, "local_z_m": 0.04422689151587456, "local_roll_rad": 0.22978835267582104, "local_pitch_rad": 0.3932433819802032, "local_yaw_rad": 0.2005454515991732, "local_roll_deg": 13.165902789588243, "local_pit...
{ "camera": { "visible": true, "u_px": 643.5059370008321, "v_px": 499.7625624486799, "depth_m": 0.2516834438833183, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000061
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000061_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.5153506576916818, "y": 0.3288739262151951, "z": 0.07340274507673353 }, "orientation_xyzw": { "x": 0.9677098650441776, "y": -0.2352916716779869, "z": 0.01400846829649273, "w": 0.08932641911072163 } }
{ "x_m": -0.04300011297104156, "y_m": 0.04621759348360788, "z_m": 0.025579505152029336, "roll_rad": -0.01820210054193001, "pitch_rad": -0.020079437488662658, "yaw_rad": -0.24362045804830718 }
{ "x_m": 0.04300011297104156, "y_m": -0.04621759348360788, "z_m": -0.025579505152029336, "roll_rad": 0.02251048900726637, "pitch_rad": 0.015092120579942516, "yaw_rad": 0.24397308910831061 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.03708328294819312, "local_y_m": 0.036814019384694883, "local_z_m": 0.0024563779805736046, "local_roll_rad": 0.06208268263385288, "local_pitch_rad": -0.29675805247190706, "local_yaw_rad": -0.32619791881485377, "local_roll_deg": 3.5570756957698997, "lo...
{ "camera": { "visible": true, "u_px": 859.4165444138241, "v_px": 694.3601234575508, "depth_m": 0.2783262915644381, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000062
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000062_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.48478314829966557, "y": 0.3275474790236608, "z": 0.09184842134296092 }, "orientation_xyzw": { "x": 0.9723553979990894, "y": 0.2220717070932437, "z": 0.02153002356034636, "w": 0.06888827894653797 } }
{ "x_m": -0.01267118918508725, "y_m": 0.040195669969779746, "z_m": 0.03602462714517607, "roll_rad": 0.16601267494942698, "pitch_rad": -0.0034935891750446316, "yaw_rad": 0.07220782647644311 }
{ "x_m": 0.01267118918508725, "y_m": -0.040195669969779746, "z_m": -0.03602462714517607, "roll_rad": -0.1658341252901707, "pitch_rad": -0.008485590950988378, "yaw_rad": -0.07179326326914004 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.04773261315594536, "local_y_m": 0.005206641381959382, "local_z_m": 0.021400006621268144, "local_roll_rad": -0.0006860342426725863, "local_pitch_rad": -0.3194809746728811, "local_yaw_rad": 0.5758053081553681, "local_roll_deg": -0.03930686670659292, "l...
{ "camera": { "visible": true, "u_px": 669.8551820089954, "v_px": 748.3784385887891, "depth_m": 0.28895499772887634, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000063
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000063_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.46343287670887673, "y": 0.264202623409757, "z": 0.1163411445134307 }, "orientation_xyzw": { "x": 0.9546952943175602, "y": 0.11268878901076061, "z": 0.12509430433519578, "w": 0.245376337208967 } }
{ "x_m": 0.01402448858623917, "y_m": 0.0031267491178904594, "z_m": 0.054754189851759394, "roll_rad": 0.08877834966095102, "pitch_rad": -0.08136536094736835, "yaw_rad": 0.264495945930612 }
{ "x_m": -0.01402448858623917, "y_m": -0.0031267491178904594, "z_m": -0.054754189851759394, "roll_rad": -0.10710839808339936, "pitch_rad": 0.05498975684685461, "yaw_rad": -0.2710605444030918 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.008809787163275452, "local_y_m": -0.0217570161823547, "local_z_m": 0.04703870830920875, "local_roll_rad": 0.1796299978142697, "local_pitch_rad": 0.06000590146903752, "local_yaw_rad": 0.3987109522449045, "local_roll_deg": 10.292040748701856, "local_pit...
{ "camera": { "visible": true, "u_px": 522.757933119777, "v_px": 616.5560164303513, "depth_m": 0.28800194844765004, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000064
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000064_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.46929748798100607, "y": 0.3250554739953145, "z": 0.08893433280915353 }, "orientation_xyzw": { "x": 0.9546889268204565, "y": 0.10355045562366169, "z": -0.08312249682787039, "w": 0.2663400207772724 } }
{ "x_m": 0.005939604604591087, "y_m": 0.010426518805451201, "z_m": 0.04976803245416672, "roll_rad": 0.025648998927279832, "pitch_rad": 0.026578058723611974, "yaw_rad": 0.2959023936519576 }
{ "x_m": -0.005939604604591087, "y_m": -0.010426518805451201, "z_m": -0.04976803245416672, "roll_rad": -0.016794679113151183, "pitch_rad": -0.032896047469106265, "yaw_rad": -0.29528523391440525 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.04881788383704061, "local_y_m": -0.009885646862366936, "local_z_m": 0.0189344476670198, "local_roll_rad": -0.22030258041124967, "local_pitch_rad": 0.06575073332212825, "local_yaw_rad": 0.2953876868095588, "local_roll_deg": -12.62240807340605, "local_...
{ "camera": { "visible": true, "u_px": 548.0324772307614, "v_px": 552.208422818036, "depth_m": 0.28342550697709834, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000066
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000066_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.47048221727603967, "y": 0.29602717368014164, "z": 0.11943278852401756 }, "orientation_xyzw": { "x": 0.9173309188983476, "y": -0.13009953463947813, "z": -0.16475362966937132, "w": 0.3382814476593008 } }
{ "x_m": 0.007325723459338351, "y_m": -0.006409829469897377, "z_m": 0.06525212221098675, "roll_rad": -0.04553067174449163, "pitch_rad": 0.13247456572880575, "yaw_rad": -0.09151433733504348 }
{ "x_m": -0.007325723459338351, "y_m": 0.006409829469897377, "z_m": -0.06525212221098675, "roll_rad": 0.03358220212855489, "pitch_rad": -0.13597648780835797, "yaw_rad": 0.08620663815509971 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.019374561531419005, "local_y_m": -0.012771278825515642, "local_z_m": 0.0491344600830952, "local_roll_rad": -0.22505297207956676, "local_pitch_rad": 0.28026943269100363, "local_yaw_rad": -0.18160938261841264, "local_roll_deg": -12.894585467034728, "lo...
{ "camera": { "visible": true, "u_px": 584.3734537476629, "v_px": 493.23856955954943, "depth_m": 0.28361936076890615, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000067
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000067_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4823311527883037, "y": 0.23914523032051363, "z": 0.10499380888818352 }, "orientation_xyzw": { "x": 0.9729424221703219, "y": -0.22091253786984777, "z": -0.023770899640108915, "w": 0.06336906251121356 } }
{ "x_m": 0.020506206988385567, "y_m": 0.012022880539079739, "z_m": 0.05500274530234317, "roll_rad": 0.05913497681341655, "pitch_rad": 0.0886265001717036, "yaw_rad": -0.20118549832592575 }
{ "x_m": -0.020506206988385567, "y_m": -0.012022880539079739, "z_m": -0.05500274530234317, "roll_rad": -0.07584950246716618, "pitch_rad": -0.07483341302281575, "yaw_rad": 0.20664916471420466 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.04135991209409829, "local_y_m": -0.008285746857666849, "local_z_m": 0.034355295613671545, "local_roll_rad": -0.03220122331799672, "local_pitch_rad": -0.3292983248849478, "local_yaw_rad": -0.33242519942454285, "local_roll_deg": -1.8449941912794652, "lo...
{ "camera": { "visible": true, "u_px": 530.5392715746697, "v_px": 598.0357165759237, "depth_m": 0.29822978925333027, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000068
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000068_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.5010020755409356, "y": 0.2759354803077885, "z": 0.1233560355998837 }, "orientation_xyzw": { "x": 0.9233329661546231, "y": -0.22217968353907555, "z": -0.1993210519096765, "w": 0.24158547162485144 } }
{ "x_m": -0.006774758603031228, "y_m": -0.02303190981248543, "z_m": 0.06659799323891669, "roll_rad": 0.056170063933845604, "pitch_rad": 0.15275486523013015, "yaw_rad": -0.3001475377591884 }
{ "x_m": 0.006774758603031228, "y_m": 0.02303190981248543, "z_m": -0.06659799323891669, "roll_rad": -0.09953646176025226, "pitch_rad": -0.12888751775423601, "yaw_rad": 0.3108758333795628 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.003988718981243259, "local_y_m": 0.012058034405546396, "local_z_m": 0.053313240149403515, "local_roll_rad": -0.2688244629855564, "local_pitch_rad": 0.12284394945621441, "local_yaw_rad": -0.39742460394602575, "local_roll_deg": -15.4025071589432, "local...
{ "camera": { "visible": true, "u_px": 590.1170015073747, "v_px": 442.47700075429935, "depth_m": 0.2777243782328761, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000069
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000069_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.5123946174290578, "y": 0.30656694189676986, "z": 0.11033615369386354 }, "orientation_xyzw": { "x": 0.920533366367636, "y": -0.07212103143841322, "z": -0.041583309872398666, "w": 0.3816905900964591 } }
{ "x_m": 0.0028973971333007276, "y_m": -0.022244062123718433, "z_m": 0.06679850471079063, "roll_rad": -0.10551411130293016, "pitch_rad": 0.1374640409900895, "yaw_rad": -0.22147638138265358 }
{ "x_m": -0.0028973971333007276, "y_m": 0.022244062123718433, "z_m": -0.06679850471079063, "roll_rad": 0.07378191788512471, "pitch_rad": -0.1567169695984143, "yaw_rad": 0.20841011269332851 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.022968308359484556, "local_y_m": 0.029413323698904457, "local_z_m": 0.04035914256045361, "local_roll_rad": -0.023216962740804273, "local_pitch_rad": 0.325720788887312, "local_yaw_rad": -0.03773760914951263, "local_roll_deg": -1.330233978160569, "loca...
{ "camera": { "visible": true, "u_px": 548.6787418135585, "v_px": 397.02742021527024, "depth_m": 0.26936734205716867, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000071
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000071_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.45622287813614515, "y": 0.31778252523872924, "z": 0.10217252365346463 }, "orientation_xyzw": { "x": 0.9705890048960389, "y": 0.07625813096675735, "z": -0.18319463369606934, "w": 0.13631363549306677 } }
{ "x_m": -0.04259035703961478, "y_m": 0.029319679523765407, "z_m": 0.05992644547558412, "roll_rad": 0.06727388818024593, "pitch_rad": 0.16714321039832383, "yaw_rad": 0.20447856993724284 }
{ "x_m": 0.04259035703961478, "y_m": -0.029319679523765407, "z_m": -0.05992644547558412, "roll_rad": -0.032633548438308076, "pitch_rad": -0.17710618962800137, "yaw_rad": -0.19594351200222915 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.038686510806595895, "local_y_m": -0.02482632157074267, "local_z_m": 0.0313399492678485, "local_roll_rad": -0.40378107646026734, "local_pitch_rad": -0.18195223849028067, "local_yaw_rad": 0.1500963401663724, "local_roll_deg": -23.134951528422512, "loca...
{ "camera": { "visible": true, "u_px": 747.6256841294257, "v_px": 619.6924215439761, "depth_m": 0.3034242773229864, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000072
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000072_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.46952835951771527, "y": 0.3197270907556169, "z": 0.10611622695498757 }, "orientation_xyzw": { "x": 0.8793767671522122, "y": -0.2899486711313858, "z": -0.2780153955776024, "w": 0.25560459566270843 } }
{ "x_m": -0.024140142781152618, "y_m": 0.033217941000628304, "z_m": 0.0573821616141974, "roll_rad": -0.001285541424399347, "pitch_rad": 0.29228939862191106, "yaw_rad": -0.11980323622284511 }
{ "x_m": 0.024140142781152618, "y_m": -0.033217941000628304, "z_m": -0.0573821616141974, "roll_rad": -0.034616857559610956, "pitch_rad": -0.2902933436685476, "yaw_rad": 0.12467461297393552 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.0419682130471251, "local_y_m": -0.0048183622386077, "local_z_m": 0.03629608260317896, "local_roll_rad": -0.35888731830895737, "local_pitch_rad": 0.23538481764210867, "local_yaw_rad": -0.5583581700326996, "local_roll_deg": -20.562728659871414, "local_...
{ "camera": { "visible": true, "u_px": 796.8061966471289, "v_px": 640.1503127047314, "depth_m": 0.2924404207135074, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000073
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000073_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.5107369223689072, "y": 0.3224585576870658, "z": 0.08635367872296706 }, "orientation_xyzw": { "x": 0.9020087234195416, "y": 0.18380742468840283, "z": 0.008296806090128535, "w": 0.39054610036866183 } }
{ "x_m": 0.06873629004753279, "y_m": 0.007740524090126766, "z_m": 0.044014510791689165, "roll_rad": -0.12569729758644366, "pitch_rad": 0.25592092027817276, "yaw_rad": 0.031179401638039287 }
{ "x_m": -0.06873629004753279, "y_m": -0.007740524090126766, "z_m": -0.044014510791689165, "roll_rad": 0.1378316882357378, "pitch_rad": -0.24969562558246308, "yaw_rad": -0.06469798169443614 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.03828992801175115, "local_y_m": 0.037314005598656164, "local_z_m": 0.016601064525199098, "local_roll_rad": -0.13547407755483173, "local_pitch_rad": 0.32961641311588386, "local_yaw_rad": 0.5142088939002329, "local_roll_deg": -7.762092877319854, "local...
{ "camera": { "visible": true, "u_px": 435.1135113697759, "v_px": 566.6536361919837, "depth_m": 0.2888063529117335, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000074
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000074_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.44185315849315493, "y": 0.24777944034957636, "z": 0.07449339537068579 }, "orientation_xyzw": { "x": 0.9680342245015002, "y": 0.15532912909802862, "z": 0.03894495853973163, "w": 0.19304375683187933 } }
{ "x_m": 0.06486832618047006, "y_m": 0.02587285219433183, "z_m": 0.03221541254702598, "roll_rad": -0.06464153677682033, "pitch_rad": 0.14624028955395788, "yaw_rad": 0.255886772844793 }
{ "x_m": -0.06486832618047006, "y_m": -0.02587285219433183, "z_m": -0.03221541254702598, "roll_rad": 0.10024260795526356, "pitch_rad": -0.1246533872378909, "yaw_rad": -0.26688457010558486 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.028691303500718763, "local_y_m": -0.047911826916447874, "local_z_m": 0.0040439186077860225, "local_roll_rad": 0.00897861102650685, "local_pitch_rad": -0.06778129670481733, "local_yaw_rad": 0.4469221394322914, "local_roll_deg": 0.5144365177084662, "loc...
{ "camera": { "visible": true, "u_px": 276.171169986153, "v_px": 604.8140984906821, "depth_m": 0.28918092526042694, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000076
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000076_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.5199124445594476, "y": 0.3199598975325075, "z": 0.10165853473642576 }, "orientation_xyzw": { "x": 0.890273564425293, "y": -0.1991500673285454, "z": 0.03787599993422398, "w": 0.40782059756405414 } }
{ "x_m": -0.02045883601165699, "y_m": 0.012795134502034566, "z_m": 0.038719594734514695, "roll_rad": -0.25201518387192473, "pitch_rad": 0.018417372211298442, "yaw_rad": 0.03864582517959325 }
{ "x_m": 0.02045883601165699, "y_m": -0.012795134502034566, "z_m": -0.038719594734514695, "roll_rad": 0.25254314798315863, "pitch_rad": -0.008187199527379726, "yaw_rad": -0.04201832617327446 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.03188813085931762, "local_y_m": 0.03497994651044962, "local_z_m": 0.030949652749006257, "local_roll_rad": 0.247595435179374, "local_pitch_rad": 0.33988817050464143, "local_yaw_rad": -0.3010271152774814, "local_roll_deg": 14.186173462483078, "local_pi...
{ "camera": { "visible": true, "u_px": 652.8748873933597, "v_px": 588.8105756529335, "depth_m": 0.2668198148799395, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000077
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000077_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4527117191337952, "y": 0.2752237578017165, "z": 0.11227254033874977 }, "orientation_xyzw": { "x": 0.9683357465250761, "y": 0.03321125779448167, "z": -0.14898412002107447, "w": 0.19755157893314348 } }
{ "x_m": -0.03526521849077269, "y_m": 0.053196062957730994, "z_m": 0.040351447831938225, "roll_rad": -0.1545121768386662, "pitch_rad": 0.10774246113430241, "yaw_rad": 0.051221064118761046 }
{ "x_m": 0.03526521849077269, "y_m": -0.053196062957730994, "z_m": -0.040351447831938225, "roll_rad": 0.16059918992621602, "pitch_rad": -0.09839299746564902, "yaw_rad": -0.06749375026246276 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.004723610356697067, "local_y_m": -0.04001732770458021, "local_z_m": 0.04119391361697746, "local_roll_rad": -0.3147206765278521, "local_pitch_rad": -0.054835790080835424, "local_yaw_rad": 0.11171531910635049, "local_roll_deg": -18.032166490547915, "loc...
{ "camera": { "visible": true, "u_px": 750.6998149290845, "v_px": 678.1072496844148, "depth_m": 0.2971821372082189, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000078
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000078_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.46986217756456666, "y": 0.28432806032931773, "z": 0.12609683701485228 }, "orientation_xyzw": { "x": 0.8932128143348392, "y": 0.1953111397982441, "z": 0.27081976887055165, "w": 0.3011329934890031 } }
{ "x_m": 0.06965892835832088, "y_m": 0.016012731730441376, "z_m": 0.06174952617758245, "roll_rad": -0.15735867945255727, "pitch_rad": -0.0499043240780406, "yaw_rad": 0.3001424816737141 }
{ "x_m": -0.06965892835832088, "y_m": -0.016012731730441376, "z_m": -0.06174952617758245, "roll_rad": 0.13615161114035237, "pitch_rad": 0.09353340111789957, "yaw_rad": -0.28982526079279075 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.0038709321851778215, "local_y_m": -0.01700752070155686, "local_z_m": 0.055472231917343545, "local_roll_rad": 0.386943134248048, "local_pitch_rad": 0.26870209314163934, "local_yaw_rad": 0.5963005968438692, "local_roll_deg": 22.17020850397717, "local_p...
{ "camera": { "visible": true, "u_px": 358.53179226108716, "v_px": 570.5035355148777, "depth_m": 0.2895048569566686, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000079
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000079_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.5378031811844944, "y": 0.31493694877622697, "z": 0.09291538945461605 }, "orientation_xyzw": { "x": 0.9284038435389752, "y": 0.24200991360577317, "z": -0.1049965563786739, "w": 0.26167389661027407 } }
{ "x_m": 0.015547382850642721, "y_m": 0.009036187070115553, "z_m": 0.059982234950231916, "roll_rad": -0.08870096341665969, "pitch_rad": 0.07805406599630764, "yaw_rad": 0.43919316442187234 }
{ "x_m": -0.015547382850642721, "y_m": -0.009036187070115553, "z_m": -0.059982234950231916, "roll_rad": 0.11350673703202085, "pitch_rad": -0.0326359342497804, "yaw_rad": -0.44451328207070845 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.025801583650707408, "local_y_m": 0.047551080274205, "local_z_m": 0.022030243332896608, "local_roll_rad": -0.33310386121951263, "local_pitch_rad": 0.018398148381040078, "local_yaw_rad": 0.5579124686467473, "local_roll_deg": -19.08544538738957, "local_...
{ "camera": { "visible": true, "u_px": 418.5947481156369, "v_px": 476.6899209314743, "depth_m": 0.2807679651838413, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000081
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000081_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.44754479250020757, "y": 0.3059079449806962, "z": 0.10833431007028113 }, "orientation_xyzw": { "x": 0.8785056621693373, "y": 0.2000921963272945, "z": -0.10642170728570736, "w": 0.4205536050537777 } }
{ "x_m": 0.0017993277767299753, "y_m": -0.03195440591336057, "z_m": 0.05160420619631667, "roll_rad": -0.17001141674733056, "pitch_rad": 0.24272758402646008, "yaw_rad": 0.327701044350402 }
{ "x_m": -0.0017993277767299753, "y_m": 0.03195440591336057, "z_m": -0.05160420619631667, "roll_rad": 0.2422841444827497, "pitch_rad": -0.17064919303508044, "yaw_rad": -0.36930984953434415 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.02855870934919542, "local_y_m": -0.03631830656459963, "local_z_m": 0.037597630962534705, "local_roll_rad": -0.3870726686620142, "local_pitch_rad": 0.35756292915996113, "local_yaw_rad": 0.5470266470332072, "local_roll_deg": -22.177630279199136, "local...
{ "camera": { "visible": true, "u_px": 708.9982360856585, "v_px": 443.84397304680977, "depth_m": 0.2439890975921738, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000082
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000082_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4692710040384997, "y": 0.29027857344377755, "z": 0.12778029620608589 }, "orientation_xyzw": { "x": 0.9782209303665181, "y": -0.13759821282288123, "z": 0.02809746927081039, "w": 0.15284330355428977 } }
{ "x_m": 0.016733669550192065, "y_m": 0.020650608218707345, "z_m": 0.05399006321460065, "roll_rad": -0.09379347925509425, "pitch_rad": 0.0983844442319567, "yaw_rad": 0.14715070736226254 }
{ "x_m": -0.016733669550192065, "y_m": -0.020650608218707345, "z_m": -0.05399006321460065, "roll_rad": 0.1075601947777395, "pitch_rad": -0.08310093335251822, "yaw_rad": -0.15624778100198536 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.004424984625932884, "local_y_m": -0.016200714790992412, "local_z_m": 0.057316171866666044, "local_roll_rad": 0.08968254728560351, "local_pitch_rad": -0.16916689722762923, "local_yaw_rad": -0.12628150484114323, "local_roll_deg": 5.138431455447519, "lo...
{ "camera": { "visible": true, "u_px": 527.351905530564, "v_px": 558.086578108822, "depth_m": 0.2827192432198522, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000083
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000083_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4635451478753465, "y": 0.25860757172795157, "z": 0.11823659199272854 }, "orientation_xyzw": { "x": 0.9162099665525856, "y": -0.2602130327608958, "z": -0.16215854482811254, "w": 0.25797883849323006 } }
{ "x_m": 0.004275904990739154, "y_m": -0.002478694730608133, "z_m": 0.06755750747551237, "roll_rad": -0.06801461079750598, "pitch_rad": 0.09574001634232344, "yaw_rad": -0.1272472290544952 }
{ "x_m": -0.004275904990739154, "y_m": 0.002478694730608133, "z_m": -0.06755750747551237, "roll_rad": 0.05563526164326089, "pitch_rad": -0.1034105993129986, "yaw_rad": 0.12110768101219714 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.019750184638230486, "local_y_m": -0.03063145570897346, "local_z_m": 0.04754749912926109, "local_roll_rad": -0.16738573528167383, "local_pitch_rad": 0.1365922845390281, "local_yaw_rad": -0.46016148560665904, "local_roll_deg": -9.590496182333949, "local...
{ "camera": { "visible": true, "u_px": 587.6539773452766, "v_px": 495.4632772370437, "depth_m": 0.2906060514375996, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000084
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000084_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.5041230994632317, "y": 0.25394485785185994, "z": 0.12206033928102755 }, "orientation_xyzw": { "x": 0.8992754063634149, "y": -0.2645546263333676, "z": 0.13711019886799944, "w": 0.3201802407424683 } }
{ "x_m": 0.060797318875548845, "y_m": -0.03453286080766965, "z_m": 0.06898611296759194, "roll_rad": -0.11576809889000142, "pitch_rad": -0.07642436036809958, "yaw_rad": -0.26770897753493134 }
{ "x_m": -0.060797318875548845, "y_m": 0.03453286080766965, "z_m": -0.06898611296759194, "roll_rad": 0.1319582579231588, "pitch_rad": 0.04259544832140995, "yaw_rad": 0.2749547454601322 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.03026289595334816, "local_y_m": 0.008489080536771373, "local_z_m": 0.05133000799166674, "local_roll_rad": 0.4278279211033742, "local_pitch_rad": 0.10299756715184652, "local_yaw_rad": -0.36708032783011213, "local_roll_deg": 24.512734237079307, "local_p...
{ "camera": { "visible": true, "u_px": 304.3938866209813, "v_px": 462.8676661331431, "depth_m": 0.27693766960589405, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000086
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000086_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.521651418986963, "y": 0.27418708339327713, "z": 0.12349422695175274 }, "orientation_xyzw": { "x": 0.9563075742130366, "y": -0.0930004592617808, "z": 0.1992539657861186, "w": 0.1926774382183338 } }
{ "x_m": 0.04057832405187345, "y_m": -0.02127223255852212, "z_m": 0.07034033101978987, "roll_rad": -0.062212841912394116, "pitch_rad": -0.1448770481465388, "yaw_rad": -0.14044213326369903 }
{ "x_m": -0.04057832405187345, "y_m": 0.02127223255852212, "z_m": -0.07034033101978987, "roll_rad": 0.08256788724055987, "pitch_rad": 0.13437379693057844, "yaw_rad": 0.15051707467925207 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.018857238862946407, "local_y_m": 0.025626481993619023, "local_z_m": 0.05252173236916235, "local_roll_rad": 0.4239978627814735, "local_pitch_rad": -0.09111861251671349, "local_yaw_rad": 0.05126995828932036, "local_roll_deg": 24.29328805994544, "local_p...
{ "camera": { "visible": true, "u_px": 331.61171112843, "v_px": 474.5058115747645, "depth_m": 0.2767790210296541, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000087
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000087_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.5373699687166701, "y": 0.28002430212770024, "z": 0.11601489672892591 }, "orientation_xyzw": { "x": 0.8728140699862418, "y": -0.33227238560876426, "z": 0.057903563088592784, "w": 0.35275747813130454 } }
{ "x_m": -0.022584375756895647, "y_m": -0.021903677714954273, "z_m": 0.0739408073943486, "roll_rad": -0.11559649474796649, "pitch_rad": -0.24992442834376835, "yaw_rad": -0.26228232494222037 }
{ "x_m": 0.022584375756895647, "y_m": 0.021903677714954273, "z_m": -0.0739408073943486, "roll_rad": 0.1799565072125086, "pitch_rad": 0.20888802080652039, "yaw_rad": 0.2957336487303267 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.01453332497535264, "local_y_m": 0.038828508082129475, "local_z_m": 0.04575878155670236, "local_roll_rad": 0.3466061116094591, "local_pitch_rad": 0.17684717588046295, "local_yaw_rad": -0.5507495462906504, "local_roll_deg": 19.85906734866237, "local_pit...
{ "camera": { "visible": true, "u_px": 495.398571964249, "v_px": 373.3227125764001, "depth_m": 0.27425181517866754, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000088
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000088_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.5035314424580649, "y": 0.3163939927927811, "z": 0.1270077024743681 }, "orientation_xyzw": { "x": 0.9462763917490457, "y": 0.14222260174363258, "z": 0.19724483557118663, "w": 0.2131389143544051 } }
{ "x_m": -0.007540474677471876, "y_m": 0.009482404881272721, "z_m": 0.0684823391431304, "roll_rad": -0.11859138777174767, "pitch_rad": -0.2626201045107034, "yaw_rad": 0.014286698226981575 }
{ "x_m": 0.007540474677471876, "y_m": -0.009482404881272721, "z_m": -0.0684823391431304, "roll_rad": 0.11896329945715971, "pitch_rad": 0.26245495037992594, "yaw_rad": 0.01711343320526511 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.022534322412533336, "local_y_m": 0.009860266547242888, "local_z_m": 0.056899780874130085, "local_roll_rad": 0.3125732821674441, "local_pitch_rad": 0.0314424731449071, "local_yaw_rad": 0.4934681326224082, "local_roll_deg": 17.909129856746347, "local_p...
{ "camera": { "visible": true, "u_px": 533.693836494534, "v_px": 487.349718236636, "depth_m": 0.28665458843832436, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000089
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000089_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4879009712452134, "y": 0.2974828651414187, "z": 0.13106352281855016 }, "orientation_xyzw": { "x": 0.9339577987905057, "y": -0.2964439806492071, "z": -0.18521972110460744, "w": 0.0744140533043165 } }
{ "x_m": -0.1134335410667846, "y_m": 0.03337853869499652, "z_m": 0.07417529323281302, "roll_rad": 0.06949660554648349, "pitch_rad": -0.08990913234058488, "yaw_rad": -0.16178680030717935 }
{ "x_m": 0.1134335410667846, "y_m": -0.03337853869499652, "z_m": -0.07417529323281302, "roll_rad": -0.054402677405332854, "pitch_rad": 0.09975258826287368, "yaw_rad": 0.15594292345796595 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.009476239494664654, "local_y_m": -0.006740258419544424, "local_z_m": 0.06093945470832303, "local_roll_rad": -0.32204754882055164, "local_pitch_rad": -0.18417905936123616, "local_yaw_rad": -0.5934271876260512, "local_roll_deg": -18.451965349950942, "l...
{ "camera": { "visible": true, "u_px": 878.9890098779194, "v_px": 511.7932448442698, "depth_m": 0.3153423741309279, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000091
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000091_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4430485143676172, "y": 0.31116521076659, "z": 0.09608998460749557 }, "orientation_xyzw": { "x": 0.9813205280918083, "y": -0.17006350156820682, "z": -0.055634798661706585, "w": 0.0706625484811198 } }
{ "x_m": -0.040307573524191675, "y_m": 0.03511496199479619, "z_m": 0.04271214838052284, "roll_rad": 0.3010786173272046, "pitch_rad": -0.0658431668537054, "yaw_rad": -0.13120524178044438 }
{ "x_m": 0.040307573524191675, "y_m": -0.03511496199479619, "z_m": -0.04271214838052284, "roll_rad": -0.2913571529388595, "pitch_rad": 0.10126627900695011, "yaw_rad": 0.1063441537988187 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.040064443208575065, "local_y_m": -0.03911504988388433, "local_z_m": 0.027624792440472886, "local_roll_rad": -0.1016837046439271, "local_pitch_rad": -0.3022661305747189, "local_yaw_rad": -0.25494889514389846, "local_roll_deg": -5.826047121351833, "loc...
{ "camera": { "visible": true, "u_px": 825.6537334969637, "v_px": 691.9859952202775, "depth_m": 0.2924402546418465, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000092
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000092_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.45648482796432366, "y": 0.24422571920678157, "z": 0.11398717170774181 }, "orientation_xyzw": { "x": 0.9108458792778643, "y": 0.10176211936898769, "z": 0.0669569609575508, "w": 0.39436153545115826 } }
{ "x_m": 0.034322781977937256, "y_m": -0.022049665923495665, "z_m": 0.05666893099738646, "roll_rad": 0.03594437263240552, "pitch_rad": -0.043877763851930186, "yaw_rad": 0.0608391494439773 }
{ "x_m": -0.034322781977937256, "y_m": 0.022049665923495665, "z_m": -0.05666893099738646, "roll_rad": -0.038578312749467825, "pitch_rad": 0.04158122750883729, "yaw_rad": -0.06243022206647038 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.025335145345846157, "local_y_m": -0.03466854986104959, "local_z_m": 0.04568750374587578, "local_roll_rad": 0.04593180427934054, "local_pitch_rad": 0.35636623435385545, "local_yaw_rad": 0.3470631139841729, "local_roll_deg": 2.6316985306271468, "local_p...
{ "camera": { "visible": true, "u_px": 479.24241538466094, "v_px": 540.7892698576703, "depth_m": 0.27754814099697916, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000093
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000093_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.49513831234032085, "y": 0.2845533023657801, "z": 0.13316412315730813 }, "orientation_xyzw": { "x": 0.9027037980835275, "y": -0.08127607855995468, "z": 0.09803392850124683, "w": 0.4109858888600709 } }
{ "x_m": 0.03533606857243732, "y_m": -0.023796763468367343, "z_m": 0.07382195409551917, "roll_rad": -0.18025893789092476, "pitch_rad": -0.08707057265325163, "yaw_rad": 0.06404352877156924 }
{ "x_m": -0.03533606857243732, "y_m": 0.023796763468367343, "z_m": -0.07382195409551917, "roll_rad": 0.17515493034188354, "pitch_rad": 0.09700241733107434, "yaw_rad": -0.04764600629041363 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.0019707505089155545, "local_y_m": 0.0075207277925011485, "local_z_m": 0.0626353148511965, "local_roll_rad": 0.26583128642640924, "local_pitch_rad": 0.3643672991889932, "local_yaw_rad": -0.04317196003365219, "local_roll_deg": 15.231010774766577, "loca...
{ "camera": { "visible": true, "u_px": 340.0982722289382, "v_px": 399.6819691235265, "depth_m": 0.26474462191627324, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000094
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000094_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.45496178614586663, "y": 0.23591644163481187, "z": 0.07962501214225466 }, "orientation_xyzw": { "x": 0.9483778773418037, "y": 0.13033869154206076, "z": 0.13042167839664667, "w": 0.2580337440335277 } }
{ "x_m": 0.02614892476470876, "y_m": -0.0031609145214955836, "z_m": 0.05032591093131478, "roll_rad": -0.19634492240903348, "pitch_rad": -0.1292158659820086, "yaw_rad": 0.22990825706095658 }
{ "x_m": -0.02614892476470876, "y_m": 0.0031609145214955836, "z_m": -0.05032591093131478, "roll_rad": 0.16419844873636538, "pitch_rad": 0.16830657091633494, "yaw_rad": -0.20328281189088154 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.045664022463442186, "local_y_m": -0.04388396130666952, "local_z_m": 0.008620926674410615, "local_roll_rad": 0.17716451112745793, "local_pitch_rad": 0.09032667754486497, "local_yaw_rad": 0.43166936417974866, "local_roll_deg": 10.15077876710185, "local_...
{ "camera": { "visible": true, "u_px": 409.925976064905, "v_px": 499.45647245423004, "depth_m": 0.2709091349735264, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000096
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000096_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.45169832134445115, "y": 0.2987328165197308, "z": 0.12078102529583076 }, "orientation_xyzw": { "x": 0.9489194792375175, "y": 0.24697538290107163, "z": -0.174426984650071, "w": 0.09016767264575269 } }
{ "x_m": -0.007336348739072185, "y_m": 0.0024579349190929634, "z_m": 0.054476794654921834, "roll_rad": 0.007050202721040487, "pitch_rad": 0.14833915623990046, "yaw_rad": 0.26544130698310836 }
{ "x_m": 0.007336348739072185, "y_m": -0.0024579349190929634, "z_m": -0.054476794654921834, "roll_rad": 0.03231235043510357, "pitch_rad": -0.14497269695240134, "yaw_rad": -0.26726395150010157 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.014227242503539444, "local_y_m": -0.03822371928918707, "local_z_m": 0.04969184238946697, "local_roll_rad": -0.4219463382411426, "local_pitch_rad": -0.3371344643526727, "local_yaw_rad": 0.46978600585455366, "local_roll_deg": -24.17574436221696, "local...
{ "camera": { "visible": true, "u_px": 660.6780234599797, "v_px": 533.0306160463845, "depth_m": 0.27162116102060374, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000097
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000097_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4710875366624064, "y": 0.2999996979007849, "z": 0.1316694987634986 }, "orientation_xyzw": { "x": 0.8534709779033376, "y": -0.23403815234006525, "z": 0.06465327960776174, "w": 0.46112187820784406 } }
{ "x_m": 0.04603662468613434, "y_m": -0.04074351998522624, "z_m": 0.07891314484275136, "roll_rad": -0.16044317073338304, "pitch_rad": 0.05946773797399095, "yaw_rad": 0.0383785436517703 }
{ "x_m": -0.04603662468613434, "y_m": 0.04074351998522624, "z_m": -0.07891314484275136, "roll_rad": 0.16283128970705726, "pitch_rad": -0.05252062882147843, "yaw_rad": -0.04744725293571379 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.016016686701688487, "local_y_m": -0.011791468656502012, "local_z_m": 0.06152541183053534, "local_roll_rad": 0.37081784082789176, "local_pitch_rad": 0.4298981687318844, "local_yaw_rad": -0.4067979496774593, "local_roll_deg": 21.246297247592143, "local...
{ "camera": { "visible": true, "u_px": 435.1739293160196, "v_px": 342.53784411597064, "depth_m": 0.26912639316835896, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000098
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000098_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.45860953890195344, "y": 0.23799807410955934, "z": 0.08109152500168314 }, "orientation_xyzw": { "x": 0.9354144793463156, "y": 0.0837694079892797, "z": 0.06841284840431532, "w": 0.3366038031389355 } }
{ "x_m": 0.04941453515195393, "y_m": -0.03981189654205802, "z_m": 0.05640702313287016, "roll_rad": -0.23261256342359002, "pitch_rad": -0.0006510641163234428, "yaw_rad": 0.11066933691899403 }
{ "x_m": -0.04941453515195393, "y_m": 0.03981189654205802, "z_m": -0.05640702313287016, "roll_rad": 0.23117178338442468, "pitch_rad": 0.026092121379127316, "yaw_rad": -0.10756371710912113 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.04884687104944269, "local_y_m": -0.04117107860454371, "local_z_m": 0.010022829003779432, "local_roll_rad": 0.07232964109425713, "local_pitch_rad": 0.23151614369907342, "local_yaw_rad": 0.3103442711208867, "local_roll_deg": 4.144183168396935, "local_pi...
{ "camera": { "visible": true, "u_px": 285.2160498457095, "v_px": 363.44521223495735, "depth_m": 0.2500616160881168, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000099
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000099_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4504510438712749, "y": 0.24446690550505457, "z": 0.07594296925609983 }, "orientation_xyzw": { "x": 0.9862666871659035, "y": 0.024301181822067655, "z": -0.014420655247705229, "w": 0.1627252870671049 } }
{ "x_m": 0.025220789739215377, "y_m": -0.029201924001785284, "z_m": 0.029437596201042915, "roll_rad": -0.09388877130043889, "pitch_rad": -0.0077612094218902075, "yaw_rad": 0.16576742965833577 }
{ "x_m": -0.025220789739215377, "y_m": 0.029201924001785284, "z_m": -0.029437596201042915, "roll_rad": 0.09134202199043717, "pitch_rad": 0.023092848658538122, "yaw_rad": -0.16434736028463334 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.041845025751031314, "local_y_m": -0.04943571981693252, "local_z_m": 0.005046326243635623, "local_roll_rad": -0.046088118685202246, "local_pitch_rad": -0.1372908738923013, "local_yaw_rad": 0.16002190647166326, "local_roll_deg": -2.6406546863601177, "lo...
{ "camera": { "visible": true, "u_px": 431.6652012647045, "v_px": 497.49387679855056, "depth_m": 0.23843045482258415, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000101
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000101_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.5105504786437911, "y": 0.2858985574735264, "z": 0.13370801447076527 }, "orientation_xyzw": { "x": 0.9138758861741518, "y": -0.28708157066809786, "z": 0.054259994325926625, "w": 0.28190581666204934 } }
{ "x_m": 0.006699115771149011, "y_m": -0.004818093244722044, "z_m": 0.06891579482763444, "roll_rad": -0.06040457492918114, "pitch_rad": -0.22668816250441454, "yaw_rad": 0.0844938663346657 }
{ "x_m": -0.006699115771149011, "y_m": 0.004818093244722044, "z_m": -0.06891579482763444, "roll_rad": 0.042353724623221664, "pitch_rad": 0.23067640304492362, "yaw_rad": -0.07270832709602798 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.0035965212097279864, "local_y_m": 0.015259364238077671, "local_z_m": 0.06360074154791386, "local_roll_rad": 0.26051254330134344, "local_pitch_rad": 0.05394659049194083, "local_yaw_rad": -0.42848477025415005, "local_roll_deg": 14.926269241386084, "loca...
{ "camera": { "visible": true, "u_px": 431.84824198498666, "v_px": 488.8839898099318, "depth_m": 0.2792129608936048, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000102
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000102_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4746385891705154, "y": 0.2658146525398417, "z": 0.1266310683647563 }, "orientation_xyzw": { "x": 0.9841262461503387, "y": -0.07640420908029084, "z": 0.13606613107500867, "w": 0.08452181048189136 } }
{ "x_m": 0.007363270084697948, "y_m": 0.020132373347006127, "z_m": 0.07062191986148703, "roll_rad": 0.05285722094330547, "pitch_rad": -0.27383139690726865, "yaw_rad": -0.004175954479094329 }
{ "x_m": -0.007363270084697948, "y_m": -0.020132373347006127, "z_m": -0.07062191986148703, "roll_rad": -0.053728774756701056, "pitch_rad": 0.27366582689853347, "yaw_rad": -0.010508096722394793 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.020314814302417362, "local_y_m": -0.026542890014462785, "local_z_m": 0.05636844303324298, "local_roll_rad": 0.2866172511861141, "local_pitch_rad": -0.30512262873437845, "local_yaw_rad": 0.08209176151327009, "local_roll_deg": 16.421958828605327, "local...
{ "camera": { "visible": true, "u_px": 491.64867725433993, "v_px": 583.6102197914519, "depth_m": 0.3059693318603608, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000103
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000103_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.5255325575955123, "y": 0.33905033707379445, "z": 0.09617935868514724 }, "orientation_xyzw": { "x": 0.8882537613212236, "y": -0.32349711000373044, "z": -0.13864273120877735, "w": 0.2951831099519485 } }
{ "x_m": -0.03019570713493247, "y_m": -0.005250146969026703, "z_m": 0.06400864665949624, "roll_rad": 0.023650337265358562, "pitch_rad": -0.12012912051446928, "yaw_rad": -0.23455207500779912 }
{ "x_m": 0.03019570713493247, "y_m": 0.005250146969026703, "z_m": -0.06400864665949624, "roll_rad": 0.004879872945114608, "pitch_rad": 0.12232725162170809, "yaw_rad": 0.23342859510996358 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.04914396964945372, "local_y_m": 0.0342247563280139, "local_z_m": 0.02688228680092023, "local_roll_rad": -0.05837553011667508, "local_pitch_rad": 0.19934679812086648, "local_yaw_rad": -0.5837022352819046, "local_roll_deg": -3.3446715025243123, "local_...
{ "camera": { "visible": true, "u_px": 622.7582278261709, "v_px": 447.5634595555359, "depth_m": 0.28702595865591707, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000104
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000104_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4492780183669684, "y": 0.27047635112592455, "z": 0.11537932711098799 }, "orientation_xyzw": { "x": 0.9714194974365431, "y": -0.17743612337376866, "z": 0.12012510676287813, "w": 0.10213001932551409 } }
{ "x_m": 0.023247724186943985, "y_m": 0.017442590609256126, "z_m": 0.052793086531771394, "roll_rad": 0.08548098078358088, "pitch_rad": -0.15395220660833386, "yaw_rad": -0.2603138665428948 }
{ "x_m": -0.023247724186943985, "y_m": -0.017442590609256126, "z_m": -0.052793086531771394, "roll_rad": -0.043824950678411204, "pitch_rad": 0.1704360331635565, "yaw_rad": 0.24997251587293345 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.010560656432074872, "local_y_m": -0.046751259205861505, "local_z_m": 0.04491179846159506, "local_roll_rad": 0.2733686441113947, "local_pitch_rad": -0.29576634462965684, "local_yaw_rad": -0.13253605519253156, "local_roll_deg": 15.662869558796743, "loca...
{ "camera": { "visible": true, "u_px": 530.5568326982116, "v_px": 645.0701974862175, "depth_m": 0.2948371773987435, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000106
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000106_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4899104690081375, "y": 0.3262362786199993, "z": 0.11705652534891132 }, "orientation_xyzw": { "x": 0.9560477499628934, "y": -0.2741333895758785, "z": 0.07931107904161244, "w": 0.067330062021236 } }
{ "x_m": 0.01115288061780595, "y_m": 0.010779314590575906, "z_m": 0.07609158558047047, "roll_rad": 0.3211071481308247, "pitch_rad": -0.178772396367705, "yaw_rad": -0.29438535425788703 }
{ "x_m": -0.01115288061780595, "y_m": -0.010779314590575906, "z_m": -0.07609158558047047, "roll_rad": -0.2646751773492636, "pitch_rad": 0.25583232142176937, "yaw_rad": 0.23111940188011929 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.045504013034798514, "local_y_m": -0.001281479324099877, "local_z_m": 0.04866660154475496, "local_roll_rad": 0.18996189423632834, "local_pitch_rad": -0.37397553439765824, "local_yaw_rad": -0.3539535932507165, "local_roll_deg": 10.884014808052132, "loc...
{ "camera": { "visible": true, "u_px": 497.77284481684404, "v_px": 589.11235839758, "depth_m": 0.3133224202604058, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000107
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000107_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.5403390931712415, "y": 0.2944457961977097, "z": 0.11880422735606268 }, "orientation_xyzw": { "x": 0.966838256411458, "y": 0.10587507154394808, "z": 0.1508211554140749, "w": 0.176825434381989 } }
{ "x_m": -0.004147529298612507, "y_m": 0.012059945049191945, "z_m": 0.07354670656845985, "roll_rad": 0.20788374527370895, "pitch_rad": -0.22495677558076493, "yaw_rad": -0.017719993477331684 }
{ "x_m": 0.004147529298612507, "y_m": -0.012059945049191945, "z_m": -0.07354670656845985, "roll_rad": -0.20918872754075513, "pitch_rad": 0.22374661346217506, "yaw_rad": -0.029431125391864457 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.008122795460843593, "local_y_m": 0.04239240762772293, "local_z_m": 0.051159981089287314, "local_roll_rad": 0.24991468668311373, "local_pitch_rad": -0.07040408993406252, "local_yaw_rad": 0.41128048443656473, "local_roll_deg": 14.319056785276736, "loca...
{ "camera": { "visible": true, "u_px": 509.5674349756117, "v_px": 600.6902651444149, "depth_m": 0.31142270179321274, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000108
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000108_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.47202540958972716, "y": 0.2608750170526126, "z": 0.12900246207288935 }, "orientation_xyzw": { "x": 0.927994367228287, "y": -0.0176337333883793, "z": 0.13639102458346034, "w": 0.34628455676283465 } }
{ "x_m": -0.01512252619554999, "y_m": -0.00887047608994962, "z_m": 0.07466619487297921, "roll_rad": -0.032810683966065256, "pitch_rad": -0.2609601189771798, "yaw_rad": 0.1204614131622719 }
{ "x_m": 0.01512252619554999, "y_m": 0.00887047608994962, "z_m": -0.07466619487297921, "roll_rad": 0.0016350347234347076, "pitch_rad": 0.2629630435974382, "yaw_rad": -0.11593920705517524 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.015592315892922173, "local_y_m": -0.026941924161264022, "local_z_m": 0.0601770618053369, "local_roll_rad": 0.2761055264830729, "local_pitch_rad": 0.2435616786636253, "local_yaw_rad": 0.11734840875235215, "local_roll_deg": 15.819681367717656, "local_pi...
{ "camera": { "visible": true, "u_px": 575.3142114146361, "v_px": 470.2106364600435, "depth_m": 0.2984285131703235, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000109
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000109_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.5169335045230544, "y": 0.33509464123913774, "z": 0.11229142275146647 }, "orientation_xyzw": { "x": 0.9211624430972084, "y": -0.12170544933443692, "z": -0.2289950554993145, "w": 0.2901875283094554 } }
{ "x_m": -0.05909915421757339, "y_m": 0.022962739612887306, "z_m": 0.06560367339978357, "roll_rad": -0.09040744874831533, "pitch_rad": -0.0022935403866585144, "yaw_rad": -0.016568170376822976 }
{ "x_m": 0.05909915421757339, "y_m": -0.022962739612887306, "z_m": -0.06560367339978357, "roll_rad": 0.09043303268454207, "pitch_rad": 0.0007880802980499051, "yaw_rad": 0.01670757621674428 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.046364739312169584, "local_y_m": 0.027465404264363745, "local_z_m": 0.042286241821029386, "local_roll_rad": -0.3689801443039525, "local_pitch_rad": 0.21112942037760657, "local_yaw_rad": -0.18964386029535982, "local_roll_deg": -21.14100499274456, "loc...
{ "camera": { "visible": true, "u_px": 768.2844198130471, "v_px": 488.05152729396707, "depth_m": 0.2957507613752021, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000111
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000111_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.45272973222848223, "y": 0.2330268605538611, "z": 0.10676128057121642 }, "orientation_xyzw": { "x": 0.9623865939048204, "y": -0.13376040987239782, "z": -0.13107841369834491, "w": 0.1968213557655065 } }
{ "x_m": 0.04810567144368427, "y_m": 0.009754014238594066, "z_m": 0.04135733779243411, "roll_rad": -0.1296336067103501, "pitch_rad": 0.23465135239951873, "yaw_rad": -0.28518696350961525 }
{ "x_m": -0.04810567144368427, "y_m": -0.009754014238594066, "z_m": -0.04135733779243411, "roll_rad": 0.061292129391096475, "pitch_rad": -0.2605473231235886, "yaw_rad": 0.26185360340928737 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.04543761472444373, "local_y_m": -0.03712327410240215, "local_z_m": 0.03606981328142408, "local_roll_rad": -0.2076182292199522, "local_pitch_rad": -0.023482321705610255, "local_yaw_rad": -0.20315151132733175, "local_roll_deg": -11.895648284282968, "loc...
{ "camera": { "visible": true, "u_px": 494.36236850752033, "v_px": 644.3444997914594, "depth_m": 0.29972243644424856, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000112
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000112_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.5192603071087629, "y": 0.3367068804396115, "z": 0.09604592662110592 }, "orientation_xyzw": { "x": 0.9565344908965014, "y": 0.12903446701625776, "z": 0.16567460115564778, "w": 0.20234574514705805 } }
{ "x_m": 0.08498575658286334, "y_m": -0.041913628615775855, "z_m": 0.04996865342221568, "roll_rad": 0.0001384900736342439, "pitch_rad": 0.0550760768619264, "yaw_rad": 0.018558666392620417 }
{ "x_m": -0.08498575658286334, "y_m": 0.041913628615775855, "z_m": -0.04996865342221568, "roll_rad": 0.0008844378367115006, "pitch_rad": -0.05506915618757125, "yaw_rad": -0.018579210463784745 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.04961927773939994, "local_y_m": 0.0403130035480478, "local_z_m": 0.025855300230543107, "local_roll_rad": 0.2617210126023407, "local_pitch_rad": -0.009302235937256511, "local_yaw_rad": 0.45694933224985235, "local_roll_deg": 14.995509432004352, "local_...
{ "camera": { "visible": true, "u_px": 198.58547597897729, "v_px": 461.39868155715243, "depth_m": 0.2639410809979472, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000113
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000113_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4694517190900153, "y": 0.22998092567372153, "z": 0.10971352323242747 }, "orientation_xyzw": { "x": 0.9959345338427582, "y": 0.03316594462915642, "z": 0.03317671976918602, "w": 0.07690077816004603 } }
{ "x_m": 0.038483447353031774, "y_m": -0.03063806957531401, "z_m": 0.05648749821430288, "roll_rad": 0.12141838900018419, "pitch_rad": -0.04886062569731393, "yaw_rad": 0.14640217512565504 }
{ "x_m": -0.038483447353031774, "y_m": 0.03063806957531401, "z_m": -0.05648749821430288, "roll_rad": -0.12729885841225363, "pitch_rad": 0.03029861001413321, "yaw_rad": -0.15130394761013824 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.04847571625893999, "local_y_m": -0.03011286233128641, "local_z_m": 0.03928771917248822, "local_roll_rad": 0.053311252433278826, "local_pitch_rad": -0.3092261729550333, "local_yaw_rad": 0.21445229589956533, "local_roll_deg": 3.054509764983417, "local_p...
{ "camera": { "visible": true, "u_px": 336.8536674942791, "v_px": 447.16804189061133, "depth_m": 0.26830663375856173, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000114
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000114_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.5134805829654437, "y": 0.2612586858162229, "z": 0.13435989617780117 }, "orientation_xyzw": { "x": 0.8809858765016273, "y": 0.16649523025471077, "z": 0.2035274554587945, "w": 0.39334437657294524 } }
{ "x_m": 0.031130615331602773, "y_m": -0.0804705467988201, "z_m": 0.07503145756629581, "roll_rad": -0.058473272858766544, "pitch_rad": -0.12830534811450325, "yaw_rad": 0.3222382101898003 }
{ "x_m": -0.031130615331602773, "y_m": 0.0804705467988201, "z_m": -0.07503145756629581, "roll_rad": 0.015128427853655237, "pitch_rad": 0.14012576337213378, "yaw_rad": -0.3174190733643477 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.02326166917708857, "local_y_m": 0.016976609427263003, "local_z_m": 0.06470367587191943, "local_roll_rad": 0.25461570391515637, "local_pitch_rad": 0.41566606602599177, "local_yaw_rad": 0.5013206904607017, "local_roll_deg": 14.58840523209105, "local_pit...
{ "camera": { "visible": true, "u_px": 406.63362788785616, "v_px": 199.6980815431803, "depth_m": 0.2399476469739939, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000116
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000116_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.5196720215464392, "y": 0.259455996501727, "z": 0.1300332530806222 }, "orientation_xyzw": { "x": 0.9115875866396005, "y": 0.22634250607218437, "z": -0.14508562892446322, "w": 0.31101013184323306 } }
{ "x_m": -0.06492330339562036, "y_m": 0.017974250447070905, "z_m": 0.07036537037064838, "roll_rad": -0.17029947175899862, "pitch_rad": 0.07058836168439488, "yaw_rad": 0.3905292158768567 }
{ "x_m": 0.06492330339562036, "y_m": -0.017974250447070905, "z_m": -0.07036537037064838, "roll_rad": 0.18421805290149657, "pitch_rad": 0.00024037674118635265, "yaw_rad": -0.3965346461124852 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.033879918941228195, "local_y_m": 0.020395467459984277, "local_z_m": 0.05933656453557178, "local_roll_rad": -0.42365265909770417, "local_pitch_rad": 0.11434039713478668, "local_yaw_rad": 0.5322544496803826, "local_roll_deg": -24.273509345793087, "local...
{ "camera": { "visible": true, "u_px": 769.4242071901841, "v_px": 532.9828374173755, "depth_m": 0.30826486730898073, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000117
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000117_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.5163439905906119, "y": 0.25256098726576126, "z": 0.121522437926714 }, "orientation_xyzw": { "x": 0.9075849429198257, "y": -0.2994975785713971, "z": -0.05289496569356169, "w": 0.2894700233519241 } }
{ "x_m": -0.05497411732728197, "y_m": -0.0037648061081312356, "z_m": 0.06844430750427244, "roll_rad": -0.18693524460526342, "pitch_rad": 0.04074972295738129, "yaw_rad": 0.041175839188636175 }
{ "x_m": 0.05497411732728197, "y_m": 0.0037648061081312356, "z_m": -0.06844430750427244, "roll_rad": 0.1885519486064043, "pitch_rad": -0.03235013008889871, "yaw_rad": -0.048055445551387195 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.04305200333818378, "local_y_m": 0.026079567237434258, "local_z_m": 0.05062890000549928, "local_roll_rad": 0.07468329466511774, "local_pitch_rad": 0.12703898369882427, "local_yaw_rad": -0.5008408848169829, "local_roll_deg": 4.279037584443143, "local_pi...
{ "camera": { "visible": true, "u_px": 854.80449150413, "v_px": 477.22842802132027, "depth_m": 0.2859560957081627, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000118
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000118_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.507140665768915, "y": 0.2850595030903332, "z": 0.13886002899701289 }, "orientation_xyzw": { "x": 0.9450362216775631, "y": 0.13762344295065507, "z": 0.20280426065458107, "w": 0.21641802034061905 } }
{ "x_m": 0.036900254699078205, "y_m": -0.013879342316117205, "z_m": 0.07713561774695687, "roll_rad": -0.10502083912552489, "pitch_rad": -0.09596369965496791, "yaw_rad": 0.15632525793692165 }
{ "x_m": -0.036900254699078205, "y_m": 0.013879342316117205, "z_m": -0.07713561774695687, "roll_rad": 0.08937926689774091, "pitch_rad": 0.11067300044075733, "yaw_rad": -0.14632338482122184 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.009762769670063676, "local_y_m": 0.02161648091158546, "local_z_m": 0.06783569279204979, "local_roll_rad": 0.3249353045138843, "local_pitch_rad": 0.03881095558383506, "local_yaw_rad": 0.4823712109108115, "local_roll_deg": 18.617421563443777, "local_pit...
{ "camera": { "visible": true, "u_px": 482.4939860885915, "v_px": 429.9667146639731, "depth_m": 0.2757795916116035, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000119
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000119_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4975425122342297, "y": 0.33521304129350044, "z": 0.12653778660003856 }, "orientation_xyzw": { "x": 0.9274294881212916, "y": -0.2231365074301519, "z": -0.2539474129002548, "w": 0.15998548401720836 } }
{ "x_m": -0.030177020104895758, "y_m": 0.020237401283038414, "z_m": 0.08338278156159373, "roll_rad": 0.02140764525942396, "pitch_rad": 0.0768916842252925, "yaw_rad": -0.06147950927177459 }
{ "x_m": 0.030177020104895758, "y_m": -0.020237401283038414, "z_m": -0.08338278156159373, "roll_rad": -0.02616144386347325, "pitch_rad": -0.07540949250682592, "yaw_rad": 0.06328991589027055 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.04390071830261472, "local_y_m": 0.014125206036225814, "local_z_m": 0.05595288644000432, "local_roll_rad": -0.41620873204826064, "local_pitch_rad": 0.0067176362305531685, "local_yaw_rad": -0.4451938310495077, "local_roll_deg": -23.847003742856703, "lo...
{ "camera": { "visible": true, "u_px": 638.136268537213, "v_px": 468.49269678480573, "depth_m": 0.30736331306781095, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000121
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000121_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4460057581947583, "y": 0.25023082474002245, "z": 0.12322039530073049 }, "orientation_xyzw": { "x": 0.9106561036684223, "y": -0.10765073868459865, "z": 0.07697800938058881, "w": 0.39139642995805374 } }
{ "x_m": 0.037031573990223055, "y_m": -0.015334715532670962, "z_m": 0.08209627866519353, "roll_rad": -0.09607810109242908, "pitch_rad": 0.02036420325244443, "yaw_rad": -0.010604823484855747 }
{ "x_m": -0.037031573990223055, "y_m": 0.015334715532670962, "z_m": -0.08209627866519353, "roll_rad": 0.095878532715549, "pitch_rad": -0.021286656748944328, "yaw_rad": 0.008604471864572269 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.02749790315614832, "local_y_m": -0.04180233331441369, "local_z_m": 0.053177249328147276, "local_roll_rad": 0.23897263871350946, "local_pitch_rad": 0.31820497126320985, "local_yaw_rad": -0.09335557730082994, "local_roll_deg": 13.692123617388718, "local...
{ "camera": { "visible": true, "u_px": 451.1970820824586, "v_px": 431.5826693575573, "depth_m": 0.2985684093686178, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000122
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000122_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4505930693689247, "y": 0.24369899291406058, "z": 0.1142005269591045 }, "orientation_xyzw": { "x": 0.9653638316833703, "y": -0.18614775895323105, "z": 0.15978747173981614, "w": 0.08882369159908263 } }
{ "x_m": 0.04177031270719522, "y_m": -0.009053597104196398, "z_m": 0.06571775254638479, "roll_rad": 0.003909252044345393, "pitch_rad": -0.1845278379674582, "yaw_rad": -0.08386981844477044 }
{ "x_m": -0.04177031270719522, "y_m": 0.009053597104196398, "z_m": -0.06571775254638479, "roll_rad": 0.011672717396645547, "pitch_rad": 0.18420348427929226, "yaw_rad": 0.08458624808339323 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": 0.038781120448544135, "local_y_m": -0.04443601149426028, "local_z_m": 0.04325231286099968, "local_roll_rad": 0.3553042692377355, "local_pitch_rad": -0.3312184028667426, "local_yaw_rad": -0.1142005654781048, "local_roll_deg": 20.35743507030213, "local_pi...
{ "camera": { "visible": true, "u_px": 344.77559549231034, "v_px": 522.3495554792171, "depth_m": 0.2856591532251472, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000123
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000123_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.5289919015873359, "y": 0.29145285356365663, "z": 0.13567731389819868 }, "orientation_xyzw": { "x": 0.9831693702300293, "y": -0.08314385194043479, "z": 0.09712213530347323, "w": 0.13050816127770984 } }
{ "x_m": 0.0068806354468160524, "y_m": -0.014187186641877625, "z_m": 0.07681387216766167, "roll_rad": 0.1244446759294048, "pitch_rad": -0.22092295862017428, "yaw_rad": -0.0715227160584047 }
{ "x_m": -0.0068806354468160524, "y_m": 0.014187186641877625, "z_m": -0.07681387216766167, "roll_rad": -0.11136708084556057, "pitch_rad": 0.2277126812595789, "yaw_rad": 0.04495463814080514 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.00003562387944229208, "local_y_m": 0.032561629937584505, "local_z_m": 0.06588171725602482, "local_roll_rad": 0.2097511569780639, "local_pitch_rad": -0.21626750110231505, "local_yaw_rad": 0.02735379762042653, "local_roll_deg": 12.017856042829068, "loc...
{ "camera": { "visible": true, "u_px": 422.49012165143097, "v_px": 485.8266874881984, "depth_m": 0.28907066344134746, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
20260619_182736_task_1_collect_000124
center
SC
images/train/SC/center/20260619_182736_task_1_collect_000124_center.jpg
{ "id": "task_1", "port_type": "sc", "port_name": "sc_port_base", "target_module_name": "sc_port_1", "cable_name": "cable_1", "plug_name": "sc_tip" }
{}
{ "position": { "x": -0.4877015691010372, "y": 0.297326832826226, "z": 0.14165172864085965 }, "orientation_xyzw": { "x": 0.8885733487241839, "y": -0.3658271008575273, "z": 0.010730118451015805, "w": 0.27657331898303866 } }
{ "x_m": -0.02649969991407186, "y_m": -0.0048336503014985155, "z_m": 0.08609896462744238, "roll_rad": 0.05619719874522611, "pitch_rad": -0.22367292742423053, "yaw_rad": -0.27565665442677423 }
{ "x_m": 0.02649969991407186, "y_m": 0.0048336503014985155, "z_m": -0.08609896462744238, "roll_rad": 0.0063994488392721165, "pitch_rad": 0.23042270720712132, "yaw_rad": 0.2700843548473631 }
{ "pattern": "port_offset_xyz_rpy", "local_x_m": -0.01305716796447501, "local_y_m": -0.007255639020641349, "local_z_m": 0.07240783535588641, "local_roll_rad": 0.21867636781565167, "local_pitch_rad": 0.04930208895723074, "local_yaw_rad": -0.6102189454559109, "local_roll_deg": 12.52923295508727, "local_...
{ "camera": { "visible": true, "u_px": 583.3772710141567, "v_px": 413.54330285495354, "depth_m": 0.30200223631938145, "width": 1152, "height": 1024, "margin_px": 8 }, "visible_cameras": [ "left", "center", "right" ] }
End of preview.

No dataset card yet

Downloads last month
127