Builds on the Advanced edition by adding coarse action segmentation. Every sequence is divided into labelled temporal segments, so the data can be used directly for action recognition, temporal segmentation, and behaviour-understanding tasks without an…
Dataset Card
By Jiu, published under cc-by-4.0, revision ee230155a807.
Pico Robotics Dataset · Annotated Edition
Egocentric multimodal capture from a Pico VR headset + custom tracker rig — Annotated tier
Builds on the Advanced edition by adding coarse action segmentation. Every sequence is divided into labelled temporal segments, so the data can be used directly for action recognition, temporal segmentation, and behaviour-understanding tasks without an annotation pass of your own.
This is a gated dataset. Access requests are reviewed manually; submit one from the dataset page.
Editions
| Edition | Contents | Access |
|---|---|---|
| Basic | Undistorted stereo video + per-frame depth maps + dual-channel audio + ~1 kHz 6-DoF head pose + camera calibration | Public |
| Advanced | Everything in Basic + pose-aligned stereo point clouds (.npz) + 21-joint hand tracking + world-frame point clouds + MCAP / Foxglove visualization |
Request access |
| Annotated (this repo) | Everything in Advanced + coarse action segmentation (segments.json) |
Manual review |
Scenes
| Config | Environment | Description | Sequences | Segments | Duration |
|---|---|---|---|---|---|
retail-shelf-a |
Convenience store, storefront area | Beverage gondolas, snack shelving, chest freezer, liquor display; strong daylight through a glass facade with mixed indoor lighting | TBD | TBD | TBD |
retail-shelf-b |
Convenience store, interior aisles | Branded beverage coolers, free-standing snack racks, bottled-water pallets, tiled floor under uniform ceiling lighting | TBD | TBD | TBD |
gymnasium |
Indoor sports arena | Large open court with line markings, tiered seating, overhead truss lighting, banners, and event-setup activity | TBD | TBD | TBD |
from datasets import load_dataset
ds = load_dataset("skycn110/pico-robotics-annotated", "retail-shelf-a")
Directory structure
retail-shelf-a/
└── sample_0001/
├── head_left_camera_undistorted.mp4
├── head_right_camera_undistorted.mp4
├── depth/
├── audio_dual_channel.wav
├── undistort_camera.json
├── video_index.json
├── pointcloud/
├── pointcloud_world/
├── hand_landmarks.json
├── recording.mcap
└── segments.json # Coarse action segmentation ← new in this tier
Everything except segments.json is documented in the
Advanced README.
Annotation format
segments.json
{
"sample_id": "sample_0001",
"scene": "retail-shelf-a",
"fps": 30,
"segments": [
{
"id": 0,
"start_frame": 0,
"end_frame": 148,
"start_time": 0.0,
"end_time": 4.93,
"label": "approach_shelf",
"notes": ""
}
]
}
| Field | Type | Description |
|---|---|---|
start_frame / end_frame |
int | Inclusive frame range, indexed against video_index.json |
start_time / end_time |
float | Seconds from sequence start |
label |
string | Action class, see the label set below |
notes |
string | Free-text annotator remark, may be empty |
Segments within a sequence are contiguous and non-overlapping; frames that fit no class are
labelled other.
Label set
TBD — list the action classes here, with a one-line definition and the frame count for each, for example:
| Label | Definition | Segments |
|---|---|---|
approach_shelf |
Operator walks toward a shelf until stationary in front of it | TBD |
scan_shelf |
Head sweeps across shelf contents without hand motion | TBD |
reach_and_grasp |
Hand extends toward a product and closes on it | TBD |
inspect_item |
Held item brought toward the camera and rotated | TBD |
place_back |
Held item returned to the shelf | TBD |
walk_transit |
Locomotion between areas | TBD |
other |
Anything not covered above | TBD |
Annotation protocol
| Annotators | TBD |
| Guidelines | TBD (link to the written protocol) |
| Boundary tolerance | TBD frames |
| Double-annotated portion | TBD % |
| Inter-annotator agreement | TBD |
Labels are deliberately coarse: boundaries are approximate and the class vocabulary is small. They are intended as weak supervision or as a starting point for finer annotation, not as a precision benchmark.
Quick start
import json
with open("retail-shelf-a/sample_0001/segments.json") as f:
seg = json.load(f)
for s in seg["segments"]:
print(f"{s['start_time']:6.2f}–{s['end_time']:6.2f}s {s['label']}")
Clip a segment with the video:
import cv2
cap = cv2.VideoCapture("retail-shelf-a/sample_0001/head_left_camera_undistorted.mp4")
s = seg["segments"][0]
cap.set(cv2.CAP_PROP_POS_FRAMES, s["start_frame"])
for _ in range(s["end_frame"] - s["start_frame"] + 1):
ok, frame = cap.read()
if not ok:
break
Intended uses
- Egocentric action recognition and temporal action segmentation
- Weakly supervised pretraining for behaviour understanding
- Video–language grounding of first-person activity
- Segment-conditioned imitation learning
Out of scope
Class balance is uneven and follows whatever occurred naturally during capture; some labels have very few segments. Boundaries are coarse and were not adjudicated frame-by-frame. Reporting state-of-the-art numbers on this label set without acknowledging those limits would be misleading.
License
Released under CC BY 4.0. When using this dataset, please attribute:
Pico Robotics Dataset by skycn110, licensed under CC BY 4.0
Citation
@misc{skycn110_pico_robotics_annotated,
title = {Pico Robotics Dataset: Annotated Edition},
author = {skycn110},
year = {2026},
url = {https://huggingface.co/datasets/skycn110/pico-robotics-annotated}
}
Contact
- Data questions / collaboration: [email protected]
- Access requests: use the form on this dataset page (manually reviewed)
- Issues and Discussions: welcome on this repository
Details
- Repository
- skycn110/pico-robotics-basic
- Publisher
- Jiu
- Task category
- Robotics
- Tags
- pico, vr, tracker
- Size category
- 10K<n<100K
- Languages
- en
- Revision
- ee230155a807fdb58b6c6693c0ab7250e64713c8
- Last updated
- 2026-09-18
Files
4,189 files, 275.4 GB in total.
Every file (first 3,000)
| File | Type | Size | SHA-256 |
|---|---|---|---|
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517110431821336576/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517110431821336576/video_index.json | Data | 101.1 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517110751859314688/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517110751859314688/video_index.json | Data | 224.4 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517111337799389184/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517111337799389184/video_index.json | Data | 197.3 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517111937920405504/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517111937920405504/video_index.json | Data | 147.6 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517113163777052672/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517113163777052672/video_index.json | Data | 132.6 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517113582884491264/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517113582884491264/video_index.json | Data | 112.4 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517113903518060544/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517113903518060544/video_index.json | Data | 143.1 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517114823215681536/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517114823215681536/video_index.json | Data | 140.8 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517115160177676288/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517115160177676288/video_index.json | Data | 128.3 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517115464017252352/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517115464017252352/video_index.json | Data | 132.9 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1518928551024267264/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1518928551024267264/video_index.json | Data | 117.0 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517116832190828544/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517116832190828544/video_index.json | Data | 112.1 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517117192468959232/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517117192468959232/video_index.json | Data | 108.2 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517117512381108224/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517117512381108224/video_index.json | Data | 111.8 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517118238012477440/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517118238012477440/video_index.json | Data | 80.2 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517118475791765504/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517118475791765504/video_index.json | Data | 127.1 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517118789328572416/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517118789328572416/video_index.json | Data | 154.2 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517119165234679808/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517119165234679808/video_index.json | Data | 164.8 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517119549277736960/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517119549277736960/video_index.json | Data | 118.6 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517119857143844864/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517119857143844864/video_index.json | Data | 119.9 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517120518057103360/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517120518057103360/video_index.json | Data | 86.8 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517105046691516416/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517105046691516416/video_index.json | Data | 230.7 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517107868556333056/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517107868556333056/video_index.json | Data | 348.5 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517108681219510272/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517108681219510272/video_index.json | Data | 380.7 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517115350913650688/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517115350913650688/video_index.json | Data | 355.0 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517116154915590144/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517116154915590144/video_index.json | Data | 335.2 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517118205007499264/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517118205007499264/video_index.json | Data | 334.1 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517118918668324864/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517118918668324864/video_index.json | Data | 382.0 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517119759018102784/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517119759018102784/video_index.json | Data | 228.4 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517120506413715456/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517120506413715456/video_index.json | Data | 290.3 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517121295983054848/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517121295983054848/video_index.json | Data | 253.1 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517123355675725824/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517123355675725824/video_index.json | Data | 214.4 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517124116191121408/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517124116191121408/video_index.json | Data | 281.9 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517124881097953280/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517124881097953280/video_index.json | Data | 235.3 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517128915749965824/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517128915749965824/video_index.json | Data | 328.7 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517129826853457920/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517129826853457920/video_index.json | Data | 453.5 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517133178060410880/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517133178060410880/video_index.json | Data | 306.4 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517133898532786176/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517133898532786176/video_index.json | Data | 270.2 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517134644045156352/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517134644045156352/video_index.json | Data | 332.7 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517135508478627840/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517135508478627840/video_index.json | Data | 251.4 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517136191655251968/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517136191655251968/video_index.json | Data | 294.7 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517166728210026496/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517166728210026496/video_index.json | Data | 378.9 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517167713863077888/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517167713863077888/video_index.json | Data | 256.5 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517168444796047360/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517168444796047360/video_index.json | Data | 287.5 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517192687915110400/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517192687915110400/video_index.json | Data | 281.8 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517193546057125888/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517193546057125888/video_index.json | Data | 329.5 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517194266449809408/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517194266449809408/video_index.json | Data | 363.3 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517195044891660288/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517195044891660288/video_index.json | Data | 292.2 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517195660078616576/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517195660078616576/video_index.json | Data | 329.8 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517196429863424000/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517196429863424000/video_index.json | Data | 316.8 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517213297491841024/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517213297491841024/video_index.json | Data | 303.0 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517214034049372160/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517214034049372160/video_index.json | Data | 259.9 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517214814995222528/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517214814995222528/video_index.json | Data | 267.7 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517215638232240128/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517215638232240128/video_index.json | Data | 225.7 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517216268438999040/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517216268438999040/video_index.json | Data | 224.8 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517217946051547136/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517217946051547136/video_index.json | Data | 271.4 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517218672878292992/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517218672878292992/video_index.json | Data | 286.3 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517219513693638656/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517219513693638656/video_index.json | Data | 252.9 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517220147859820544/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517220147859820544/video_index.json | Data | 261.4 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517221361842393088/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517221361842393088/video_index.json | Data | 232.8 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517222035510530048/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517222035510530048/video_index.json | Data | 324.3 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517222842637225984/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517222842637225984/video_index.json | Data | 194.9 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517223493626761216/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517223493626761216/video_index.json | Data | 234.1 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517224286513795072/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517224286513795072/video_index.json | Data | 250.7 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1527612945373073408/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1527612945373073408/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1527612945373073408/video_index.json | Data | 89.2 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1527613279763959808/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1527613279763959808/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1527613279763959808/video_index.json | Data | 248.8 KB | — |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519991841678692352/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519991841678692352/video_index.json | Data | 277.8 KB | — |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519992437748011008/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519992437748011008/video_index.json | Data | 257.4 KB | — |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519993218731610112/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519993218731610112/video_index.json | Data | 277.5 KB | — |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519993904147992576/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519993904147992576/video_index.json | Data | 267.5 KB | — |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519995116171825152/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519995116171825152/video_index.json | Data | 320.3 KB | — |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519995954764189696/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519995954764189696/video_index.json | Data | 341.9 KB | — |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519996924411777024/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519996924411777024/video_index.json | Data | 298.1 KB | — |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519997879932948480/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519997879932948480/video_index.json | Data | 373.5 KB | — |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519998708425428992/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519998708425428992/video_index.json | Data | 252.9 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518920662238892032/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518920662238892032/video_index.json | Data | 439.5 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518922721323388928/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518922721323388928/video_index.json | Data | 479.9 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518926416018673664/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518926416018673664/video_index.json | Data | 482.2 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518927421330427904/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518927421330427904/video_index.json | Data | 450.7 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518928262967857152/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518928262967857152/video_index.json | Data | 454.4 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518929718164852736/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518929718164852736/video_index.json | Data | 514.5 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518931015802818560/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518931015802818560/video_index.json | Data | 446.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518932848688500736/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518932848688500736/video_index.json | Data | 502.4 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518934016206573568/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518934016206573568/video_index.json | Data | 450.4 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518945069376212992/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518945069376212992/video_index.json | Data | 33.3 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518946273791578112/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518946273791578112/video_index.json | Data | 449.8 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518970720741232640/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518970720741232640/video_index.json | Data | 571.0 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518971631093944320/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518971631093944320/video_index.json | Data | 527.0 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518972553723383808/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518972553723383808/video_index.json | Data | 534.4 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518974420092194816/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518974420092194816/video_index.json | Data | 587.4 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518975405002854400/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518975405002854400/video_index.json | Data | 549.2 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518976464907669504/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518976464907669504/video_index.json | Data | 594.8 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518978848966840320/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518978848966840320/video_index.json | Data | 627.0 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518980130771308544/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518980130771308544/video_index.json | Data | 559.4 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518982653833908224/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518982653833908224/video_index.json | Data | 517.8 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518984542159900672/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518984542159900672/video_index.json | Data | 496.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518986561310429184/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518986561310429184/video_index.json | Data | 501.7 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518988824317792256/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518988824317792256/video_index.json | Data | 516.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518989891151597568/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518989891151597568/video_index.json | Data | 503.8 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518990761641644032/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518990761641644032/video_index.json | Data | 515.7 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518991744660672512/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518991744660672512/video_index.json | Data | 565.8 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518994801104523264/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518994801104523264/video_index.json | Data | 547.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518995694797459456/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518995694797459456/video_index.json | Data | 506.9 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518996553522483200/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518996553522483200/video_index.json | Data | 557.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518997478207131648/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518997478207131648/video_index.json | Data | 559.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519001443481161728/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519001443481161728/video_index.json | Data | 555.7 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519007987228741632/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519007987228741632/video_index.json | Data | 464.4 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519010208074960896/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519010208074960896/video_index.json | Data | 530.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519011248455290880/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519011248455290880/video_index.json | Data | 522.2 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519012328681508864/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519012328681508864/video_index.json | Data | 585.7 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519015583910203392/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519015583910203392/video_index.json | Data | 537.2 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519017266115514368/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519017266115514368/video_index.json | Data | 511.8 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519018218734227456/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519018218734227456/video_index.json | Data | 499.3 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519019783847153664/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519019783847153664/video_index.json | Data | 494.0 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519021312264114176/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519021312264114176/video_index.json | Data | 551.8 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519027462208491520/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519027462208491520/video_index.json | Data | 528.9 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519028629323911168/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519028629323911168/video_index.json | Data | 443.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519029625294950400/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519029625294950400/video_index.json | Data | 474.5 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519033516103307264/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519033516103307264/video_index.json | Data | 558.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519036097030524928/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519036097030524928/video_index.json | Data | 512.4 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527611463223480320/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527611463223480320/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527611463223480320/video_index.json | Data | 470.2 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527620155402620928/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527620155402620928/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527620155402620928/video_index.json | Data | 287.3 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527621621135708160/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527621621135708160/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527621621135708160/video_index.json | Data | 393.2 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527623422660579328/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527623422660579328/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527623422660579328/video_index.json | Data | 351.0 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527625605682565120/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527625605682565120/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527625605682565120/video_index.json | Data | 376.0 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527626740535398400/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527626740535398400/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527626740535398400/video_index.json | Data | 361.0 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527627998579134464/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527627998579134464/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527627998579134464/video_index.json | Data | 381.0 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527628814027329536/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527628814027329536/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527628814027329536/video_index.json | Data | 405.0 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527629559401287680/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527629559401287680/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527629559401287680/video_index.json | Data | 369.3 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527631610067816448/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527631610067816448/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527631610067816448/video_index.json | Data | 406.3 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527632660476727296/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527632660476727296/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527632660476727296/video_index.json | Data | 402.8 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527633462498955264/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527633462498955264/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527633462498955264/video_index.json | Data | 396.2 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527670740227198976/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527670740227198976/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527670740227198976/video_index.json | Data | 377.4 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527673577757741056/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527673577757741056/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527673577757741056/video_index.json | Data | 343.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527674347706126336/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527674347706126336/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527674347706126336/video_index.json | Data | 322.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527675262102147072/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527675262102147072/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527675262102147072/video_index.json | Data | 336.3 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527705731346731008/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527705731346731008/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527705731346731008/video_index.json | Data | 547.9 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527711553581748224/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527711553581748224/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527711553581748224/video_index.json | Data | 381.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527712254886154240/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527712254886154240/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527712254886154240/video_index.json | Data | 360.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527712994937540608/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527712994937540608/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527712994937540608/video_index.json | Data | 403.3 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527714467821916160/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527714467821916160/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527714467821916160/video_index.json | Data | 429.2 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527715683910029312/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527715683910029312/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527715683910029312/video_index.json | Data | 372.7 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527716885557153792/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527716885557153792/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527716885557153792/video_index.json | Data | 404.8 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527718336555651072/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527718336555651072/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527718336555651072/video_index.json | Data | 412.0 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527719238934990848/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527719238934990848/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527719238934990848/video_index.json | Data | 429.4 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527720080366899200/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527720080366899200/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527720080366899200/video_index.json | Data | 347.5 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527721037448351744/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527721037448351744/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527721037448351744/video_index.json | Data | 447.8 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527721781257834496/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527721781257834496/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527721781257834496/video_index.json | Data | 355.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527722367571202048/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527722367571202048/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527722367571202048/video_index.json | Data | 431.9 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527725126202691584/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527725126202691584/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527725126202691584/video_index.json | Data | 399.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527726082810187776/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527726082810187776/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527726082810187776/video_index.json | Data | 423.3 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527726771590402048/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527726771590402048/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527726771590402048/video_index.json | Data | 405.0 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527729650032185344/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527729650032185344/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527729650032185344/video_index.json | Data | 390.8 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527730470576459776/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527730470576459776/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527730470576459776/video_index.json | Data | 259.8 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527731010714734592/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527731010714734592/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527731010714734592/video_index.json | Data | 411.0 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527731655635111936/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527731655635111936/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527731655635111936/video_index.json | Data | 355.4 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517169818778734592/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517169818778734592/video_index.json | Data | 152.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517170150116167680/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517170150116167680/video_index.json | Data | 267.2 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517170912552554496/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517170912552554496/video_index.json | Data | 303.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517172036370173952/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517172036370173952/video_index.json | Data | 323.4 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517172789667172352/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517172789667172352/video_index.json | Data | 255.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517173497690853376/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517173497690853376/video_index.json | Data | 233.7 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517174378415001600/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517174378415001600/video_index.json | Data | 178.5 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517174919572492288/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517174919572492288/video_index.json | Data | 176.3 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517175385731633152/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517175385731633152/video_index.json | Data | 168.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517175892009291776/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517175892009291776/video_index.json | Data | 163.0 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517176516272721920/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517176516272721920/video_index.json | Data | 159.0 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517176971526672384/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517176971526672384/video_index.json | Data | 161.7 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517177435462832128/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517177435462832128/video_index.json | Data | 169.5 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517177973608812544/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517177973608812544/video_index.json | Data | 159.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517178930484744192/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517178930484744192/video_index.json | Data | 175.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517179384702701568/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517179384702701568/video_index.json | Data | 160.4 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517179828590088192/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517179828590088192/video_index.json | Data | 163.2 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517180557786615808/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517180557786615808/video_index.json | Data | 178.3 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517181091817984000/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517181091817984000/video_index.json | Data | 171.2 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517181592244588544/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517181592244588544/video_index.json | Data | 157.8 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517182070646902784/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517182070646902784/video_index.json | Data | 143.5 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517182525414313984/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517182525414313984/video_index.json | Data | 162.8 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517182983436505088/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517182983436505088/video_index.json | Data | 164.5 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517183521137889280/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517183521137889280/video_index.json | Data | 160.5 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517184333926895616/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517184333926895616/video_index.json | Data | 164.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517184917337804800/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517184917337804800/video_index.json | Data | 158.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517185375557128192/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517185375557128192/video_index.json | Data | 166.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517188051091066880/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517188051091066880/video_index.json | Data | 194.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517188748058562560/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517188748058562560/video_index.json | Data | 189.2 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517189151500275712/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517189151500275712/video_index.json | Data | 198.5 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517189556175114240/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517189556175114240/video_index.json | Data | 163.0 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517189999408189440/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517189999408189440/video_index.json | Data | 166.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517190377369505792/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517190377369505792/video_index.json | Data | 168.4 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517197178005622784/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517197178005622784/video_index.json | Data | 219.5 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517197715887362048/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517197715887362048/video_index.json | Data | 202.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517198152195641344/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517198152195641344/video_index.json | Data | 197.9 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527618713279270912/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527618713279270912/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527618713279270912/video_index.json | Data | 205.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527671094511669248/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527671094511669248/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527671094511669248/video_index.json | Data | 202.7 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527672106941157376/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527672106941157376/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527672106941157376/video_index.json | Data | 204.7 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527673174219558912/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527673174219558912/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527673174219558912/video_index.json | Data | 200.7 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527673603389132800/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527673603389132800/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527673603389132800/video_index.json | Data | 217.4 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527673987021148160/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527673987021148160/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527673987021148160/video_index.json | Data | 237.3 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527674882991591424/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527674882991591424/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527674882991591424/video_index.json | Data | 234.5 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527678353291612160/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527678353291612160/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527678353291612160/video_index.json | Data | 234.9 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527678767118422016/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527678767118422016/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527678767118422016/video_index.json | Data | 217.0 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527681220538798080/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527681220538798080/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527681220538798080/video_index.json | Data | 227.5 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527682069973438464/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527682069973438464/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527682069973438464/video_index.json | Data | 210.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527698003404525568/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527698003404525568/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527698003404525568/video_index.json | Data | 205.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527711526868226048/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527711526868226048/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527711526868226048/video_index.json | Data | 205.5 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527712659133173760/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527712659133173760/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527712659133173760/video_index.json | Data | 203.8 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527713532613758976/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527713532613758976/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527713532613758976/video_index.json | Data | 194.9 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527713930179252224/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527713930179252224/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527713930179252224/video_index.json | Data | 209.9 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527714346673639424/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527714346673639424/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527714346673639424/video_index.json | Data | 205.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527715789224808448/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527715789224808448/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527715789224808448/video_index.json | Data | 201.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527733043899404288/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527733043899404288/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527733043899404288/video_index.json | Data | 202.8 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527733403678412800/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527733403678412800/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527733403678412800/video_index.json | Data | 202.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527734176650891264/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527734176650891264/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527734176650891264/video_index.json | Data | 208.3 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527734973618982912/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527734973618982912/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527734973618982912/video_index.json | Data | 195.7 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517169818606768128/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517169818606768128/video_index.json | Data | 96.9 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517170193808232448/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517170193808232448/video_index.json | Data | 124.3 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517170541360844800/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517170541360844800/video_index.json | Data | 79.5 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517200347976699904/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517200347976699904/video_index.json | Data | 135.9 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517200671919575040/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517200671919575040/video_index.json | Data | 137.8 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517200938589229056/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517200938589229056/video_index.json | Data | 99.3 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517201179849789440/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517201179849789440/video_index.json | Data | 205.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517201622747320320/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517201622747320320/video_index.json | Data | 115.0 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517203601087270912/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517203601087270912/video_index.json | Data | 137.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517203954558046208/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517203954558046208/video_index.json | Data | 117.7 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517204213006864384/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517204213006864384/video_index.json | Data | 127.9 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517204470335803392/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517204470335803392/video_index.json | Data | 105.5 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517204749953273856/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517204749953273856/video_index.json | Data | 102.9 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517205002324545536/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517205002324545536/video_index.json | Data | 95.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517205246709862400/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517205246709862400/video_index.json | Data | 110.2 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517205500352008192/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517205500352008192/video_index.json | Data | 108.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517205780363743232/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517205780363743232/video_index.json | Data | 97.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1518927177184186368/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1518927177184186368/video_index.json | Data | 280.7 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1518950061113872384/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1518950061113872384/video_index.json | Data | 450.3 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1518952076292395008/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1518952076292395008/video_index.json | Data | 754.7 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517132178486464512/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517132178486464512/video_index.json | Data | 196.3 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517132626442326016/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517132626442326016/video_index.json | Data | 100.0 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517132951718989824/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517132951718989824/video_index.json | Data | 99.2 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517133297849733120/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517133297849733120/video_index.json | Data | 99.2 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517135545803739136/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517135545803739136/video_index.json | Data | 112.5 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517135833411358720/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517135833411358720/video_index.json | Data | 92.9 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517136646661738496/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517136646661738496/video_index.json | Data | 37.8 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517136828254130176/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517136828254130176/video_index.json | Data | 100.3 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517198664013975552/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517198664013975552/video_index.json | Data | 116.7 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517198939625885696/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517198939625885696/video_index.json | Data | 107.9 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517199196648640512/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517199196648640512/video_index.json | Data | 107.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517199430468505600/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517199430468505600/video_index.json | Data | 108.8 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517199656298221568/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517199656298221568/video_index.json | Data | 103.4 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517199911379013632/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517199911379013632/video_index.json | Data | 98.4 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517200152392110080/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517200152392110080/video_index.json | Data | 40.0 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517207613786296320/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517207613786296320/video_index.json | Data | 203.7 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517208216491003904/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517208216491003904/video_index.json | Data | 172.2 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517208608071225344/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517208608071225344/video_index.json | Data | 131.8 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517208954701090816/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517208954701090816/video_index.json | Data | 124.4 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517209295370850304/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517209295370850304/video_index.json | Data | 132.9 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517209812046188544/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517209812046188544/video_index.json | Data | 158.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517210180142501888/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517210180142501888/video_index.json | Data | 156.8 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517210550793146368/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517210550793146368/video_index.json | Data | 149.3 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-rice-crackers-with-different-flavors/case_1517206551981461504/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-rice-crackers-with-different-flavors/case_1517206551981461504/video_index.json | Data | 110.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518933301908213760/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518933301908213760/video_index.json | Data | 419.9 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518987977622032384/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518987977622032384/video_index.json | Data | 557.5 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518989176618356736/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518989176618356736/video_index.json | Data | 392.9 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518989904359460864/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518989904359460864/video_index.json | Data | 461.7 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518990910799482880/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518990910799482880/video_index.json | Data | 475.8 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518995242479521792/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518995242479521792/video_index.json | Data | 337.9 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518996135044190208/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518996135044190208/video_index.json | Data | 307.4 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518996667779518464/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518996667779518464/video_index.json | Data | 289.4 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518997924342665216/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518997924342665216/video_index.json | Data | 363.3 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518998574900187136/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518998574900187136/video_index.json | Data | 376.8 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519007074485276672/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519007074485276672/video_index.json | Data | 245.8 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519007511468838912/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519007511468838912/video_index.json | Data | 330.0 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519008107550740480/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519008107550740480/video_index.json | Data | 279.8 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519008700944093184/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519008700944093184/video_index.json | Data | 361.2 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519009629210677248/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519009629210677248/video_index.json | Data | 356.0 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519010221576425472/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519010221576425472/video_index.json | Data | 325.0 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519010884813328384/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519010884813328384/video_index.json | Data | 434.5 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519011681223577600/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519011681223577600/video_index.json | Data | 378.3 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519012340228427776/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519012340228427776/video_index.json | Data | 339.3 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519015670849736704/undistort_camera.json | Data | 495 B | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519015670849736704/video_index.json | Data | 488.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529418856487981056/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529418856487981056/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529418856487981056/video_index.json | Data | 166.4 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529781532212858880/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529781532212858880/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529781532212858880/video_index.json | Data | 346.0 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529783274690318336/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529783274690318336/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529783274690318336/video_index.json | Data | 352.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529791190877081600/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529791190877081600/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529791190877081600/video_index.json | Data | 358.8 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529791769607147520/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529791769607147520/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529791769607147520/video_index.json | Data | 368.2 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529792310051606528/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529792310051606528/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529792310051606528/video_index.json | Data | 371.7 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529793443188969472/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529793443188969472/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529793443188969472/video_index.json | Data | 382.9 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529794413285347328/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529794413285347328/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529794413285347328/video_index.json | Data | 359.8 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529795105328730112/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529795105328730112/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529795105328730112/video_index.json | Data | 380.9 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529795696977252352/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529795696977252352/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529795696977252352/video_index.json | Data | 380.8 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529796657682583552/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529796657682583552/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529796657682583552/video_index.json | Data | 332.4 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529798675805507584/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529798675805507584/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529798675805507584/video_index.json | Data | 387.2 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529799291059572736/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529799291059572736/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529799291059572736/video_index.json | Data | 366.9 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529801068106485760/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529801068106485760/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529801068106485760/video_index.json | Data | 388.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529801684526567424/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529801684526567424/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529801684526567424/video_index.json | Data | 427.0 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529802448187691008/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529802448187691008/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529802448187691008/video_index.json | Data | 318.8 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529803087831633920/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529803087831633920/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529803087831633920/video_index.json | Data | 334.3 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529803671372566528/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529803671372566528/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529803671372566528/video_index.json | Data | 308.0 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529804171828531200/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529804171828531200/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529804171828531200/video_index.json | Data | 329.9 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529804736134385664/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529804736134385664/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529804736134385664/video_index.json | Data | 300.5 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529805751868985344/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529805751868985344/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529805751868985344/video_index.json | Data | 338.2 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529806487969337344/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529806487969337344/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529806487969337344/video_index.json | Data | 341.4 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529807073498370048/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529807073498370048/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529807073498370048/video_index.json | Data | 335.9 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529807688634994688/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529807688634994688/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529807688634994688/video_index.json | Data | 339.0 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529808226021806080/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529808226021806080/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529808226021806080/video_index.json | Data | 331.2 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529808755925979136/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529808755925979136/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529808755925979136/video_index.json | Data | 328.5 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529809884537688064/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529809884537688064/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529809884537688064/video_index.json | Data | 355.0 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529810429243559936/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529810429243559936/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529810429243559936/video_index.json | Data | 356.9 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529811098927108096/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529811098927108096/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529811098927108096/video_index.json | Data | 354.2 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529811836436746240/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529811836436746240/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529811836436746240/video_index.json | Data | 353.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529812365552390144/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529812365552390144/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529812365552390144/video_index.json | Data | 378.0 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529813871219445760/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529813871219445760/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529813871219445760/video_index.json | Data | 361.5 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529814850874642432/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529814850874642432/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529814850874642432/video_index.json | Data | 342.7 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529815443160698880/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529815443160698880/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529815443160698880/video_index.json | Data | 373.3 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529840763377029120/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529840763377029120/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529840763377029120/video_index.json | Data | 107.3 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529841170320986112/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529841170320986112/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529841170320986112/video_index.json | Data | 324.3 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529843019329572864/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529843019329572864/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529843019329572864/video_index.json | Data | 355.5 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529843884018896896/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529843884018896896/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529843884018896896/video_index.json | Data | 353.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529844766223634432/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529844766223634432/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529844766223634432/video_index.json | Data | 372.3 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529845890603290624/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529845890603290624/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529845890603290624/video_index.json | Data | 360.5 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529846889824915456/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529846889824915456/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529846889824915456/video_index.json | Data | 300.0 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529847583948673025/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529847583948673025/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529847583948673025/video_index.json | Data | 302.2 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529848221231222784/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529848221231222784/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529848221231222784/video_index.json | Data | 369.0 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529849094002970624/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529849094002970624/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529849094002970624/video_index.json | Data | 353.4 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529849704869793792/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529849704869793792/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529849704869793792/video_index.json | Data | 388.7 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529851185882730496/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529851185882730496/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529851185882730496/video_index.json | Data | 322.3 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529851723114352640/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529851723114352640/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529851723114352640/video_index.json | Data | 354.5 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529854693977624576/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529854693977624576/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529854693977624576/video_index.json | Data | 378.3 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529855517973811200/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529855517973811200/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529855517973811200/video_index.json | Data | 368.8 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529856369283305472/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529856369283305472/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529856369283305472/video_index.json | Data | 371.7 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529857316990488576/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529857316990488576/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529857316990488576/video_index.json | Data | 369.4 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529857903224164352/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529857903224164352/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529857903224164352/video_index.json | Data | 346.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529859529963999232/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529859529963999232/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529859529963999232/video_index.json | Data | 360.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529860074162360320/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529860074162360320/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529860074162360320/video_index.json | Data | 357.5 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529860887140110336/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529860887140110336/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529860887140110336/video_index.json | Data | 347.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529862835482398720/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529862835482398720/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529862835482398720/video_index.json | Data | 385.9 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529863462648287232/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529863462648287232/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529863462648287232/video_index.json | Data | 350.3 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529864176904704000/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529864176904704000/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529864176904704000/video_index.json | Data | 343.8 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529864979463802880/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529864979463802880/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529864979463802880/video_index.json | Data | 370.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529865982728736768/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529865982728736768/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529865982728736768/video_index.json | Data | 347.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529866509193580544/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529866509193580544/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529866509193580544/video_index.json | Data | 328.0 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529867419776978944/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529867419776978944/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529867419776978944/video_index.json | Data | 336.7 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529868382881452032/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529868382881452032/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529868382881452032/video_index.json | Data | 292.9 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529868994742325248/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529868994742325248/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529868994742325248/video_index.json | Data | 335.0 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529869596482342912/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529869596482342912/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529869596482342912/video_index.json | Data | 324.0 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529870119906316288/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529870119906316288/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529870119906316288/video_index.json | Data | 320.4 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529870630139203584/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529870630139203584/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529870630139203584/video_index.json | Data | 338.3 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529871238439112704/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529871238439112704/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529871238439112704/video_index.json | Data | 349.7 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529871794691903488/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529871794691903488/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529871794691903488/video_index.json | Data | 361.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529872325581737984/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529872325581737984/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529872325581737984/video_index.json | Data | 336.9 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529872968274939904/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529872968274939904/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529872968274939904/video_index.json | Data | 368.7 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529873518240468992/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529873518240468992/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529873518240468992/video_index.json | Data | 350.0 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529874076321976320/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529874076321976320/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529874076321976320/video_index.json | Data | 350.4 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529881578736455680/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529881578736455680/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529881578736455680/video_index.json | Data | 341.3 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529882125229101056/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529882125229101056/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529882125229101056/video_index.json | Data | 335.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529882640214134784/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529882640214134784/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529882640214134784/video_index.json | Data | 337.7 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529883531122053120/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529883531122053120/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529883531122053120/video_index.json | Data | 323.4 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529884047373766656/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529884047373766656/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529884047373766656/video_index.json | Data | 375.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529885293581176832/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529885293581176832/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529885293581176832/video_index.json | Data | 316.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529885810566893568/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529885810566893568/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529885810566893568/video_index.json | Data | 343.9 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529886368803590144/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529886368803590144/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529886368803590144/video_index.json | Data | 325.4 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529886891392897024/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529886891392897024/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529886891392897024/video_index.json | Data | 326.5 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529887391291019264/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529887391291019264/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529887391291019264/video_index.json | Data | 336.5 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529887895798681600/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529887895798681600/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529887895798681600/video_index.json | Data | 339.4 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529888493906432000/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529888493906432000/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529888493906432000/video_index.json | Data | 336.2 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529889342288302080/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529889342288302080/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529889342288302080/video_index.json | Data | 375.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529889921261637632/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529889921261637632/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529889921261637632/video_index.json | Data | 341.4 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529890442668150784/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529890442668150784/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529890442668150784/video_index.json | Data | 318.8 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529890991048232960/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529890991048232960/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529890991048232960/video_index.json | Data | 295.4 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529891519731863552/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529891519731863552/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529891519731863552/video_index.json | Data | 318.0 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529892093000945664/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529892093000945664/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529892093000945664/video_index.json | Data | 320.7 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529892674591526912/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529892674591526912/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529892674591526912/video_index.json | Data | 336.8 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529893191401082880/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529893191401082880/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529893191401082880/video_index.json | Data | 330.8 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529893696080711680/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529893696080711680/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529893696080711680/video_index.json | Data | 318.0 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529894172918550528/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529894172918550528/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529894172918550528/video_index.json | Data | 318.7 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529894661244588032/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529894661244588032/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529894661244588032/video_index.json | Data | 307.3 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529895253744553984/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529895253744553984/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529895253744553984/video_index.json | Data | 332.8 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529895796709789696/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529895796709789696/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529895796709789696/video_index.json | Data | 346.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529896402807689216/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529896402807689216/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529896402807689216/video_index.json | Data | 306.8 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529897406370418688/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529897406370418688/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529897406370418688/video_index.json | Data | 335.6 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529064021917962240/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529064021917962240/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529064021917962240/video_index.json | Data | 390.4 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529065052898856960/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529065052898856960/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529065052898856960/video_index.json | Data | 343.2 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529066456669491200/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529066456669491200/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529066456669491200/video_index.json | Data | 311.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529067018160967680/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529067018160967680/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529067018160967680/video_index.json | Data | 374.6 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529067661869191168/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529067661869191168/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529067661869191168/video_index.json | Data | 371.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529068249180803072/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529068249180803072/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529068249180803072/video_index.json | Data | 357.2 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529068969036615680/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529068969036615680/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529068969036615680/video_index.json | Data | 381.9 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529069673012793344/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529069673012793344/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529069673012793344/video_index.json | Data | 364.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529070246827134976/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529070246827134976/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529070246827134976/video_index.json | Data | 362.3 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529070880393531392/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529070880393531392/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529070880393531392/video_index.json | Data | 369.3 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529072241780723712/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529072241780723712/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529072241780723712/video_index.json | Data | 379.6 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529072875263234048/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529072875263234048/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529072875263234048/video_index.json | Data | 361.2 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529073587288281088/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529073587288281088/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529073587288281088/video_index.json | Data | 369.6 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529074339037581312/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529074339037581312/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529074339037581312/video_index.json | Data | 348.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529078764447731712/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529078764447731712/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529078764447731712/video_index.json | Data | 350.8 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529080765806022656/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529080765806022656/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529080765806022656/video_index.json | Data | 340.2 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529081365851541504/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529081365851541504/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529081365851541504/video_index.json | Data | 347.3 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529082376129351680/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529082376129351680/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529082376129351680/video_index.json | Data | 350.6 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529083096547201024/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529083096547201024/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529083096547201024/video_index.json | Data | 359.4 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529083701051265024/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529083701051265024/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529083701051265024/video_index.json | Data | 342.7 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529084739808399360/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529084739808399360/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529084739808399360/video_index.json | Data | 293.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529085343725260800/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529085343725260800/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529085343725260800/video_index.json | Data | 310.0 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529085912263168000/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529085912263168000/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529085912263168000/video_index.json | Data | 292.9 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529087411290640384/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529087411290640384/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529087411290640384/video_index.json | Data | 274.6 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529087962178916352/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529087962178916352/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529087962178916352/video_index.json | Data | 302.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529088876071620608/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529088876071620608/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529088876071620608/video_index.json | Data | 313.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529089533444886528/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529089533444886528/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529089533444886528/video_index.json | Data | 366.6 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529093155377385472/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529093155377385472/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529093155377385472/video_index.json | Data | 349.7 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529093760175050752/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529093760175050752/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529093760175050752/video_index.json | Data | 360.3 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529094320894775296/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529094320894775296/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529094320894775296/video_index.json | Data | 356.6 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529094910454534144/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529094910454534144/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529094910454534144/video_index.json | Data | 364.8 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529095909588078592/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529095909588078592/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529095909588078592/video_index.json | Data | 341.7 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529097088481103872/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529097088481103872/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529097088481103872/video_index.json | Data | 409.7 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529098144158060544/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529098144158060544/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529098144158060544/video_index.json | Data | 366.4 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529127454713581568/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529127454713581568/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529127454713581568/video_index.json | Data | 57.6 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529127808633147392/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529127808633147392/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529127808633147392/video_index.json | Data | 354.4 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529128412097024000/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529128412097024000/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529128412097024000/video_index.json | Data | 349.4 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529129353382727680/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529129353382727680/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529129353382727680/video_index.json | Data | 403.3 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529130092620419072/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529130092620419072/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529130092620419072/video_index.json | Data | 353.0 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529130663649742848/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529130663649742848/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529130663649742848/video_index.json | Data | 341.6 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529131457816039424/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529131457816039424/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529131457816039424/video_index.json | Data | 81.3 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529131620454371328/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529131620454371328/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529131620454371328/video_index.json | Data | 341.6 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529132251420299264/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529132251420299264/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529132251420299264/video_index.json | Data | 345.0 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529132817701670912/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529132817701670912/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529132817701670912/video_index.json | Data | 361.4 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529133401947246592/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529133401947246592/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529133401947246592/video_index.json | Data | 361.3 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529133982820601856/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529133982820601856/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529133982820601856/video_index.json | Data | 356.6 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529134573399576576/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529134573399576576/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529134573399576576/video_index.json | Data | 365.2 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529137011061952512/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529137011061952512/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529137011061952512/video_index.json | Data | 303.3 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529137845887832064/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529137845887832064/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529137845887832064/video_index.json | Data | 298.8 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529138762875932672/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529138762875932672/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529138762875932672/video_index.json | Data | 260.2 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529139401194475520/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529139401194475520/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529139401194475520/video_index.json | Data | 294.9 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529140058253168640/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529140058253168640/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529140058253168640/video_index.json | Data | 343.2 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529140795741835264/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529140795741835264/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529140795741835264/video_index.json | Data | 350.3 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529141424304427008/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529141424304427008/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529141424304427008/video_index.json | Data | 368.2 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529182932181192704/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529182932181192704/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529182932181192704/video_index.json | Data | 354.3 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529183513020993536/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529183513020993536/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529183513020993536/video_index.json | Data | 360.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529460342281736192/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529460342281736192/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529460342281736192/video_index.json | Data | 354.8 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529461158166138880/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529461158166138880/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529461158166138880/video_index.json | Data | 333.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529461789295644672/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529461789295644672/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529461789295644672/video_index.json | Data | 358.7 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529462542563282944/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529462542563282944/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529462542563282944/video_index.json | Data | 317.6 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529463010924433408/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529463010924433408/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529463010924433408/video_index.json | Data | 41.9 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529463176070959104/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529463176070959104/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529463176070959104/video_index.json | Data | 326.9 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529463869330690048/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529463869330690048/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529463869330690048/video_index.json | Data | 318.4 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529464598258782208/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529464598258782208/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529464598258782208/video_index.json | Data | 346.9 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529465209150771200/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529465209150771200/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529465209150771200/video_index.json | Data | 334.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529465785590747136/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529465785590747136/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529465785590747136/video_index.json | Data | 333.9 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529466408675577856/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529466408675577856/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529466408675577856/video_index.json | Data | 346.2 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529466989817368576/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529466989817368576/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529466989817368576/video_index.json | Data | 335.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529467752505413632/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529467752505413632/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529467752505413632/video_index.json | Data | 311.0 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529468289980305408/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529468289980305408/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529468289980305408/video_index.json | Data | 316.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529468776192413696/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529468776192413696/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529468776192413696/video_index.json | Data | 335.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529469277415936000/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529469277415936000/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529469277415936000/video_index.json | Data | 321.4 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529469780782747648/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529469780782747648/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529469780782747648/video_index.json | Data | 308.8 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529470980726984704/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529470980726984704/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529470980726984704/video_index.json | Data | 323.0 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529471531875307520/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529471531875307520/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529471531875307520/video_index.json | Data | 340.8 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529472100639707136/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529472100639707136/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529472100639707136/video_index.json | Data | 361.2 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529472639289004032/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529472639289004032/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529472639289004032/video_index.json | Data | 350.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529474060080123904/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529474060080123904/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529474060080123904/video_index.json | Data | 347.3 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529474619747078144/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529474619747078144/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529474619747078144/video_index.json | Data | 336.3 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529475504439037952/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529475504439037952/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529475504439037952/video_index.json | Data | 304.6 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529476116216025088/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529476116216025088/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529476116216025088/video_index.json | Data | 330.7 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529476678399561728/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529476678399561728/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529476678399561728/video_index.json | Data | 361.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529477420380327936/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529477420380327936/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529477420380327936/video_index.json | Data | 348.4 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529478124276813824/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529478124276813824/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529478124276813824/video_index.json | Data | 331.4 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529478696925138944/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529478696925138944/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529478696925138944/video_index.json | Data | 344.7 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529479561861926912/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529479561861926912/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529479561861926912/video_index.json | Data | 312.9 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529480106685239296/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529480106685239296/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529480106685239296/video_index.json | Data | 350.3 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529480625273180160/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529480625273180160/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529480625273180160/video_index.json | Data | 380.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529481293757157376/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529481293757157376/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529481293757157376/video_index.json | Data | 341.2 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529481959149932544/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529481959149932544/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529481959149932544/video_index.json | Data | 347.4 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529482567143657472/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529482567143657472/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529482567143657472/video_index.json | Data | 337.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529486733459066880/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529486733459066880/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529486733459066880/video_index.json | Data | 325.4 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529487236851044352/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529487236851044352/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529487236851044352/video_index.json | Data | 323.8 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529487728318615552/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529487728318615552/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529487728318615552/video_index.json | Data | 322.8 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529488222961274880/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529488222961274880/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529488222961274880/video_index.json | Data | 320.6 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529488735916265472/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529488735916265472/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529488735916265472/video_index.json | Data | 306.8 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529489196572479488/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529489196572479488/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529489196572479488/video_index.json | Data | 293.2 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529489709468749824/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529489709468749824/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529489709468749824/video_index.json | Data | 354.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529490270092005376/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529490270092005376/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529490270092005376/video_index.json | Data | 331.3 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529490788059189248/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529490788059189248/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529490788059189248/video_index.json | Data | 325.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529491308224188416/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529491308224188416/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529491308224188416/video_index.json | Data | 316.2 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529491800207659008/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529491800207659008/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529491800207659008/video_index.json | Data | 295.8 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529492274331783168/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529492274331783168/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529492274331783168/video_index.json | Data | 335.4 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529492860187971584/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529492860187971584/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529492860187971584/video_index.json | Data | 318.7 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529493341610184704/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529493341610184704/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529493341610184704/video_index.json | Data | 333.2 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529506635175694336/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529506635175694336/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529506635175694336/video_index.json | Data | 313.6 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529507102467297280/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529507102467297280/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529507102467297280/video_index.json | Data | 342.7 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529507636679020544/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529507636679020544/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529507636679020544/video_index.json | Data | 309.6 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529508128515690496/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529508128515690496/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529508128515690496/video_index.json | Data | 356.6 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529508652325539840/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529508652325539840/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529508652325539840/video_index.json | Data | 339.4 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529509704990986240/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529509704990986240/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529509704990986240/video_index.json | Data | 334.3 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529510284081762304/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529510284081762304/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529510284081762304/video_index.json | Data | 334.6 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529510811372883968/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529510811372883968/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529510811372883968/video_index.json | Data | 344.9 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529511342480822272/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529511342480822272/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529511342480822272/video_index.json | Data | 332.6 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529511851098902528/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529511851098902528/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529511851098902528/video_index.json | Data | 327.7 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529512380189380608/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529512380189380608/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529512380189380608/video_index.json | Data | 308.7 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529512870759370752/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529512870759370752/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529512870759370752/video_index.json | Data | 344.7 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529513414437638144/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529513414437638144/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529513414437638144/video_index.json | Data | 345.4 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529513945054842880/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529513945054842880/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529513945054842880/video_index.json | Data | 364.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529515181875400704/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529515181875400704/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529515181875400704/video_index.json | Data | 346.4 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529515699460902912/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529515699460902912/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529515699460902912/video_index.json | Data | 352.4 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529516226374537216/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529516226374537216/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529516226374537216/video_index.json | Data | 344.6 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529516762469502976/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529516762469502976/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529516762469502976/video_index.json | Data | 368.8 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529517384946159616/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529517384946159616/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529517384946159616/video_index.json | Data | 323.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529518111433166848/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529518111433166848/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529518111433166848/video_index.json | Data | 343.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529518645338705920/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529518645338705920/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529518645338705920/video_index.json | Data | 335.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-hanging-melon-seed-snacks/case_1529074252366483456/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/organize-hanging-melon-seed-snacks/case_1529074252366483456/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-hanging-melon-seed-snacks/case_1529074252366483456/video_index.json | Data | 309.3 KB | — |
| hengxuan-commercial-bank-retail-area/organize-hanging-melon-seed-snacks/case_1529075585412763648/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/organize-hanging-melon-seed-snacks/case_1529075585412763648/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-hanging-melon-seed-snacks/case_1529075585412763648/video_index.json | Data | 316.7 KB | — |
| hengxuan-commercial-bank-retail-area/organize-hanging-melon-seed-snacks/case_1529076948427345920/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/organize-hanging-melon-seed-snacks/case_1529076948427345920/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-hanging-melon-seed-snacks/case_1529076948427345920/video_index.json | Data | 280.6 KB | — |
| hengxuan-commercial-bank-retail-area/organize-hanging-melon-seed-snacks/case_1529077573693214720/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/organize-hanging-melon-seed-snacks/case_1529077573693214720/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-hanging-melon-seed-snacks/case_1529077573693214720/video_index.json | Data | 295.8 KB | — |
| hengxuan-commercial-bank-retail-area/organize-hanging-melon-seed-snacks/case_1529082844750548992/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/organize-hanging-melon-seed-snacks/case_1529082844750548992/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/organize-hanging-melon-seed-snacks/case_1529082844750548992/video_index.json | Data | 232.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529429310425796608/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529429310425796608/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529429310425796608/video_index.json | Data | 362.3 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529432343150858240/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529432343150858240/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529432343150858240/video_index.json | Data | 333.2 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529432944131706880/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529432944131706880/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529432944131706880/video_index.json | Data | 281.3 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529433409720422400/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529433409720422400/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529433409720422400/video_index.json | Data | 296.4 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529435412001460224/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529435412001460224/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529435412001460224/video_index.json | Data | 272.9 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529436151927017472/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529436151927017472/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529436151927017472/video_index.json | Data | 272.8 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529438741926514688/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529438741926514688/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529438741926514688/video_index.json | Data | 334.2 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529439776627757056/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529439776627757056/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529439776627757056/video_index.json | Data | 282.9 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529441161633075200/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529441161633075200/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529441161633075200/video_index.json | Data | 278.3 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529441717458046976/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529441717458046976/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529441717458046976/video_index.json | Data | 277.3 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529442161534177280/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529442161534177280/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529442161534177280/video_index.json | Data | 287.0 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529442974109274112/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529442974109274112/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529442974109274112/video_index.json | Data | 280.0 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529443425521242112/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529443425521242112/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529443425521242112/video_index.json | Data | 299.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529443908386295808/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529443908386295808/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529443908386295808/video_index.json | Data | 305.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529444426982625280/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529444426982625280/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529444426982625280/video_index.json | Data | 321.8 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529444957805350912/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529444957805350912/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529444957805350912/video_index.json | Data | 332.9 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529445823996235776/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529445823996235776/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529445823996235776/video_index.json | Data | 308.3 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529446339425865728/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529446339425865728/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529446339425865728/video_index.json | Data | 321.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529446852712206336/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529446852712206336/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529446852712206336/video_index.json | Data | 321.4 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529447395631304704/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529447395631304704/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529447395631304704/video_index.json | Data | 304.4 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529447895256797184/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529447895256797184/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529447895256797184/video_index.json | Data | 320.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529453575300714496/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529453575300714496/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529453575300714496/video_index.json | Data | 328.2 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529454680155885568/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529454680155885568/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529454680155885568/video_index.json | Data | 312.9 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529455289567285248/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529455289567285248/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529455289567285248/video_index.json | Data | 317.7 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529456342484389888/spatial_calibration.json | Data | 3.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529456342484389888/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1529456342484389888/video_index.json | Data | 309.7 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530151824395341824/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530151824395341824/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530151824395341824/video_index.json | Data | 241.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530152385207341056/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530152385207341056/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530152385207341056/video_index.json | Data | 294.3 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530156133027680256/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530156133027680256/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530156133027680256/video_index.json | Data | 182.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530156613913022464/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530156613913022464/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530156613913022464/video_index.json | Data | 171.2 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530157058064650240/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530157058064650240/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530157058064650240/video_index.json | Data | 180.4 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530159462575247360/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530159462575247360/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530159462575247360/video_index.json | Data | 284.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530160295094259712/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530160295094259712/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530160295094259712/video_index.json | Data | 297.2 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530161093928816640/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530161093928816640/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530161093928816640/video_index.json | Data | 325.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530162508730470400/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530162508730470400/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530162508730470400/video_index.json | Data | 296.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530163743550345216/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530163743550345216/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530163743550345216/video_index.json | Data | 299.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530165512540000256/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530165512540000256/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530165512540000256/video_index.json | Data | 355.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530166542321324032/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530166542321324032/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530166542321324032/video_index.json | Data | 309.7 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530167827279908864/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530167827279908864/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530167827279908864/video_index.json | Data | 336.9 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530168679004639232/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530168679004639232/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530168679004639232/video_index.json | Data | 343.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530169414773641216/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530169414773641216/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530169414773641216/video_index.json | Data | 378.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530170300652589056/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530170300652589056/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530170300652589056/video_index.json | Data | 331.8 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530171140213837824/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530171140213837824/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530171140213837824/video_index.json | Data | 397.9 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530171876217720832/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530171876217720832/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530171876217720832/video_index.json | Data | 315.7 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530172619867820032/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530172619867820032/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530172619867820032/video_index.json | Data | 371.0 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530173358577029120/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530173358577029120/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530173358577029120/video_index.json | Data | 298.4 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530174397325774848/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530174397325774848/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530174397325774848/video_index.json | Data | 304.7 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530175082444361728/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530175082444361728/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530175082444361728/video_index.json | Data | 384.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530175767588114432/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530175767588114432/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530175767588114432/video_index.json | Data | 343.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530176472000499712/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530176472000499712/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530176472000499712/video_index.json | Data | 331.3 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530199917694291968/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530199917694291968/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530199917694291968/video_index.json | Data | 287.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530200493911969792/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530200493911969792/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530200493911969792/video_index.json | Data | 335.7 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530201085971533824/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530201085971533824/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530201085971533824/video_index.json | Data | 318.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530201699854061568/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530201699854061568/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530201699854061568/video_index.json | Data | 322.4 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530202336331304960/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530202336331304960/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530202336331304960/video_index.json | Data | 334.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530202965946667008/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530202965946667008/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530202965946667008/video_index.json | Data | 340.7 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530203622439129088/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530203622439129088/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530203622439129088/video_index.json | Data | 352.9 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530204293766844416/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530204293766844416/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530204293766844416/video_index.json | Data | 349.4 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530204927052222464/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530204927052222464/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530204927052222464/video_index.json | Data | 321.7 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530205687513092096/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530205687513092096/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530205687513092096/video_index.json | Data | 318.7 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530206323218583552/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530206323218583552/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530206323218583552/video_index.json | Data | 335.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530207014737678336/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530207014737678336/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530207014737678336/video_index.json | Data | 318.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530207956048547840/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530207956048547840/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530207956048547840/video_index.json | Data | 332.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530208765381447680/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530208765381447680/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530208765381447680/video_index.json | Data | 308.2 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530209713956851712/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530209713956851712/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530209713956851712/video_index.json | Data | 350.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530210394075828224/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530210394075828224/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530210394075828224/video_index.json | Data | 335.0 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530211073930563584/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530211073930563584/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530211073930563584/video_index.json | Data | 323.9 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530211763868405760/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530211763868405760/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530211763868405760/video_index.json | Data | 341.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530212510395797504/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530212510395797504/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530212510395797504/video_index.json | Data | 355.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530213634205028352/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530213634205028352/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530213634205028352/video_index.json | Data | 343.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530214329863901184/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530214329863901184/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530214329863901184/video_index.json | Data | 336.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530215030006484992/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530215030006484992/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530215030006484992/video_index.json | Data | 362.3 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530216236451893248/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530216236451893248/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530216236451893248/video_index.json | Data | 342.9 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530217050847318016/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530217050847318016/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530217050847318016/video_index.json | Data | 346.0 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530217857755910144/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530217857755910144/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530217857755910144/video_index.json | Data | 357.5 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530218563783102464/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530218563783102464/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530218563783102464/video_index.json | Data | 326.7 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530219433333624832/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530219433333624832/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530219433333624832/video_index.json | Data | 338.0 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530220155441778688/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530220155441778688/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530220155441778688/video_index.json | Data | 331.2 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530220810306850816/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530220810306850816/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530220810306850816/video_index.json | Data | 371.9 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530221616733097984/spatial_calibration.json | Data | 3.6 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530221616733097984/undistort_camera.json | Data | 2.1 KB | — |
| hengxuan-commercial-bank-retail-area/snack-correction-mixed-pickled-mustard-and-kelp-shreds/case_1530221616733097984/video_index.json | Data | 331.1 KB | — |
| README.md | Documentation | 7.0 KB | — |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517110431821336576/head_left_camera_undistorted.mp4 | Other | 91.4 MB | 30b0b704fcd4 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517110431821336576/head_right_camera_undistorted.mp4 | Other | 89.4 MB | 3819b2413c07 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517110751859314688/head_left_camera_undistorted.mp4 | Other | 202.3 MB | 30ce416326f2 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517110751859314688/head_right_camera_undistorted.mp4 | Other | 199.4 MB | c51fb8dfc7e3 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517111337799389184/head_left_camera_undistorted.mp4 | Other | 176.6 MB | 8263f9b3a0fb |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517111337799389184/head_right_camera_undistorted.mp4 | Other | 173.3 MB | d4b0663b8f77 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517111937920405504/head_left_camera_undistorted.mp4 | Other | 132.0 MB | 23475e351439 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517111937920405504/head_right_camera_undistorted.mp4 | Other | 129.5 MB | 2053aa018a67 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517113163777052672/head_left_camera_undistorted.mp4 | Other | 117.4 MB | 483eef35f8bd |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517113163777052672/head_right_camera_undistorted.mp4 | Other | 115.6 MB | 6c68c2e51fa0 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517113582884491264/head_left_camera_undistorted.mp4 | Other | 98.8 MB | eb755471b2d9 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517113582884491264/head_right_camera_undistorted.mp4 | Other | 97.4 MB | c21eacc48d68 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517113903518060544/head_left_camera_undistorted.mp4 | Other | 123.4 MB | 76beefba1a9b |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517113903518060544/head_right_camera_undistorted.mp4 | Other | 121.9 MB | 5b53997d7f76 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517114823215681536/head_left_camera_undistorted.mp4 | Other | 127.2 MB | 0bbefe0c8f9e |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517114823215681536/head_right_camera_undistorted.mp4 | Other | 125.2 MB | 80bc320035d9 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517115160177676288/head_left_camera_undistorted.mp4 | Other | 117.9 MB | 0f56fe2157b0 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517115160177676288/head_right_camera_undistorted.mp4 | Other | 116.5 MB | 46fa1c33b2fb |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517115464017252352/head_left_camera_undistorted.mp4 | Other | 121.4 MB | 65ea08cb5cfa |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1517115464017252352/head_right_camera_undistorted.mp4 | Other | 120.3 MB | 40da940332d1 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1518928551024267264/head_left_camera_undistorted.mp4 | Other | 105.1 MB | 77b2ce8360af |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-beer/case_1518928551024267264/head_right_camera_undistorted.mp4 | Other | 102.5 MB | c1d13075a426 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517116832190828544/head_left_camera_undistorted.mp4 | Other | 88.3 MB | 67aa6b8651a2 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517116832190828544/head_right_camera_undistorted.mp4 | Other | 89.9 MB | 57c32dccead6 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517117192468959232/head_left_camera_undistorted.mp4 | Other | 82.1 MB | 4177d87cb9df |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517117192468959232/head_right_camera_undistorted.mp4 | Other | 83.0 MB | 2fc9fadb2415 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517117512381108224/head_left_camera_undistorted.mp4 | Other | 83.2 MB | 5b1c4ed4974e |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517117512381108224/head_right_camera_undistorted.mp4 | Other | 84.7 MB | 4a83a6f5b41d |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517118238012477440/head_left_camera_undistorted.mp4 | Other | 64.8 MB | b17ac610c14e |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517118238012477440/head_right_camera_undistorted.mp4 | Other | 65.1 MB | d78741728116 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517118475791765504/head_left_camera_undistorted.mp4 | Other | 94.3 MB | df39e85a0ec5 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517118475791765504/head_right_camera_undistorted.mp4 | Other | 94.6 MB | d5ab9b0138e6 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517118789328572416/head_left_camera_undistorted.mp4 | Other | 114.7 MB | 060b875ac2e7 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517118789328572416/head_right_camera_undistorted.mp4 | Other | 114.5 MB | add241a599b5 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517119165234679808/head_left_camera_undistorted.mp4 | Other | 122.7 MB | 4d0c5117966e |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517119165234679808/head_right_camera_undistorted.mp4 | Other | 122.5 MB | 1820c1ed0b77 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517119549277736960/head_left_camera_undistorted.mp4 | Other | 88.8 MB | 760347a71749 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517119549277736960/head_right_camera_undistorted.mp4 | Other | 89.0 MB | ba2134fc7a6b |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517119857143844864/head_left_camera_undistorted.mp4 | Other | 96.6 MB | 4e4de3a820b2 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517119857143844864/head_right_camera_undistorted.mp4 | Other | 95.9 MB | dcc8dffaa09a |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517120518057103360/head_left_camera_undistorted.mp4 | Other | 65.9 MB | fefb3c6dbc9e |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-brands-of-soda-water/case_1517120518057103360/head_right_camera_undistorted.mp4 | Other | 66.9 MB | 9aa16421b2ac |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517105046691516416/head_left_camera_undistorted.mp4 | Other | 159.9 MB | 313d0159a3d1 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517105046691516416/head_right_camera_undistorted.mp4 | Other | 165.0 MB | 345cc8452674 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517107868556333056/head_left_camera_undistorted.mp4 | Other | 248.8 MB | f36fc6acb184 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517107868556333056/head_right_camera_undistorted.mp4 | Other | 259.0 MB | 1cf3843f980e |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517108681219510272/head_left_camera_undistorted.mp4 | Other | 270.1 MB | 0ced37dd9a00 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517108681219510272/head_right_camera_undistorted.mp4 | Other | 280.4 MB | cf8bfc26a903 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517115350913650688/head_left_camera_undistorted.mp4 | Other | 255.8 MB | 1f408320ee0d |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517115350913650688/head_right_camera_undistorted.mp4 | Other | 267.0 MB | 6698873e0331 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517116154915590144/head_left_camera_undistorted.mp4 | Other | 238.0 MB | ad7cd29b76b7 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517116154915590144/head_right_camera_undistorted.mp4 | Other | 248.0 MB | 2e9e5a6f882d |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517118205007499264/head_left_camera_undistorted.mp4 | Other | 243.9 MB | 40055a62aa06 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517118205007499264/head_right_camera_undistorted.mp4 | Other | 257.2 MB | 24a08a68dd1b |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517118918668324864/head_left_camera_undistorted.mp4 | Other | 279.8 MB | 3a80692838da |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517118918668324864/head_right_camera_undistorted.mp4 | Other | 294.4 MB | 4fdae97bbf2c |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517119759018102784/head_left_camera_undistorted.mp4 | Other | 166.9 MB | e2e2a3711ad1 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517119759018102784/head_right_camera_undistorted.mp4 | Other | 175.3 MB | c511d07f6c7d |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517120506413715456/head_left_camera_undistorted.mp4 | Other | 214.6 MB | b32df1a56fa9 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517120506413715456/head_right_camera_undistorted.mp4 | Other | 225.9 MB | 15c52ad16ecf |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517121295983054848/head_left_camera_undistorted.mp4 | Other | 206.8 MB | b6caf8777847 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517121295983054848/head_right_camera_undistorted.mp4 | Other | 215.2 MB | 7af4fde0df73 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517123355675725824/head_left_camera_undistorted.mp4 | Other | 177.6 MB | 4b7fff90de15 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517123355675725824/head_right_camera_undistorted.mp4 | Other | 187.1 MB | 3ee3c6cbe21a |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517124116191121408/head_left_camera_undistorted.mp4 | Other | 226.4 MB | 8526c9fbf3ee |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517124116191121408/head_right_camera_undistorted.mp4 | Other | 239.4 MB | 5a7be43e6333 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517124881097953280/head_left_camera_undistorted.mp4 | Other | 191.7 MB | f1643c11d5d7 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517124881097953280/head_right_camera_undistorted.mp4 | Other | 204.2 MB | b12d548bf807 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517128915749965824/head_left_camera_undistorted.mp4 | Other | 267.3 MB | 01eb4d932372 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517128915749965824/head_right_camera_undistorted.mp4 | Other | 260.6 MB | 707f18ccf02e |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517129826853457920/head_left_camera_undistorted.mp4 | Other | 355.4 MB | b227c846a0bf |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517129826853457920/head_right_camera_undistorted.mp4 | Other | 344.1 MB | 5437110e6954 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517133178060410880/head_left_camera_undistorted.mp4 | Other | 235.4 MB | 3454a8d0a535 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517133178060410880/head_right_camera_undistorted.mp4 | Other | 230.6 MB | 3898db7b3960 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517133898532786176/head_left_camera_undistorted.mp4 | Other | 209.9 MB | 9180175381d5 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517133898532786176/head_right_camera_undistorted.mp4 | Other | 205.8 MB | 7e979be39912 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517134644045156352/head_left_camera_undistorted.mp4 | Other | 270.4 MB | 9cbf0f429118 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517134644045156352/head_right_camera_undistorted.mp4 | Other | 264.0 MB | 02d9a47534d9 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517135508478627840/head_left_camera_undistorted.mp4 | Other | 201.6 MB | 2c9e17bdcb59 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517135508478627840/head_right_camera_undistorted.mp4 | Other | 197.4 MB | 837ac822e0bb |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517136191655251968/head_left_camera_undistorted.mp4 | Other | 234.5 MB | 4f31b861511e |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517136191655251968/head_right_camera_undistorted.mp4 | Other | 228.2 MB | 5e8da84591ee |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517166728210026496/head_left_camera_undistorted.mp4 | Other | 344.2 MB | 9b5be3e07333 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517166728210026496/head_right_camera_undistorted.mp4 | Other | 335.5 MB | c95627793c7b |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517167713863077888/head_left_camera_undistorted.mp4 | Other | 231.3 MB | a569829ffcf6 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517167713863077888/head_right_camera_undistorted.mp4 | Other | 225.3 MB | 5a3a82848a3a |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517168444796047360/head_left_camera_undistorted.mp4 | Other | 260.6 MB | a9612f6ad299 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517168444796047360/head_right_camera_undistorted.mp4 | Other | 254.1 MB | c6b63e7369e3 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517192687915110400/head_left_camera_undistorted.mp4 | Other | 232.3 MB | 5e646d73d535 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517192687915110400/head_right_camera_undistorted.mp4 | Other | 224.3 MB | 2f7fdab18822 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517193546057125888/head_left_camera_undistorted.mp4 | Other | 263.0 MB | b9ed6cbbaf42 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517193546057125888/head_right_camera_undistorted.mp4 | Other | 253.3 MB | 930b96d63b9a |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517194266449809408/head_left_camera_undistorted.mp4 | Other | 301.4 MB | 5315ac4e1fec |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517194266449809408/head_right_camera_undistorted.mp4 | Other | 290.4 MB | 1ea6222a0df0 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517195044891660288/head_left_camera_undistorted.mp4 | Other | 239.8 MB | b2ef0bfde5fb |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517195044891660288/head_right_camera_undistorted.mp4 | Other | 230.8 MB | 5cc071851dbe |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517195660078616576/head_left_camera_undistorted.mp4 | Other | 275.8 MB | a60d09a5ace0 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517195660078616576/head_right_camera_undistorted.mp4 | Other | 264.9 MB | 0a1623b9b153 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517196429863424000/head_left_camera_undistorted.mp4 | Other | 263.1 MB | 6bcc7c0a2fed |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517196429863424000/head_right_camera_undistorted.mp4 | Other | 252.1 MB | 3b4b3e57e391 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517213297491841024/head_left_camera_undistorted.mp4 | Other | 268.6 MB | 6b0f6c44cff8 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517213297491841024/head_right_camera_undistorted.mp4 | Other | 264.4 MB | c798a67b4f31 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517214034049372160/head_left_camera_undistorted.mp4 | Other | 231.7 MB | 249ef4c259e3 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517214034049372160/head_right_camera_undistorted.mp4 | Other | 226.8 MB | 11d139e0b4c2 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517214814995222528/head_left_camera_undistorted.mp4 | Other | 238.9 MB | 26caed58055c |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517214814995222528/head_right_camera_undistorted.mp4 | Other | 234.9 MB | 0f71baefaa0b |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517215638232240128/head_left_camera_undistorted.mp4 | Other | 203.7 MB | 3b39e4fd3270 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517215638232240128/head_right_camera_undistorted.mp4 | Other | 200.3 MB | 0c9e5826e691 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517216268438999040/head_left_camera_undistorted.mp4 | Other | 201.7 MB | 711cbedcd8ae |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517216268438999040/head_right_camera_undistorted.mp4 | Other | 197.9 MB | 9f78030b8044 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517217946051547136/head_left_camera_undistorted.mp4 | Other | 233.1 MB | 26f9c30ca4f9 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517217946051547136/head_right_camera_undistorted.mp4 | Other | 229.1 MB | 9706053c49c7 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517218672878292992/head_left_camera_undistorted.mp4 | Other | 237.5 MB | 8e21d1dd164c |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517218672878292992/head_right_camera_undistorted.mp4 | Other | 232.4 MB | e21b484ac58e |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517219513693638656/head_left_camera_undistorted.mp4 | Other | 211.7 MB | cdc03b620f97 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517219513693638656/head_right_camera_undistorted.mp4 | Other | 207.2 MB | f163a325e8cf |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517220147859820544/head_left_camera_undistorted.mp4 | Other | 214.7 MB | 8c777d1b6396 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517220147859820544/head_right_camera_undistorted.mp4 | Other | 209.7 MB | 599a978a8f12 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517221361842393088/head_left_camera_undistorted.mp4 | Other | 190.3 MB | 5393a1a0f220 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517221361842393088/head_right_camera_undistorted.mp4 | Other | 186.6 MB | f766f63d0e76 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517222035510530048/head_left_camera_undistorted.mp4 | Other | 260.8 MB | a89f38b7917e |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517222035510530048/head_right_camera_undistorted.mp4 | Other | 255.9 MB | 52fdfa2d576c |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517222842637225984/head_left_camera_undistorted.mp4 | Other | 155.5 MB | b3469bb9bfcc |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517222842637225984/head_right_camera_undistorted.mp4 | Other | 152.7 MB | 74f03e48bf94 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517223493626761216/head_left_camera_undistorted.mp4 | Other | 189.1 MB | 74dea91ab479 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517223493626761216/head_right_camera_undistorted.mp4 | Other | 184.5 MB | 30097ae1cc50 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517224286513795072/head_left_camera_undistorted.mp4 | Other | 208.4 MB | e47b9fb1e71c |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1517224286513795072/head_right_camera_undistorted.mp4 | Other | 204.2 MB | c067d65acdf2 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1527612945373073408/head_left_camera_undistorted.mp4 | Other | 73.4 MB | 753e619aae84 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1527612945373073408/head_right_camera_undistorted.mp4 | Other | 71.6 MB | e97544045b67 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1527612945373073408/video_stream_audio_aac_stereo.m4a | Other | 830.0 KB | a483afff72d0 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1527612945373073408/video_stream_audio_opus_4ch.ogg | Other | 1.7 MB | 478198d0d434 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1527612945373073408/video_stream_depth_frames.npz | Other | 6.7 MB | ed36417d5467 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1527612945373073408/video_stream_head_pose_6dof.npz | Other | 1.7 MB | 06eef278b906 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1527613279763959808/head_left_camera_undistorted.mp4 | Other | 192.7 MB | 966d862930ce |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1527613279763959808/head_right_camera_undistorted.mp4 | Other | 188.5 MB | c33b7fef09b9 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1527613279763959808/video_stream_audio_aac_stereo.m4a | Other | 2.3 MB | 0d0b7d4585e3 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1527613279763959808/video_stream_audio_opus_4ch.ogg | Other | 4.6 MB | 68637b782179 |
| hengxuan-commercial-bank-retail-area/beverage-error-correction-mixing-different-tea-drinks/case_1527613279763959808/video_stream_depth_frames.npz | Other | 18.8 MB | aef28aac8a39 |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519991841678692352/head_left_camera_undistorted.mp4 | Other | 119.0 MB | d93c4def9245 |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519991841678692352/head_right_camera_undistorted.mp4 | Other | 119.8 MB | 9e259ceb42e0 |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519992437748011008/head_left_camera_undistorted.mp4 | Other | 110.9 MB | 066ad174647f |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519992437748011008/head_right_camera_undistorted.mp4 | Other | 112.2 MB | 1bb5916833a0 |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519993218731610112/head_left_camera_undistorted.mp4 | Other | 139.0 MB | 788ebf94e1c6 |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519993218731610112/head_right_camera_undistorted.mp4 | Other | 145.7 MB | cb3d06d454cb |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519993904147992576/head_left_camera_undistorted.mp4 | Other | 119.5 MB | 6302004d8491 |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519993904147992576/head_right_camera_undistorted.mp4 | Other | 122.2 MB | c61b30dc5aff |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519995116171825152/head_left_camera_undistorted.mp4 | Other | 143.7 MB | 63c96b6663ce |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519995116171825152/head_right_camera_undistorted.mp4 | Other | 146.8 MB | d87233fd8552 |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519995954764189696/head_left_camera_undistorted.mp4 | Other | 156.5 MB | 97225daa446c |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519995954764189696/head_right_camera_undistorted.mp4 | Other | 159.4 MB | 0a8c5a482ae5 |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519996924411777024/head_left_camera_undistorted.mp4 | Other | 136.5 MB | f01194a64d09 |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519996924411777024/head_right_camera_undistorted.mp4 | Other | 139.7 MB | 15a8a8e4290a |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519997879932948480/head_left_camera_undistorted.mp4 | Other | 176.9 MB | c30dcfef8f3c |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519997879932948480/head_right_camera_undistorted.mp4 | Other | 179.4 MB | 72589700ad6b |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519998708425428992/head_left_camera_undistorted.mp4 | Other | 116.3 MB | 9f8cb986aa74 |
| hengxuan-commercial-bank-retail-area/clean-up-and-replenish-mineral-water/case_1519998708425428992/head_right_camera_undistorted.mp4 | Other | 118.9 MB | 804d2dcf5d3e |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518920662238892032/head_left_camera_undistorted.mp4 | Other | 305.1 MB | fc34dc5ba9e8 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518920662238892032/head_right_camera_undistorted.mp4 | Other | 304.9 MB | a9b4702be6b4 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518922721323388928/head_left_camera_undistorted.mp4 | Other | 323.4 MB | c5ebac4a0fb4 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518922721323388928/head_right_camera_undistorted.mp4 | Other | 327.7 MB | 2ceb1a83a4b8 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518926416018673664/head_left_camera_undistorted.mp4 | Other | 306.5 MB | 7b534b51b666 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518926416018673664/head_right_camera_undistorted.mp4 | Other | 317.2 MB | 6ec6c0adf832 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518927421330427904/head_left_camera_undistorted.mp4 | Other | 293.9 MB | 0e96fc136fbe |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518927421330427904/head_right_camera_undistorted.mp4 | Other | 300.0 MB | d530a061eaf2 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518928262967857152/head_left_camera_undistorted.mp4 | Other | 304.8 MB | ab8ee9b19be9 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518928262967857152/head_right_camera_undistorted.mp4 | Other | 314.4 MB | 038e8639473a |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518929718164852736/head_left_camera_undistorted.mp4 | Other | 341.7 MB | 0c932935f2fb |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518929718164852736/head_right_camera_undistorted.mp4 | Other | 351.0 MB | 982bd0db2f7b |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518931015802818560/head_left_camera_undistorted.mp4 | Other | 295.0 MB | 30faa2cbe5c8 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518931015802818560/head_right_camera_undistorted.mp4 | Other | 303.4 MB | 043579350726 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518932848688500736/head_left_camera_undistorted.mp4 | Other | 336.1 MB | 1c3400d95e7f |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518932848688500736/head_right_camera_undistorted.mp4 | Other | 345.4 MB | f91511082fd0 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518934016206573568/head_left_camera_undistorted.mp4 | Other | 298.4 MB | 26ac07c1f421 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518934016206573568/head_right_camera_undistorted.mp4 | Other | 307.6 MB | 3d7c3b54a742 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518945069376212992/head_left_camera_undistorted.mp4 | Other | 30.1 MB | 5cd3dd0dc1c5 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518945069376212992/head_right_camera_undistorted.mp4 | Other | 29.6 MB | 8d88c9dc574f |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518946273791578112/head_left_camera_undistorted.mp4 | Other | 300.4 MB | 384f2d10de3b |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518946273791578112/head_right_camera_undistorted.mp4 | Other | 315.1 MB | 7f5687b59ade |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518970720741232640/head_left_camera_undistorted.mp4 | Other | 383.4 MB | eb1e92212220 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518970720741232640/head_right_camera_undistorted.mp4 | Other | 403.0 MB | b5cc02008dc9 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518971631093944320/head_left_camera_undistorted.mp4 | Other | 355.6 MB | 6961545ec001 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518971631093944320/head_right_camera_undistorted.mp4 | Other | 374.1 MB | 056fdb19598e |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518972553723383808/head_left_camera_undistorted.mp4 | Other | 348.1 MB | 426375087ca1 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518972553723383808/head_right_camera_undistorted.mp4 | Other | 370.0 MB | 6fa985fcceca |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518974420092194816/head_left_camera_undistorted.mp4 | Other | 378.2 MB | 7b2d7dbf8f62 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518974420092194816/head_right_camera_undistorted.mp4 | Other | 402.3 MB | 4684ece335e8 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518975405002854400/head_left_camera_undistorted.mp4 | Other | 357.1 MB | 6225650729a8 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518975405002854400/head_right_camera_undistorted.mp4 | Other | 382.1 MB | a92e92ce89c1 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518976464907669504/head_left_camera_undistorted.mp4 | Other | 379.9 MB | f2e5c5b62dea |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518976464907669504/head_right_camera_undistorted.mp4 | Other | 400.0 MB | 3a2454898a1f |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518978848966840320/head_left_camera_undistorted.mp4 | Other | 400.9 MB | f44de07d7e50 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518978848966840320/head_right_camera_undistorted.mp4 | Other | 422.9 MB | 0450adabfe38 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518980130771308544/head_left_camera_undistorted.mp4 | Other | 364.6 MB | 7c929fbee887 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518980130771308544/head_right_camera_undistorted.mp4 | Other | 386.0 MB | 5e5f3aae4105 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518982653833908224/head_left_camera_undistorted.mp4 | Other | 338.9 MB | ab8b87c065d1 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518982653833908224/head_right_camera_undistorted.mp4 | Other | 358.5 MB | 2e8a4ea06755 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518984542159900672/head_left_camera_undistorted.mp4 | Other | 331.9 MB | 5c0c550da28d |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518984542159900672/head_right_camera_undistorted.mp4 | Other | 349.4 MB | d6227a6ab9c3 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518986561310429184/head_left_camera_undistorted.mp4 | Other | 327.5 MB | e1a3aa58c5f0 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518986561310429184/head_right_camera_undistorted.mp4 | Other | 346.6 MB | 9de500668bab |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518988824317792256/head_left_camera_undistorted.mp4 | Other | 361.3 MB | 2b45ae8e9a19 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518988824317792256/head_right_camera_undistorted.mp4 | Other | 355.3 MB | 7cc64951fec4 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518989891151597568/head_left_camera_undistorted.mp4 | Other | 346.5 MB | fe6c15da16a8 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518989891151597568/head_right_camera_undistorted.mp4 | Other | 344.8 MB | f17c4bb7baec |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518990761641644032/head_left_camera_undistorted.mp4 | Other | 357.4 MB | 7032523a4d35 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518990761641644032/head_right_camera_undistorted.mp4 | Other | 352.2 MB | 7b64f4bb6cb4 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518991744660672512/head_left_camera_undistorted.mp4 | Other | 379.7 MB | 67d75419991e |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518991744660672512/head_right_camera_undistorted.mp4 | Other | 373.8 MB | 54dca59805d0 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518994801104523264/head_left_camera_undistorted.mp4 | Other | 367.2 MB | a35d4d3073dd |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518994801104523264/head_right_camera_undistorted.mp4 | Other | 363.2 MB | 17b88dbba117 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518995694797459456/head_left_camera_undistorted.mp4 | Other | 346.3 MB | b767efdc32ae |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518995694797459456/head_right_camera_undistorted.mp4 | Other | 343.1 MB | 5c7fe14baee8 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518996553522483200/head_left_camera_undistorted.mp4 | Other | 376.8 MB | a8b1817b72f1 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518996553522483200/head_right_camera_undistorted.mp4 | Other | 373.4 MB | 9ed811c2292a |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518997478207131648/head_left_camera_undistorted.mp4 | Other | 380.6 MB | 41b17194f2b9 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1518997478207131648/head_right_camera_undistorted.mp4 | Other | 374.2 MB | fa4088be2905 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519001443481161728/head_left_camera_undistorted.mp4 | Other | 366.5 MB | f8c55d1d8112 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519001443481161728/head_right_camera_undistorted.mp4 | Other | 359.1 MB | 8faaccabf0ef |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519007987228741632/head_left_camera_undistorted.mp4 | Other | 311.0 MB | b25ad7755aff |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519007987228741632/head_right_camera_undistorted.mp4 | Other | 307.6 MB | 8d88ddfa1c51 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519010208074960896/head_left_camera_undistorted.mp4 | Other | 350.4 MB | 6d087ee4ef6f |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519010208074960896/head_right_camera_undistorted.mp4 | Other | 364.5 MB | 1dc8b7300315 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519011248455290880/head_left_camera_undistorted.mp4 | Other | 349.9 MB | 823668ccfe76 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519011248455290880/head_right_camera_undistorted.mp4 | Other | 365.8 MB | 42e3c5f77a5a |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519012328681508864/head_left_camera_undistorted.mp4 | Other | 388.8 MB | 2904e62ae8f9 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519012328681508864/head_right_camera_undistorted.mp4 | Other | 408.8 MB | 693cbb2e6c83 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519015583910203392/head_left_camera_undistorted.mp4 | Other | 346.6 MB | 86cd39c0030f |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519015583910203392/head_right_camera_undistorted.mp4 | Other | 364.1 MB | d90b057a78b2 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519017266115514368/head_left_camera_undistorted.mp4 | Other | 335.0 MB | aed49ceb1a7c |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519017266115514368/head_right_camera_undistorted.mp4 | Other | 351.8 MB | c40338887557 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519018218734227456/head_left_camera_undistorted.mp4 | Other | 321.8 MB | 70d4f21d1283 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519018218734227456/head_right_camera_undistorted.mp4 | Other | 339.1 MB | 6bdbd5927cf7 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519019783847153664/head_left_camera_undistorted.mp4 | Other | 311.1 MB | 9d8e8527fd94 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519019783847153664/head_right_camera_undistorted.mp4 | Other | 328.1 MB | b84d38685000 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519021312264114176/head_left_camera_undistorted.mp4 | Other | 346.9 MB | 02ce765c596c |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519021312264114176/head_right_camera_undistorted.mp4 | Other | 364.9 MB | 11be3d4c72c3 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519027462208491520/head_left_camera_undistorted.mp4 | Other | 337.6 MB | 4f400452b3b3 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519027462208491520/head_right_camera_undistorted.mp4 | Other | 355.5 MB | d01d5f9bd8a1 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519028629323911168/head_left_camera_undistorted.mp4 | Other | 275.1 MB | 1a1f402816cd |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519028629323911168/head_right_camera_undistorted.mp4 | Other | 289.9 MB | f87771b9a991 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519029625294950400/head_left_camera_undistorted.mp4 | Other | 300.9 MB | 586a3d404eef |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519029625294950400/head_right_camera_undistorted.mp4 | Other | 317.3 MB | 284df3556c75 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519033516103307264/head_left_camera_undistorted.mp4 | Other | 366.2 MB | c77349b83bc2 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519033516103307264/head_right_camera_undistorted.mp4 | Other | 358.4 MB | 8ebbfc41c082 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519036097030524928/head_left_camera_undistorted.mp4 | Other | 336.6 MB | bc3cd880c7af |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1519036097030524928/head_right_camera_undistorted.mp4 | Other | 329.5 MB | e4bbc4b82e9a |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527611463223480320/head_left_camera_undistorted.mp4 | Other | 213.8 MB | 0d925893c3e6 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527611463223480320/head_right_camera_undistorted.mp4 | Other | 222.7 MB | 4bf981000c3b |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527611463223480320/video_stream_audio_aac_stereo.m4a | Other | 4.3 MB | f8b697008ff3 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527611463223480320/video_stream_audio_opus_4ch.ogg | Other | 8.6 MB | 22a9cf83ef53 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527611463223480320/video_stream_depth_frames.npz | Other | 38.2 MB | 0764518b05de |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527611463223480320/video_stream_head_pose_6dof.npz | Other | 9.0 MB | 6aab7aa4b922 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527620155402620928/head_left_camera_undistorted.mp4 | Other | 190.0 MB | 820eca1071bf |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527620155402620928/head_right_camera_undistorted.mp4 | Other | 200.5 MB | 52dc91942591 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527620155402620928/video_stream_audio_aac_stereo.m4a | Other | 2.2 MB | 6d56fe4fae79 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527620155402620928/video_stream_audio_opus_4ch.ogg | Other | 4.4 MB | cb0bcd0068bd |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527620155402620928/video_stream_depth_frames.npz | Other | 23.3 MB | d83469627bb9 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527620155402620928/video_stream_head_pose_6dof.npz | Other | 4.8 MB | 5bbf9e9d1909 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527621621135708160/head_left_camera_undistorted.mp4 | Other | 223.2 MB | ceb9ae7efb8a |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527621621135708160/head_right_camera_undistorted.mp4 | Other | 238.2 MB | 63053a169dfe |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527621621135708160/video_stream_audio_aac_stereo.m4a | Other | 3.0 MB | c85d24301b34 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527621621135708160/video_stream_audio_opus_4ch.ogg | Other | 6.0 MB | d6952c2051b6 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527621621135708160/video_stream_depth_frames.npz | Other | 31.4 MB | f08fef0f4b60 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527621621135708160/video_stream_head_pose_6dof.npz | Other | 6.4 MB | d1cb2884248f |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527623422660579328/head_left_camera_undistorted.mp4 | Other | 206.9 MB | cbc115fe5ccb |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527623422660579328/head_right_camera_undistorted.mp4 | Other | 222.5 MB | ea648ffa3f14 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527623422660579328/video_stream_audio_aac_stereo.m4a | Other | 2.7 MB | 0a7a880596cf |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527623422660579328/video_stream_audio_opus_4ch.ogg | Other | 5.4 MB | 506d3077911e |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527623422660579328/video_stream_depth_frames.npz | Other | 27.4 MB | daa3e993ccb9 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527623422660579328/video_stream_head_pose_6dof.npz | Other | 5.7 MB | ba09816d3c8f |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527625605682565120/head_left_camera_undistorted.mp4 | Other | 226.6 MB | 61ab3ea67fba |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527625605682565120/head_right_camera_undistorted.mp4 | Other | 241.2 MB | b248b4218615 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527625605682565120/video_stream_audio_aac_stereo.m4a | Other | 2.9 MB | 38f44d82bad1 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527625605682565120/video_stream_audio_opus_4ch.ogg | Other | 5.8 MB | 46300ea6d509 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527625605682565120/video_stream_depth_frames.npz | Other | 29.2 MB | 5c9409d8ad80 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527625605682565120/video_stream_head_pose_6dof.npz | Other | 6.1 MB | f5a36ee9d86d |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527626740535398400/head_left_camera_undistorted.mp4 | Other | 161.9 MB | b2a44912a133 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527626740535398400/head_right_camera_undistorted.mp4 | Other | 169.1 MB | 87f6a38b3581 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527626740535398400/video_stream_audio_aac_stereo.m4a | Other | 2.8 MB | 56cc5d96395d |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527626740535398400/video_stream_audio_opus_4ch.ogg | Other | 5.5 MB | 25a4a73eedb6 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527626740535398400/video_stream_depth_frames.npz | Other | 29.3 MB | b5e6548505b7 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527626740535398400/video_stream_head_pose_6dof.npz | Other | 5.8 MB | c165b462df2a |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527627998579134464/head_left_camera_undistorted.mp4 | Other | 231.6 MB | e51466a601f1 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527627998579134464/head_right_camera_undistorted.mp4 | Other | 249.8 MB | 95b4f3d182c0 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527627998579134464/video_stream_audio_aac_stereo.m4a | Other | 2.9 MB | 43a2e0a064fb |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527627998579134464/video_stream_audio_opus_4ch.ogg | Other | 5.8 MB | c2bf76a0ffaf |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527627998579134464/video_stream_depth_frames.npz | Other | 31.2 MB | cb792fdb2329 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527627998579134464/video_stream_head_pose_6dof.npz | Other | 6.3 MB | 2b9aeae30f7f |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527628814027329536/head_left_camera_undistorted.mp4 | Other | 254.3 MB | b9716311ded4 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527628814027329536/head_right_camera_undistorted.mp4 | Other | 273.5 MB | 789374a89c79 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527628814027329536/video_stream_audio_aac_stereo.m4a | Other | 3.1 MB | 22905b5ab4d5 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527628814027329536/video_stream_audio_opus_4ch.ogg | Other | 6.2 MB | e74ce33d31ae |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527628814027329536/video_stream_depth_frames.npz | Other | 33.2 MB | e7fe152d26ae |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527628814027329536/video_stream_head_pose_6dof.npz | Other | 6.6 MB | e277c8094de8 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527629559401287680/head_left_camera_undistorted.mp4 | Other | 228.6 MB | e102fd9480ad |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527629559401287680/head_right_camera_undistorted.mp4 | Other | 245.4 MB | 1338eb2bf21a |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527629559401287680/video_stream_audio_aac_stereo.m4a | Other | 2.8 MB | 823751e9bb7b |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527629559401287680/video_stream_audio_opus_4ch.ogg | Other | 5.7 MB | 361e3b05d609 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527629559401287680/video_stream_depth_frames.npz | Other | 29.4 MB | b2ce6e343296 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527629559401287680/video_stream_head_pose_6dof.npz | Other | 6.0 MB | a57be79b1695 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527631610067816448/head_left_camera_undistorted.mp4 | Other | 165.4 MB | 26ce604b6efd |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527631610067816448/head_right_camera_undistorted.mp4 | Other | 176.0 MB | fc9d80bbc7a3 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527631610067816448/video_stream_audio_aac_stereo.m4a | Other | 3.1 MB | 1874df141788 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527631610067816448/video_stream_audio_opus_4ch.ogg | Other | 6.2 MB | 83537389051c |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527631610067816448/video_stream_depth_frames.npz | Other | 32.4 MB | ca0ba825e310 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527631610067816448/video_stream_head_pose_6dof.npz | Other | 6.6 MB | d6cf1367bf3c |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527632660476727296/head_left_camera_undistorted.mp4 | Other | 257.5 MB | c8842bea01e4 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527632660476727296/head_right_camera_undistorted.mp4 | Other | 279.3 MB | 3867a661dcad |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527632660476727296/video_stream_audio_aac_stereo.m4a | Other | 3.1 MB | bdee5e769b33 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527632660476727296/video_stream_audio_opus_4ch.ogg | Other | 6.2 MB | 7a6afa4d646a |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527632660476727296/video_stream_depth_frames.npz | Other | 33.9 MB | 687caf1bca70 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527632660476727296/video_stream_head_pose_6dof.npz | Other | 6.7 MB | 0b2c0b42422d |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527633462498955264/head_left_camera_undistorted.mp4 | Other | 180.1 MB | c6fed621d698 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527633462498955264/head_right_camera_undistorted.mp4 | Other | 192.6 MB | 97c0148517f9 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527633462498955264/video_stream_audio_aac_stereo.m4a | Other | 3.0 MB | fe2999b80e66 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527633462498955264/video_stream_audio_opus_4ch.ogg | Other | 6.1 MB | 2e1d5cba9b0c |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527633462498955264/video_stream_depth_frames.npz | Other | 33.0 MB | cf451da70dd9 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527633462498955264/video_stream_head_pose_6dof.npz | Other | 6.5 MB | d227dd13b6e3 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527670740227198976/head_left_camera_undistorted.mp4 | Other | 204.9 MB | 76b14ed7a8bb |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527670740227198976/head_right_camera_undistorted.mp4 | Other | 218.6 MB | d41bff870732 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527670740227198976/video_stream_audio_aac_stereo.m4a | Other | 2.9 MB | a47952e7980f |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527670740227198976/video_stream_audio_opus_4ch.ogg | Other | 5.8 MB | 2b62a70ef64b |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527670740227198976/video_stream_depth_frames.npz | Other | 29.4 MB | cb40f3d9f1d4 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527670740227198976/video_stream_head_pose_6dof.npz | Other | 6.3 MB | 3ff801eafd06 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527673577757741056/head_left_camera_undistorted.mp4 | Other | 154.8 MB | c0c620715e74 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527673577757741056/head_right_camera_undistorted.mp4 | Other | 162.9 MB | dfdbd06a8e9e |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527673577757741056/video_stream_audio_aac_stereo.m4a | Other | 3.2 MB | 55b3c1e1eb05 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527673577757741056/video_stream_audio_opus_4ch.ogg | Other | 6.3 MB | 2a6ee33e5512 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527673577757741056/video_stream_depth_frames.npz | Other | 27.2 MB | c6e27e34f4bf |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527673577757741056/video_stream_head_pose_6dof.npz | Other | 6.7 MB | 9c96582b5413 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527674347706126336/head_left_camera_undistorted.mp4 | Other | 157.5 MB | b9f6e6379ef2 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527674347706126336/head_right_camera_undistorted.mp4 | Other | 165.8 MB | 121c2ff90658 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527674347706126336/video_stream_audio_aac_stereo.m4a | Other | 3.0 MB | 7b5e1ec7a6f7 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527674347706126336/video_stream_audio_opus_4ch.ogg | Other | 5.9 MB | 1a4a2f30eb9b |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527674347706126336/video_stream_depth_frames.npz | Other | 26.8 MB | 2508a718926f |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527674347706126336/video_stream_head_pose_6dof.npz | Other | 6.3 MB | 7dea35366e88 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527675262102147072/head_left_camera_undistorted.mp4 | Other | 204.5 MB | 8524d3a44d5d |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527675262102147072/head_right_camera_undistorted.mp4 | Other | 217.7 MB | 76639b2c30dd |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527675262102147072/video_stream_audio_aac_stereo.m4a | Other | 3.1 MB | 58255246480a |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527675262102147072/video_stream_audio_opus_4ch.ogg | Other | 6.2 MB | b75b925b3cd4 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527675262102147072/video_stream_depth_frames.npz | Other | 27.3 MB | 456912325c73 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527675262102147072/video_stream_head_pose_6dof.npz | Other | 6.6 MB | fd913c0e6175 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527705731346731008/head_left_camera_undistorted.mp4 | Other | 223.2 MB | 9345bf840807 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527705731346731008/head_right_camera_undistorted.mp4 | Other | 233.5 MB | 29eab0e470c8 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527705731346731008/video_stream_audio_aac_stereo.m4a | Other | 4.2 MB | dffb67c270dc |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527705731346731008/video_stream_audio_opus_4ch.ogg | Other | 8.4 MB | 9c20a25a93d1 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527705731346731008/video_stream_depth_frames.npz | Other | 42.3 MB | 2c6783330733 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527705731346731008/video_stream_head_pose_6dof.npz | Other | 8.7 MB | 9f024b68e8db |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527711553581748224/head_left_camera_undistorted.mp4 | Other | 194.0 MB | 3414010f429d |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527711553581748224/head_right_camera_undistorted.mp4 | Other | 206.0 MB | 35007de3911a |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527711553581748224/video_stream_audio_aac_stereo.m4a | Other | 2.9 MB | 751b941de79b |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527711553581748224/video_stream_audio_opus_4ch.ogg | Other | 5.8 MB | 31c9139be1f8 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527711553581748224/video_stream_depth_frames.npz | Other | 28.8 MB | dfae7ce350af |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527711553581748224/video_stream_head_pose_6dof.npz | Other | 6.2 MB | 2ffc247f5978 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527712254886154240/head_left_camera_undistorted.mp4 | Other | 203.7 MB | 914a4e6c44a0 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527712254886154240/head_right_camera_undistorted.mp4 | Other | 215.4 MB | fc6d232ff5d6 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527712254886154240/video_stream_audio_aac_stereo.m4a | Other | 2.8 MB | 91557a6eace6 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527712254886154240/video_stream_audio_opus_4ch.ogg | Other | 5.5 MB | 204bfb64bea2 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527712254886154240/video_stream_depth_frames.npz | Other | 28.0 MB | 16966209d748 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527712254886154240/video_stream_head_pose_6dof.npz | Other | 5.8 MB | 469d8d47f9dc |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527712994937540608/head_left_camera_undistorted.mp4 | Other | 220.4 MB | 5ab52aafd2f3 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527712994937540608/head_right_camera_undistorted.mp4 | Other | 231.8 MB | 9dd398e09c3c |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527712994937540608/video_stream_audio_aac_stereo.m4a | Other | 3.1 MB | 238a99a1bade |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527712994937540608/video_stream_audio_opus_4ch.ogg | Other | 6.2 MB | 8d7994e31377 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527712994937540608/video_stream_depth_frames.npz | Other | 31.7 MB | 3c179cb20ad0 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527712994937540608/video_stream_head_pose_6dof.npz | Other | 6.5 MB | 448d9d6fc05f |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527714467821916160/head_left_camera_undistorted.mp4 | Other | 247.3 MB | e548f849fa94 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527714467821916160/head_right_camera_undistorted.mp4 | Other | 259.3 MB | f3cb5b23908f |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527714467821916160/video_stream_audio_aac_stereo.m4a | Other | 3.3 MB | 4834439bca3c |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527714467821916160/video_stream_audio_opus_4ch.ogg | Other | 6.6 MB | a333a4683f58 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527714467821916160/video_stream_depth_frames.npz | Other | 32.9 MB | 038a7283ac7d |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527714467821916160/video_stream_head_pose_6dof.npz | Other | 6.9 MB | a445c7c27c2d |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527715683910029312/head_left_camera_undistorted.mp4 | Other | 169.5 MB | 3bd3401beea1 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527715683910029312/head_right_camera_undistorted.mp4 | Other | 176.6 MB | 62dbcc4e30fa |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527715683910029312/video_stream_audio_aac_stereo.m4a | Other | 2.8 MB | cd372f1d6baf |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527715683910029312/video_stream_audio_opus_4ch.ogg | Other | 5.7 MB | c72e5f0ae9c1 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527715683910029312/video_stream_depth_frames.npz | Other | 28.5 MB | 1221e5e2ae31 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527715683910029312/video_stream_head_pose_6dof.npz | Other | 6.0 MB | 90abca2dac09 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527716885557153792/head_left_camera_undistorted.mp4 | Other | 219.1 MB | c3534e712232 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527716885557153792/head_right_camera_undistorted.mp4 | Other | 231.1 MB | c9b32c68886a |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527716885557153792/video_stream_audio_aac_stereo.m4a | Other | 3.1 MB | ef7b122e1b24 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527716885557153792/video_stream_audio_opus_4ch.ogg | Other | 6.2 MB | e7ba16b8d4bb |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527716885557153792/video_stream_depth_frames.npz | Other | 31.2 MB | 74489362c465 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527716885557153792/video_stream_head_pose_6dof.npz | Other | 6.5 MB | cbeacc6db6f5 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527718336555651072/head_left_camera_undistorted.mp4 | Other | 215.5 MB | e15663d0c9f7 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527718336555651072/head_right_camera_undistorted.mp4 | Other | 226.0 MB | 74e81146f11a |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527718336555651072/video_stream_audio_aac_stereo.m4a | Other | 3.2 MB | e7fd9d5fe235 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527718336555651072/video_stream_audio_opus_4ch.ogg | Other | 6.3 MB | 9ce29e984416 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527718336555651072/video_stream_depth_frames.npz | Other | 32.2 MB | 8c9b7fa05f60 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527718336555651072/video_stream_head_pose_6dof.npz | Other | 6.6 MB | 6577a3697a3f |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527719238934990848/head_left_camera_undistorted.mp4 | Other | 167.2 MB | f7641dd29bdb |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527719238934990848/head_right_camera_undistorted.mp4 | Other | 170.9 MB | 8ba4c7832a86 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527719238934990848/video_stream_audio_aac_stereo.m4a | Other | 3.3 MB | 87141ba0383c |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527719238934990848/video_stream_audio_opus_4ch.ogg | Other | 6.6 MB | 955dd2249dc6 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527719238934990848/video_stream_depth_frames.npz | Other | 32.9 MB | e9564db9aabf |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527719238934990848/video_stream_head_pose_6dof.npz | Other | 6.8 MB | 54627c9f4126 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527720080366899200/head_left_camera_undistorted.mp4 | Other | 155.3 MB | aed22d51e294 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527720080366899200/head_right_camera_undistorted.mp4 | Other | 159.9 MB | 0e829e2ab768 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527720080366899200/video_stream_audio_aac_stereo.m4a | Other | 2.7 MB | 59fa349ac0cc |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527720080366899200/video_stream_audio_opus_4ch.ogg | Other | 5.3 MB | caea194535f1 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527720080366899200/video_stream_depth_frames.npz | Other | 26.9 MB | 45994d70dba5 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527720080366899200/video_stream_head_pose_6dof.npz | Other | 5.6 MB | de3a31182143 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527721037448351744/head_left_camera_undistorted.mp4 | Other | 189.9 MB | 4b7d0b0d707f |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527721037448351744/head_right_camera_undistorted.mp4 | Other | 195.5 MB | f06bebbf8774 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527721037448351744/video_stream_audio_aac_stereo.m4a | Other | 3.4 MB | 31f12662ac96 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527721037448351744/video_stream_audio_opus_4ch.ogg | Other | 6.8 MB | d9cdf3eb56d3 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527721037448351744/video_stream_depth_frames.npz | Other | 34.8 MB | d079158b76db |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527721037448351744/video_stream_head_pose_6dof.npz | Other | 7.1 MB | 77c781ed0315 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527721781257834496/head_left_camera_undistorted.mp4 | Other | 164.1 MB | f75cded5eef1 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527721781257834496/head_right_camera_undistorted.mp4 | Other | 168.8 MB | f04ec58a28d6 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527721781257834496/video_stream_audio_aac_stereo.m4a | Other | 2.7 MB | 557b05f2b810 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527721781257834496/video_stream_audio_opus_4ch.ogg | Other | 5.4 MB | a97fdcc03e1d |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527721781257834496/video_stream_depth_frames.npz | Other | 27.5 MB | f1d15d9d8d87 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527721781257834496/video_stream_head_pose_6dof.npz | Other | 5.8 MB | 85285a76cfa5 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527722367571202048/head_left_camera_undistorted.mp4 | Other | 238.6 MB | 077ae271da95 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527722367571202048/head_right_camera_undistorted.mp4 | Other | 249.9 MB | 28ebca124cdf |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527722367571202048/video_stream_audio_aac_stereo.m4a | Other | 3.3 MB | 98bd04448b6b |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527722367571202048/video_stream_audio_opus_4ch.ogg | Other | 6.6 MB | 74d56e744dfe |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527722367571202048/video_stream_depth_frames.npz | Other | 33.6 MB | d3463d921c8d |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527722367571202048/video_stream_head_pose_6dof.npz | Other | 7.0 MB | bcca5a6cd940 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527725126202691584/head_left_camera_undistorted.mp4 | Other | 178.4 MB | d505f4045c32 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527725126202691584/head_right_camera_undistorted.mp4 | Other | 185.1 MB | be438faaf16c |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527725126202691584/video_stream_audio_aac_stereo.m4a | Other | 3.1 MB | 06d0d2e45663 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527725126202691584/video_stream_audio_opus_4ch.ogg | Other | 6.1 MB | 16d1d7d57a43 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527725126202691584/video_stream_depth_frames.npz | Other | 30.8 MB | ed87c14c37a1 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527725126202691584/video_stream_head_pose_6dof.npz | Other | 6.6 MB | 2eb5a8829bd3 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527726082810187776/head_left_camera_undistorted.mp4 | Other | 239.8 MB | 1eb288b69d7d |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527726082810187776/head_right_camera_undistorted.mp4 | Other | 250.1 MB | 17bceafcaca8 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527726082810187776/video_stream_audio_aac_stereo.m4a | Other | 3.2 MB | 1d6de6e0583d |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527726082810187776/video_stream_audio_opus_4ch.ogg | Other | 6.5 MB | f506b14bb5e9 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527726082810187776/video_stream_depth_frames.npz | Other | 32.1 MB | d6a690550c4c |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527726082810187776/video_stream_head_pose_6dof.npz | Other | 7.0 MB | 5275857aef3f |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527726771590402048/head_left_camera_undistorted.mp4 | Other | 229.5 MB | 8416b3638a5a |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527726771590402048/head_right_camera_undistorted.mp4 | Other | 240.3 MB | 9d5c128b0ea2 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527726771590402048/video_stream_audio_aac_stereo.m4a | Other | 3.1 MB | 65f1a91f4f16 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527726771590402048/video_stream_audio_opus_4ch.ogg | Other | 6.2 MB | 599d56e5e03f |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527726771590402048/video_stream_depth_frames.npz | Other | 29.8 MB | 28d0b0964baa |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527726771590402048/video_stream_head_pose_6dof.npz | Other | 6.7 MB | 236f2cb3b74d |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527729650032185344/head_left_camera_undistorted.mp4 | Other | 170.5 MB | 70df9a00e2b0 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527729650032185344/head_right_camera_undistorted.mp4 | Other | 175.8 MB | 1b82625c068c |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527729650032185344/video_stream_audio_aac_stereo.m4a | Other | 3.0 MB | e2a70f867b89 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527729650032185344/video_stream_audio_opus_4ch.ogg | Other | 6.0 MB | 254e0c08cf81 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527729650032185344/video_stream_depth_frames.npz | Other | 29.6 MB | 92fe5941b0e8 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527729650032185344/video_stream_head_pose_6dof.npz | Other | 6.4 MB | a9947c84a306 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527730470576459776/head_left_camera_undistorted.mp4 | Other | 144.3 MB | a4531236c5c3 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527730470576459776/head_right_camera_undistorted.mp4 | Other | 150.4 MB | b8f50f2245cc |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527730470576459776/video_stream_audio_aac_stereo.m4a | Other | 2.0 MB | 40d09df4e2b8 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527730470576459776/video_stream_audio_opus_4ch.ogg | Other | 4.0 MB | ce2292f37554 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527730470576459776/video_stream_depth_frames.npz | Other | 20.2 MB | f714b6b11e46 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527730470576459776/video_stream_head_pose_6dof.npz | Other | 4.4 MB | 899b1e244870 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527731010714734592/head_left_camera_undistorted.mp4 | Other | 215.7 MB | 2d0dca7aecde |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527731010714734592/head_right_camera_undistorted.mp4 | Other | 227.1 MB | 57e56dab3ba9 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527731010714734592/video_stream_audio_aac_stereo.m4a | Other | 3.1 MB | a7edfe014f91 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527731010714734592/video_stream_audio_opus_4ch.ogg | Other | 6.3 MB | 168a5451af96 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527731010714734592/video_stream_depth_frames.npz | Other | 31.5 MB | 3561dd310750 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527731010714734592/video_stream_head_pose_6dof.npz | Other | 6.8 MB | fe616a8cffc7 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527731655635111936/head_left_camera_undistorted.mp4 | Other | 160.5 MB | a1ed59fc417c |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527731655635111936/head_right_camera_undistorted.mp4 | Other | 164.8 MB | 9583591e0d19 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527731655635111936/video_stream_audio_aac_stereo.m4a | Other | 2.7 MB | 6abc126a3919 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527731655635111936/video_stream_audio_opus_4ch.ogg | Other | 5.4 MB | 1a676b9394b7 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527731655635111936/video_stream_depth_frames.npz | Other | 27.3 MB | acb19ce1b25c |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-categories-of-meatballs/case_1527731655635111936/video_stream_head_pose_6dof.npz | Other | 5.9 MB | b461c07f6c1d |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517169818778734592/head_left_camera_undistorted.mp4 | Other | 110.7 MB | 68aa3785a65e |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517169818778734592/head_right_camera_undistorted.mp4 | Other | 116.6 MB | df7a962f044f |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517170150116167680/head_left_camera_undistorted.mp4 | Other | 178.0 MB | c14d3057854b |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517170150116167680/head_right_camera_undistorted.mp4 | Other | 190.0 MB | 8844563812e9 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517170912552554496/head_left_camera_undistorted.mp4 | Other | 210.1 MB | 84e61d665f11 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517170912552554496/head_right_camera_undistorted.mp4 | Other | 222.7 MB | 51b2e784bca6 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517172036370173952/head_left_camera_undistorted.mp4 | Other | 255.4 MB | 804512141a03 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517172036370173952/head_right_camera_undistorted.mp4 | Other | 244.6 MB | 4965c88e742f |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517172789667172352/head_left_camera_undistorted.mp4 | Other | 195.6 MB | e4664793094f |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517172789667172352/head_right_camera_undistorted.mp4 | Other | 187.2 MB | f8badabdbde8 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517173497690853376/head_left_camera_undistorted.mp4 | Other | 187.3 MB | 4d29b9e11d15 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517173497690853376/head_right_camera_undistorted.mp4 | Other | 179.9 MB | dbccb39cfea2 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517174378415001600/head_left_camera_undistorted.mp4 | Other | 137.3 MB | 7cd2ff36a38f |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517174378415001600/head_right_camera_undistorted.mp4 | Other | 132.6 MB | 3b849660adca |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517174919572492288/head_left_camera_undistorted.mp4 | Other | 134.3 MB | dbc5c56d06e0 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517174919572492288/head_right_camera_undistorted.mp4 | Other | 129.9 MB | 9231635dbc6e |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517175385731633152/head_left_camera_undistorted.mp4 | Other | 140.7 MB | bcab15a7290b |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517175385731633152/head_right_camera_undistorted.mp4 | Other | 135.6 MB | 678ca400f0d3 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517175892009291776/head_left_camera_undistorted.mp4 | Other | 132.2 MB | 60d32805f951 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517175892009291776/head_right_camera_undistorted.mp4 | Other | 126.9 MB | 3942d2910a83 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517176516272721920/head_left_camera_undistorted.mp4 | Other | 126.6 MB | fb33b3138bed |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517176516272721920/head_right_camera_undistorted.mp4 | Other | 121.8 MB | 5d6fb38f72c0 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517176971526672384/head_left_camera_undistorted.mp4 | Other | 129.2 MB | bc179f6752cd |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517176971526672384/head_right_camera_undistorted.mp4 | Other | 123.6 MB | a8ee27b6ba9d |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517177435462832128/head_left_camera_undistorted.mp4 | Other | 140.6 MB | 891daa313c6b |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517177435462832128/head_right_camera_undistorted.mp4 | Other | 134.4 MB | a93eb41e83cd |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517177973608812544/head_left_camera_undistorted.mp4 | Other | 130.4 MB | 2d92232dc785 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517177973608812544/head_right_camera_undistorted.mp4 | Other | 125.0 MB | 9ed287ae584b |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517178930484744192/head_left_camera_undistorted.mp4 | Other | 139.7 MB | a268850684f5 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517178930484744192/head_right_camera_undistorted.mp4 | Other | 133.9 MB | bdd9defce744 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517179384702701568/head_left_camera_undistorted.mp4 | Other | 132.6 MB | e90c3c1bd1e2 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517179384702701568/head_right_camera_undistorted.mp4 | Other | 126.1 MB | 8c3f50ba41c8 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517179828590088192/head_left_camera_undistorted.mp4 | Other | 132.2 MB | 92126aaccaf7 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517179828590088192/head_right_camera_undistorted.mp4 | Other | 126.9 MB | 354d83704cfe |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517180557786615808/head_left_camera_undistorted.mp4 | Other | 140.9 MB | 84dc8af0eeb4 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517180557786615808/head_right_camera_undistorted.mp4 | Other | 134.8 MB | 510b289c139d |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517181091817984000/head_left_camera_undistorted.mp4 | Other | 134.8 MB | 8d3c0b6a7e8c |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517181091817984000/head_right_camera_undistorted.mp4 | Other | 129.7 MB | dbb6fea1c978 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517181592244588544/head_left_camera_undistorted.mp4 | Other | 127.0 MB | 538f44422597 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517181592244588544/head_right_camera_undistorted.mp4 | Other | 121.6 MB | 27c2334287ae |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517182070646902784/head_left_camera_undistorted.mp4 | Other | 116.7 MB | bd7f43c5029e |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517182070646902784/head_right_camera_undistorted.mp4 | Other | 111.0 MB | 5aa77b4d637c |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517182525414313984/head_left_camera_undistorted.mp4 | Other | 129.0 MB | 0a829dbee70b |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517182525414313984/head_right_camera_undistorted.mp4 | Other | 123.4 MB | 6bfd5a84fe00 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517182983436505088/head_left_camera_undistorted.mp4 | Other | 130.4 MB | c8a7ef4e1707 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517182983436505088/head_right_camera_undistorted.mp4 | Other | 125.4 MB | a583cc72129e |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517183521137889280/head_left_camera_undistorted.mp4 | Other | 128.1 MB | a7f612e8580a |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517183521137889280/head_right_camera_undistorted.mp4 | Other | 123.2 MB | e8349c1c6fd4 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517184333926895616/head_left_camera_undistorted.mp4 | Other | 135.8 MB | 982b9088a19a |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517184333926895616/head_right_camera_undistorted.mp4 | Other | 129.5 MB | 13520bd1df06 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517184917337804800/head_left_camera_undistorted.mp4 | Other | 125.6 MB | f90cb4fa63c8 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517184917337804800/head_right_camera_undistorted.mp4 | Other | 120.8 MB | dc662afbd428 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517185375557128192/head_left_camera_undistorted.mp4 | Other | 137.2 MB | bd9ee0099cc7 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517185375557128192/head_right_camera_undistorted.mp4 | Other | 130.6 MB | 652efee44720 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517188051091066880/head_left_camera_undistorted.mp4 | Other | 128.1 MB | 83c32789b0ec |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517188051091066880/head_right_camera_undistorted.mp4 | Other | 128.8 MB | 4f8bf953b36e |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517188748058562560/head_left_camera_undistorted.mp4 | Other | 124.2 MB | e4f2ddfd5a6f |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517188748058562560/head_right_camera_undistorted.mp4 | Other | 124.8 MB | 54f089de4ba5 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517189151500275712/head_left_camera_undistorted.mp4 | Other | 127.7 MB | 45c3579d0801 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517189151500275712/head_right_camera_undistorted.mp4 | Other | 129.3 MB | ec4f0dac8078 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517189556175114240/head_left_camera_undistorted.mp4 | Other | 117.9 MB | 8d05d0fb1f82 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517189556175114240/head_right_camera_undistorted.mp4 | Other | 120.0 MB | 49483c2daf68 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517189999408189440/head_left_camera_undistorted.mp4 | Other | 116.6 MB | 88687b15cf62 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517189999408189440/head_right_camera_undistorted.mp4 | Other | 118.7 MB | 845f9924fe27 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517190377369505792/head_left_camera_undistorted.mp4 | Other | 119.6 MB | 853659e407b3 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517190377369505792/head_right_camera_undistorted.mp4 | Other | 121.4 MB | 9a71ca8c3ba5 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517197178005622784/head_left_camera_undistorted.mp4 | Other | 159.9 MB | 938d1364a54e |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517197178005622784/head_right_camera_undistorted.mp4 | Other | 151.1 MB | 2963193a2995 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517197715887362048/head_left_camera_undistorted.mp4 | Other | 146.8 MB | 2a84edc312f3 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517197715887362048/head_right_camera_undistorted.mp4 | Other | 138.9 MB | 6005dafa9e82 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517198152195641344/head_left_camera_undistorted.mp4 | Other | 139.2 MB | 3d413d2759c7 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1517198152195641344/head_right_camera_undistorted.mp4 | Other | 133.4 MB | 7db3a2b43adf |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527618713279270912/head_left_camera_undistorted.mp4 | Other | 157.7 MB | e11faaccaa33 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527618713279270912/head_right_camera_undistorted.mp4 | Other | 157.1 MB | fc005762005a |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527618713279270912/video_stream_audio_aac_stereo.m4a | Other | 1.9 MB | 14fa1b2da08b |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527618713279270912/video_stream_audio_opus_4ch.ogg | Other | 3.8 MB | c15330bc6cc0 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527618713279270912/video_stream_depth_frames.npz | Other | 15.3 MB | 34f084bf87b9 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527671094511669248/head_left_camera_undistorted.mp4 | Other | 108.8 MB | f88d49307547 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527671094511669248/head_right_camera_undistorted.mp4 | Other | 109.1 MB | e31415fb35a9 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527671094511669248/video_stream_audio_aac_stereo.m4a | Other | 1.9 MB | a094af034ede |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527671094511669248/video_stream_audio_opus_4ch.ogg | Other | 3.7 MB | cc9b3a78b7c8 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527671094511669248/video_stream_depth_frames.npz | Other | 18.2 MB | 46301f84e126 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527671094511669248/video_stream_head_pose_6dof.npz | Other | 3.8 MB | 6c3945ac4699 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527672106941157376/head_left_camera_undistorted.mp4 | Other | 165.9 MB | 42805ad714dd |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527672106941157376/head_right_camera_undistorted.mp4 | Other | 163.7 MB | 388313d76771 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527672106941157376/video_stream_audio_aac_stereo.m4a | Other | 1.9 MB | 87c255daac41 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527672106941157376/video_stream_audio_opus_4ch.ogg | Other | 3.8 MB | bd0321f707dd |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527672106941157376/video_stream_depth_frames.npz | Other | 17.0 MB | 193958e00103 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527672106941157376/video_stream_head_pose_6dof.npz | Other | 3.8 MB | 541687e884ce |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527673174219558912/head_left_camera_undistorted.mp4 | Other | 164.5 MB | c9bc98e8cbe9 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527673174219558912/head_right_camera_undistorted.mp4 | Other | 163.8 MB | 4363482308fb |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527673174219558912/video_stream_audio_aac_stereo.m4a | Other | 1.8 MB | b9ee9bbb1efc |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527673174219558912/video_stream_audio_opus_4ch.ogg | Other | 3.7 MB | f275693a3980 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527673174219558912/video_stream_depth_frames.npz | Other | 17.8 MB | eacb0512d2d6 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527673174219558912/video_stream_head_pose_6dof.npz | Other | 3.7 MB | 3b1f1f03ac76 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527673603389132800/head_left_camera_undistorted.mp4 | Other | 128.6 MB | 9a757c0a39a3 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527673603389132800/head_right_camera_undistorted.mp4 | Other | 128.5 MB | d7c47f703d2e |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527673603389132800/video_stream_audio_aac_stereo.m4a | Other | 2.0 MB | b997ced8161f |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527673603389132800/video_stream_audio_opus_4ch.ogg | Other | 4.0 MB | bf9230e99a64 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527673603389132800/video_stream_depth_frames.npz | Other | 19.7 MB | c5c90c080052 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527673603389132800/video_stream_head_pose_6dof.npz | Other | 4.1 MB | 6769369598cb |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527673987021148160/head_left_camera_undistorted.mp4 | Other | 140.6 MB | 6b9ee136738b |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527673987021148160/head_right_camera_undistorted.mp4 | Other | 140.0 MB | b5e8e8b8981f |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527673987021148160/video_stream_audio_aac_stereo.m4a | Other | 2.2 MB | f4a225005c53 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527673987021148160/video_stream_audio_opus_4ch.ogg | Other | 4.4 MB | f2a8c447fd87 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527673987021148160/video_stream_depth_frames.npz | Other | 21.6 MB | b11eb447597c |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527674882991591424/head_left_camera_undistorted.mp4 | Other | 120.0 MB | 2079600e388a |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527674882991591424/head_right_camera_undistorted.mp4 | Other | 120.0 MB | 281c0fd1f1da |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527674882991591424/video_stream_audio_aac_stereo.m4a | Other | 2.2 MB | 665334cbfdf4 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527674882991591424/video_stream_audio_opus_4ch.ogg | Other | 4.3 MB | 2080e9912e6c |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527674882991591424/video_stream_depth_frames.npz | Other | 21.5 MB | 7727732a98b5 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527678353291612160/head_left_camera_undistorted.mp4 | Other | 178.1 MB | a7bc13ba0277 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527678353291612160/head_right_camera_undistorted.mp4 | Other | 178.4 MB | f5218ef4a46c |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527678353291612160/video_stream_audio_aac_stereo.m4a | Other | 2.2 MB | dd059ca44c13 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527678353291612160/video_stream_audio_opus_4ch.ogg | Other | 4.3 MB | 95258ebae0a8 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527678353291612160/video_stream_depth_frames.npz | Other | 21.3 MB | 6d170ff76fce |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527678353291612160/video_stream_head_pose_6dof.npz | Other | 4.4 MB | 904467b6d2b8 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527678767118422016/head_left_camera_undistorted.mp4 | Other | 164.2 MB | 928733c0ae6a |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527678767118422016/head_right_camera_undistorted.mp4 | Other | 164.2 MB | 219f74969370 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527678767118422016/video_stream_audio_aac_stereo.m4a | Other | 2.0 MB | 8234af0452e2 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527678767118422016/video_stream_audio_opus_4ch.ogg | Other | 4.0 MB | 40daed0b6f0b |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527678767118422016/video_stream_depth_frames.npz | Other | 19.6 MB | 09e0965f802e |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527678767118422016/video_stream_head_pose_6dof.npz | Other | 4.0 MB | b9db03c56c68 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527681220538798080/head_left_camera_undistorted.mp4 | Other | 118.0 MB | ed44ba373f13 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527681220538798080/head_right_camera_undistorted.mp4 | Other | 118.6 MB | f14421c33f68 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527681220538798080/video_stream_audio_aac_stereo.m4a | Other | 2.1 MB | 1bb76715108b |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527681220538798080/video_stream_audio_opus_4ch.ogg | Other | 4.2 MB | c52b3468a123 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527681220538798080/video_stream_depth_frames.npz | Other | 21.2 MB | 3c75dffb0a63 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527682069973438464/head_left_camera_undistorted.mp4 | Other | 164.2 MB | d99f0a7927b7 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527682069973438464/head_right_camera_undistorted.mp4 | Other | 163.9 MB | 173db16937d9 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527682069973438464/video_stream_audio_aac_stereo.m4a | Other | 1.9 MB | 0779a26a5e42 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527682069973438464/video_stream_audio_opus_4ch.ogg | Other | 3.9 MB | 3f1422c0988a |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527682069973438464/video_stream_depth_frames.npz | Other | 19.3 MB | 1c61b6b7a871 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527682069973438464/video_stream_head_pose_6dof.npz | Other | 3.9 MB | 5e4629cddcbd |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527698003404525568/head_left_camera_undistorted.mp4 | Other | 165.8 MB | ca46d177004e |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527698003404525568/head_right_camera_undistorted.mp4 | Other | 167.3 MB | f0943d6ab7e2 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527698003404525568/video_stream_audio_aac_stereo.m4a | Other | 1.9 MB | e02a8ccdb95c |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527698003404525568/video_stream_audio_opus_4ch.ogg | Other | 3.8 MB | 8b8873adaaa1 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527698003404525568/video_stream_depth_frames.npz | Other | 19.3 MB | 972644b46d80 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527698003404525568/video_stream_head_pose_6dof.npz | Other | 3.8 MB | 32c7505418de |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527711526868226048/head_left_camera_undistorted.mp4 | Other | 126.7 MB | 86f8ce850273 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527711526868226048/head_right_camera_undistorted.mp4 | Other | 127.0 MB | 4c7351a83981 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527711526868226048/video_stream_audio_aac_stereo.m4a | Other | 1.9 MB | b25c9988ae4c |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527711526868226048/video_stream_audio_opus_4ch.ogg | Other | 3.8 MB | 730888a4e46e |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527711526868226048/video_stream_depth_frames.npz | Other | 18.7 MB | 14ac440e226c |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527711526868226048/video_stream_head_pose_6dof.npz | Other | 3.9 MB | a30664175ad8 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527712659133173760/head_left_camera_undistorted.mp4 | Other | 126.6 MB | e6934c233729 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527712659133173760/head_right_camera_undistorted.mp4 | Other | 125.9 MB | 85128e5bb953 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527712659133173760/video_stream_audio_aac_stereo.m4a | Other | 1.9 MB | caed9f82bfd2 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527712659133173760/video_stream_audio_opus_4ch.ogg | Other | 3.8 MB | d1c7a9cb5f1b |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527712659133173760/video_stream_depth_frames.npz | Other | 18.9 MB | 3944c40b833d |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527712659133173760/video_stream_head_pose_6dof.npz | Other | 3.8 MB | 31c9c4a49b70 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527713532613758976/head_left_camera_undistorted.mp4 | Other | 159.7 MB | 6f2ac4f1531b |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527713532613758976/head_right_camera_undistorted.mp4 | Other | 159.6 MB | b3ed871f8dcf |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527713532613758976/video_stream_audio_aac_stereo.m4a | Other | 1.8 MB | 0f78f6039dd2 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527713532613758976/video_stream_audio_opus_4ch.ogg | Other | 3.6 MB | 3c87c63443c5 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527713532613758976/video_stream_depth_frames.npz | Other | 17.9 MB | 79db3cda0b21 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527713532613758976/video_stream_head_pose_6dof.npz | Other | 3.7 MB | 258d019749cb |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527713930179252224/head_left_camera_undistorted.mp4 | Other | 170.5 MB | d8ad25d5ccee |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527713930179252224/head_right_camera_undistorted.mp4 | Other | 169.7 MB | d92efc3a2532 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527713930179252224/video_stream_audio_aac_stereo.m4a | Other | 1.9 MB | 6188c922e8bf |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527713930179252224/video_stream_audio_opus_4ch.ogg | Other | 3.9 MB | dc5d42290255 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527713930179252224/video_stream_depth_frames.npz | Other | 19.2 MB | 02c21f321547 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527713930179252224/video_stream_head_pose_6dof.npz | Other | 3.9 MB | 2df25b108785 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527714346673639424/head_left_camera_undistorted.mp4 | Other | 111.8 MB | 792ec85fc221 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527714346673639424/head_right_camera_undistorted.mp4 | Other | 111.1 MB | 3e085703d85c |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527714346673639424/video_stream_audio_aac_stereo.m4a | Other | 1.9 MB | 569a7b5d4b68 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527714346673639424/video_stream_audio_opus_4ch.ogg | Other | 3.8 MB | 17b4f3c0ebf7 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527714346673639424/video_stream_depth_frames.npz | Other | 19.1 MB | b5cecce887fd |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527714346673639424/video_stream_head_pose_6dof.npz | Other | 3.9 MB | ef1c560626b5 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527715789224808448/head_left_camera_undistorted.mp4 | Other | 136.0 MB | 831c93db68db |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527715789224808448/head_right_camera_undistorted.mp4 | Other | 135.6 MB | 32460a99ceb7 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527715789224808448/video_stream_audio_aac_stereo.m4a | Other | 1.9 MB | 5c4e511b807c |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527715789224808448/video_stream_audio_opus_4ch.ogg | Other | 3.7 MB | 74f843acb8b0 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527715789224808448/video_stream_depth_frames.npz | Other | 16.2 MB | e914f328b26b |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527715789224808448/video_stream_head_pose_6dof.npz | Other | 3.8 MB | 8b4d97caee2d |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527733043899404288/head_left_camera_undistorted.mp4 | Other | 132.1 MB | 3af619055b80 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527733043899404288/head_right_camera_undistorted.mp4 | Other | 131.7 MB | 4991125f3e47 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527733043899404288/video_stream_audio_aac_stereo.m4a | Other | 1.9 MB | 20d9eae2796d |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527733043899404288/video_stream_audio_opus_4ch.ogg | Other | 3.7 MB | 02ebe310b04b |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527733043899404288/video_stream_depth_frames.npz | Other | 17.1 MB | b9ddb71e59d3 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527733043899404288/video_stream_head_pose_6dof.npz | Other | 3.8 MB | d15acb7972d8 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527733403678412800/head_left_camera_undistorted.mp4 | Other | 195.1 MB | 0d02d6ba8e39 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527733403678412800/head_right_camera_undistorted.mp4 | Other | 194.0 MB | 857f74abd0f8 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527733403678412800/video_stream_audio_aac_stereo.m4a | Other | 1.9 MB | f7d89b73bc9c |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527733403678412800/video_stream_audio_opus_4ch.ogg | Other | 3.7 MB | 32d0e3ca477a |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527733403678412800/video_stream_depth_frames.npz | Other | 17.2 MB | 4bcf1a2dee6b |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527733403678412800/video_stream_head_pose_6dof.npz | Other | 3.7 MB | 78f874344d6f |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527734176650891264/head_left_camera_undistorted.mp4 | Other | 120.7 MB | 8c3d8d7a544b |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527734176650891264/head_right_camera_undistorted.mp4 | Other | 120.1 MB | 3286bc7a1786 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527734176650891264/video_stream_audio_aac_stereo.m4a | Other | 1.9 MB | ec9d3ed85628 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527734176650891264/video_stream_audio_opus_4ch.ogg | Other | 3.8 MB | 9ff953b9f7ff |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527734176650891264/video_stream_depth_frames.npz | Other | 17.4 MB | fb213012cafe |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527734176650891264/video_stream_head_pose_6dof.npz | Other | 3.9 MB | f899a4425fd5 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527734973618982912/head_left_camera_undistorted.mp4 | Other | 181.6 MB | 1b058ec25461 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527734973618982912/head_right_camera_undistorted.mp4 | Other | 181.4 MB | af75dbe2894b |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527734973618982912/video_stream_audio_aac_stereo.m4a | Other | 1.8 MB | edc30d3cfc0f |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527734973618982912/video_stream_audio_opus_4ch.ogg | Other | 3.6 MB | f7ace9def387 |
| hengxuan-commercial-bank-retail-area/correcting-shelf-snacks-mixing-different-types-of-pickled-mustard/case_1527734973618982912/video_stream_depth_frames.npz | Other | 16.2 MB | 39645b5e4880 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517169818606768128/head_left_camera_undistorted.mp4 | Other | 101.5 MB | 6f9048e9b9e0 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517169818606768128/head_right_camera_undistorted.mp4 | Other | 99.9 MB | bb82e1111195 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517170193808232448/head_left_camera_undistorted.mp4 | Other | 124.6 MB | 3fb977546862 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517170193808232448/head_right_camera_undistorted.mp4 | Other | 122.9 MB | 1f87a86d0bea |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517170541360844800/head_left_camera_undistorted.mp4 | Other | 83.4 MB | 540381dc9dd5 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517170541360844800/head_right_camera_undistorted.mp4 | Other | 82.2 MB | 1c4c988626a7 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517200347976699904/head_left_camera_undistorted.mp4 | Other | 128.2 MB | e89af0d868e1 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517200347976699904/head_right_camera_undistorted.mp4 | Other | 124.5 MB | 9d7d3aa693b3 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517200671919575040/head_left_camera_undistorted.mp4 | Other | 129.8 MB | c0bb66ca9011 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517200671919575040/head_right_camera_undistorted.mp4 | Other | 126.3 MB | 8442eab692a9 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517200938589229056/head_left_camera_undistorted.mp4 | Other | 97.0 MB | fa93456afcb7 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517200938589229056/head_right_camera_undistorted.mp4 | Other | 94.6 MB | 34187edb5f3c |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517201179849789440/head_left_camera_undistorted.mp4 | Other | 189.8 MB | 704a222881f8 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517201179849789440/head_right_camera_undistorted.mp4 | Other | 185.3 MB | 90592113f6e9 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517201622747320320/head_left_camera_undistorted.mp4 | Other | 111.4 MB | 7fe29cce1753 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517201622747320320/head_right_camera_undistorted.mp4 | Other | 108.6 MB | 16401fc023c1 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517203601087270912/head_left_camera_undistorted.mp4 | Other | 126.4 MB | 7d5765d3d43a |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517203601087270912/head_right_camera_undistorted.mp4 | Other | 124.5 MB | 9150a8dfa704 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517203954558046208/head_left_camera_undistorted.mp4 | Other | 106.4 MB | d053e62c31b4 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517203954558046208/head_right_camera_undistorted.mp4 | Other | 104.4 MB | f0f5d8fe0cf4 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517204213006864384/head_left_camera_undistorted.mp4 | Other | 118.3 MB | bd623b98cb7b |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517204213006864384/head_right_camera_undistorted.mp4 | Other | 115.9 MB | 5e849cd01d9c |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517204470335803392/head_left_camera_undistorted.mp4 | Other | 95.9 MB | 1b74a977f7cc |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517204470335803392/head_right_camera_undistorted.mp4 | Other | 94.1 MB | c58d255e1695 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517204749953273856/head_left_camera_undistorted.mp4 | Other | 94.0 MB | 082f7905d930 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517204749953273856/head_right_camera_undistorted.mp4 | Other | 92.2 MB | 2927c03b573e |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517205002324545536/head_left_camera_undistorted.mp4 | Other | 83.9 MB | 155df8422494 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517205002324545536/head_right_camera_undistorted.mp4 | Other | 82.4 MB | 01164ffeb63e |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517205246709862400/head_left_camera_undistorted.mp4 | Other | 100.1 MB | f755336b5147 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517205246709862400/head_right_camera_undistorted.mp4 | Other | 98.2 MB | d4a19bfa04ca |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517205500352008192/head_left_camera_undistorted.mp4 | Other | 98.9 MB | 5da4ee2021be |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517205500352008192/head_right_camera_undistorted.mp4 | Other | 97.7 MB | 7140ed6aa939 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517205780363743232/head_left_camera_undistorted.mp4 | Other | 89.6 MB | ed2f301ee3ee |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1517205780363743232/head_right_camera_undistorted.mp4 | Other | 88.1 MB | 0771b1579447 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1518927177184186368/head_left_camera_undistorted.mp4 | Other | 266.9 MB | 95d60b1629f6 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1518950061113872384/head_left_camera_undistorted.mp4 | Other | 404.0 MB | 55e648d4f6a5 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1518950061113872384/head_right_camera_undistorted.mp4 | Other | 413.0 MB | 4dce11a18358 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1518952076292395008/head_left_camera_undistorted.mp4 | Other | 622.2 MB | b4089fff1e2d |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-hanging-of-different-brands-of-melon-seeds/case_1518952076292395008/head_right_camera_undistorted.mp4 | Other | 628.8 MB | 026dc64f1f5c |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517132178486464512/head_left_camera_undistorted.mp4 | Other | 161.1 MB | 4a48b89ddaee |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517132178486464512/head_right_camera_undistorted.mp4 | Other | 162.5 MB | 233c64941839 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517132626442326016/head_left_camera_undistorted.mp4 | Other | 84.3 MB | de5b3fabe197 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517132626442326016/head_right_camera_undistorted.mp4 | Other | 85.4 MB | 287c34e8514e |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517132951718989824/head_left_camera_undistorted.mp4 | Other | 86.2 MB | 02f85f0c9a14 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517132951718989824/head_right_camera_undistorted.mp4 | Other | 87.0 MB | a3c630dc7a8e |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517133297849733120/head_left_camera_undistorted.mp4 | Other | 86.2 MB | 601fc14b4a28 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517133297849733120/head_right_camera_undistorted.mp4 | Other | 87.7 MB | 2f203f7893cb |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517135545803739136/head_left_camera_undistorted.mp4 | Other | 97.1 MB | 952c006f19a6 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517135545803739136/head_right_camera_undistorted.mp4 | Other | 97.8 MB | 4efb2cdcc1a1 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517135833411358720/head_left_camera_undistorted.mp4 | Other | 77.8 MB | d1662015389b |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517135833411358720/head_right_camera_undistorted.mp4 | Other | 78.1 MB | f83664a694d2 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517136646661738496/head_left_camera_undistorted.mp4 | Other | 34.9 MB | 514323a812f1 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517136646661738496/head_right_camera_undistorted.mp4 | Other | 34.8 MB | 3bc325983a55 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517136828254130176/head_left_camera_undistorted.mp4 | Other | 90.1 MB | cfb24d3f0835 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517136828254130176/head_right_camera_undistorted.mp4 | Other | 90.2 MB | 34db8edff02b |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517198664013975552/head_left_camera_undistorted.mp4 | Other | 111.4 MB | e6986059431c |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517198664013975552/head_right_camera_undistorted.mp4 | Other | 108.6 MB | a45331023a3f |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517198939625885696/head_left_camera_undistorted.mp4 | Other | 103.9 MB | f94bece55ade |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517198939625885696/head_right_camera_undistorted.mp4 | Other | 101.0 MB | de557f364fbb |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517199196648640512/head_left_camera_undistorted.mp4 | Other | 102.7 MB | a64114340b07 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517199196648640512/head_right_camera_undistorted.mp4 | Other | 99.8 MB | 64cc45273faa |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517199430468505600/head_left_camera_undistorted.mp4 | Other | 100.7 MB | 93f4b1749c7f |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517199430468505600/head_right_camera_undistorted.mp4 | Other | 98.1 MB | 9b6dad1f37f1 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517199656298221568/head_left_camera_undistorted.mp4 | Other | 91.7 MB | 010ce3d60ed2 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517199656298221568/head_right_camera_undistorted.mp4 | Other | 88.9 MB | c78953f28d57 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517199911379013632/head_left_camera_undistorted.mp4 | Other | 90.9 MB | 780c0e438d1e |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517199911379013632/head_right_camera_undistorted.mp4 | Other | 88.4 MB | 5efba7edf33e |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517200152392110080/head_left_camera_undistorted.mp4 | Other | 37.7 MB | 91100c88f691 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517200152392110080/head_right_camera_undistorted.mp4 | Other | 37.0 MB | 370554792679 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517207613786296320/head_left_camera_undistorted.mp4 | Other | 176.8 MB | 3ae5547db120 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517207613786296320/head_right_camera_undistorted.mp4 | Other | 171.3 MB | 058e022cfce5 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517208216491003904/head_left_camera_undistorted.mp4 | Other | 147.3 MB | 423e5fcb6970 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517208216491003904/head_right_camera_undistorted.mp4 | Other | 142.2 MB | 977836093d4c |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517208608071225344/head_left_camera_undistorted.mp4 | Other | 116.6 MB | cbf54093c9f9 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517208608071225344/head_right_camera_undistorted.mp4 | Other | 112.7 MB | 00281f7b1e35 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517208954701090816/head_left_camera_undistorted.mp4 | Other | 111.7 MB | dc229cda69e8 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517208954701090816/head_right_camera_undistorted.mp4 | Other | 108.1 MB | d432a8a46064 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517209295370850304/head_left_camera_undistorted.mp4 | Other | 120.6 MB | 3ab3052460c1 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517209295370850304/head_right_camera_undistorted.mp4 | Other | 117.4 MB | c43c2657bdae |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517209812046188544/head_left_camera_undistorted.mp4 | Other | 142.2 MB | ece3ac0a86a7 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517209812046188544/head_right_camera_undistorted.mp4 | Other | 138.0 MB | 9530c4dab095 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517210180142501888/head_left_camera_undistorted.mp4 | Other | 137.3 MB | a051d3d5c7ed |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517210180142501888/head_right_camera_undistorted.mp4 | Other | 134.0 MB | 1c2a765bde46 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517210550793146368/head_left_camera_undistorted.mp4 | Other | 133.1 MB | 443913c1443f |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-peanut-flavors/case_1517210550793146368/head_right_camera_undistorted.mp4 | Other | 129.6 MB | 4f8cab753e5b |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-rice-crackers-with-different-flavors/case_1517206551981461504/head_left_camera_undistorted.mp4 | Other | 102.8 MB | 498b9a797be9 |
| hengxuan-commercial-bank-retail-area/correction-of-hanging-snacks-mixed-rice-crackers-with-different-flavors/case_1517206551981461504/head_right_camera_undistorted.mp4 | Other | 100.2 MB | 4b35f2846146 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518933301908213760/head_left_camera_undistorted.mp4 | Other | 383.5 MB | c5700d600936 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518933301908213760/head_right_camera_undistorted.mp4 | Other | 381.9 MB | 134f89771ee7 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518987977622032384/head_left_camera_undistorted.mp4 | Other | 485.9 MB | 3bd02cf0db43 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518987977622032384/head_right_camera_undistorted.mp4 | Other | 474.7 MB | 9b57e89be4cc |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518989176618356736/head_left_camera_undistorted.mp4 | Other | 358.3 MB | 6c4fceaa1788 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518989176618356736/head_right_camera_undistorted.mp4 | Other | 350.9 MB | 7e516dced079 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518989904359460864/head_left_camera_undistorted.mp4 | Other | 416.0 MB | 2fd6f311f2c8 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518989904359460864/head_right_camera_undistorted.mp4 | Other | 407.0 MB | 33fd298dc381 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518990910799482880/head_left_camera_undistorted.mp4 | Other | 424.6 MB | 20a336ea2d2f |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518990910799482880/head_right_camera_undistorted.mp4 | Other | 418.2 MB | 3ab13c132d0a |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518995242479521792/head_left_camera_undistorted.mp4 | Other | 310.9 MB | e08f5bb5ea10 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518995242479521792/head_right_camera_undistorted.mp4 | Other | 305.3 MB | 4a80d3bfb297 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518996135044190208/head_left_camera_undistorted.mp4 | Other | 283.1 MB | a0939bb8f2de |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518996135044190208/head_right_camera_undistorted.mp4 | Other | 276.7 MB | aca8b296f5bf |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518996667779518464/head_left_camera_undistorted.mp4 | Other | 264.2 MB | fba304db5465 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518996667779518464/head_right_camera_undistorted.mp4 | Other | 259.1 MB | f2871ab6b4fd |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518997924342665216/head_left_camera_undistorted.mp4 | Other | 334.4 MB | e8d2ee426153 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518997924342665216/head_right_camera_undistorted.mp4 | Other | 328.3 MB | 8f9fe9ea60fc |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518998574900187136/head_left_camera_undistorted.mp4 | Other | 345.2 MB | b092e6f71757 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1518998574900187136/head_right_camera_undistorted.mp4 | Other | 338.4 MB | 56aa9cab8e91 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519007074485276672/head_left_camera_undistorted.mp4 | Other | 229.1 MB | 58014e0f8e6e |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519007074485276672/head_right_camera_undistorted.mp4 | Other | 223.1 MB | b542d6b33945 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519007511468838912/head_left_camera_undistorted.mp4 | Other | 300.1 MB | bf48903b53bc |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519007511468838912/head_right_camera_undistorted.mp4 | Other | 293.2 MB | 3099bd33ea06 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519008107550740480/head_left_camera_undistorted.mp4 | Other | 254.8 MB | cc6c0b97966f |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519008107550740480/head_right_camera_undistorted.mp4 | Other | 249.1 MB | 8b5eb5af5873 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519008700944093184/head_left_camera_undistorted.mp4 | Other | 326.7 MB | 36af80c665ae |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519008700944093184/head_right_camera_undistorted.mp4 | Other | 318.1 MB | 7882848b1732 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519009629210677248/head_left_camera_undistorted.mp4 | Other | 322.6 MB | d84f5c5a3cbd |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519009629210677248/head_right_camera_undistorted.mp4 | Other | 315.0 MB | dfb05779e827 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519010221576425472/head_left_camera_undistorted.mp4 | Other | 289.1 MB | 3e6951d8e144 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519010221576425472/head_right_camera_undistorted.mp4 | Other | 283.4 MB | ee13369be68a |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519010884813328384/head_left_camera_undistorted.mp4 | Other | 393.3 MB | 1400de184213 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519010884813328384/head_right_camera_undistorted.mp4 | Other | 383.7 MB | 142f05d37644 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519011681223577600/head_left_camera_undistorted.mp4 | Other | 342.6 MB | 3c67f99180bf |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519011681223577600/head_right_camera_undistorted.mp4 | Other | 334.2 MB | 7c36cfa556fe |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519012340228427776/head_left_camera_undistorted.mp4 | Other | 305.6 MB | b7ccda79d8a0 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519012340228427776/head_right_camera_undistorted.mp4 | Other | 297.7 MB | e6c8bc87d450 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519015670849736704/head_left_camera_undistorted.mp4 | Other | 434.7 MB | 1b14496cfac0 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1519015670849736704/head_right_camera_undistorted.mp4 | Other | 427.2 MB | 4e4431700b3b |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529418856487981056/head_left_camera_undistorted.mp4 | Other | 146.9 MB | 3da527f115b7 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529418856487981056/head_right_camera_undistorted.mp4 | Other | 124.1 MB | 9abf6c611f1d |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529418856487981056/video_stream_audio_aac_stereo.m4a | Other | 1.5 MB | fa26864f6250 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529418856487981056/video_stream_audio_opus_4ch.ogg | Other | 3.1 MB | c2c4ba4582d8 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529418856487981056/video_stream_depth_frames.npz | Other | 14.2 MB | 874cf70c9769 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529418856487981056/video_stream_head_pose_6dof.npz | Other | 3.3 MB | 4d53cff746d3 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529781532212858880/head_left_camera_undistorted.mp4 | Other | 274.6 MB | e0587efaf4f6 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529781532212858880/head_right_camera_undistorted.mp4 | Other | 282.4 MB | d1d1957cb09b |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529781532212858880/video_stream_audio_aac_stereo.m4a | Other | 2.6 MB | 878d31c3423a |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529781532212858880/video_stream_audio_opus_4ch.ogg | Other | 5.3 MB | 29b28941c605 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529781532212858880/video_stream_depth_frames.npz | Other | 20.3 MB | 541ce4f89d6d |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529781532212858880/video_stream_head_pose_6dof.npz | Other | 5.6 MB | e125945bfc07 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529783274690318336/head_left_camera_undistorted.mp4 | Other | 312.2 MB | 69cf4de9adcb |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529783274690318336/head_right_camera_undistorted.mp4 | Other | 310.2 MB | 2a5284ab5c2f |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529783274690318336/video_stream_audio_aac_stereo.m4a | Other | 2.7 MB | 820ce4631ee7 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529783274690318336/video_stream_audio_opus_4ch.ogg | Other | 5.4 MB | 761646ded340 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529783274690318336/video_stream_depth_frames.npz | Other | 32.4 MB | 278d6ec989ff |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529783274690318336/video_stream_head_pose_6dof.npz | Other | 5.6 MB | 8b5f9c98f7a2 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529791190877081600/head_left_camera_undistorted.mp4 | Other | 276.3 MB | 55318f9ab81d |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529791190877081600/head_right_camera_undistorted.mp4 | Other | 277.6 MB | 2b380ac4a890 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529791190877081600/video_stream_audio_aac_stereo.m4a | Other | 2.7 MB | 967ef313e804 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529791190877081600/video_stream_audio_opus_4ch.ogg | Other | 5.5 MB | d7af9d4df068 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529791190877081600/video_stream_depth_frames.npz | Other | 34.1 MB | f5d017a2b56f |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529791190877081600/video_stream_head_pose_6dof.npz | Other | 5.8 MB | 8c46e799821b |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529791769607147520/head_left_camera_undistorted.mp4 | Other | 298.9 MB | bdf8cc6db7a9 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529791769607147520/head_right_camera_undistorted.mp4 | Other | 297.8 MB | ed6ba82509de |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529791769607147520/video_stream_audio_aac_stereo.m4a | Other | 2.8 MB | 8e34bbb40521 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529791769607147520/video_stream_audio_opus_4ch.ogg | Other | 5.6 MB | 0709affc8daa |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529791769607147520/video_stream_depth_frames.npz | Other | 35.6 MB | 25fbc45031b1 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529791769607147520/video_stream_head_pose_6dof.npz | Other | 6.0 MB | 7944ddf64cba |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529792310051606528/head_left_camera_undistorted.mp4 | Other | 274.2 MB | bf2d56654b03 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529792310051606528/head_right_camera_undistorted.mp4 | Other | 272.8 MB | 090121ed125d |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529792310051606528/video_stream_audio_aac_stereo.m4a | Other | 2.8 MB | c30f3a1fe686 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529792310051606528/video_stream_audio_opus_4ch.ogg | Other | 5.7 MB | c498002656bc |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529792310051606528/video_stream_depth_frames.npz | Other | 35.8 MB | d4115c55952b |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529792310051606528/video_stream_head_pose_6dof.npz | Other | 6.0 MB | d49b83fface1 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529793443188969472/head_left_camera_undistorted.mp4 | Other | 299.7 MB | 099d366ba561 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529793443188969472/head_right_camera_undistorted.mp4 | Other | 304.7 MB | e9955548ef22 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529793443188969472/video_stream_audio_aac_stereo.m4a | Other | 2.9 MB | fdbb6d506ed2 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529793443188969472/video_stream_audio_opus_4ch.ogg | Other | 5.9 MB | 386a8c2044a7 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529793443188969472/video_stream_depth_frames.npz | Other | 27.9 MB | b35a68943174 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529793443188969472/video_stream_head_pose_6dof.npz | Other | 6.3 MB | d8848ef568f6 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529794413285347328/head_left_camera_undistorted.mp4 | Other | 330.3 MB | d4b5ccde9a44 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529794413285347328/head_right_camera_undistorted.mp4 | Other | 339.4 MB | 6bd8425b9537 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529794413285347328/video_stream_audio_aac_stereo.m4a | Other | 2.7 MB | 23e081375e55 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529794413285347328/video_stream_audio_opus_4ch.ogg | Other | 5.5 MB | 3dc688c93a93 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529794413285347328/video_stream_depth_frames.npz | Other | 22.0 MB | 0c20daad4cc7 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529794413285347328/video_stream_head_pose_6dof.npz | Other | 5.9 MB | 3a9446adb59e |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529795105328730112/head_left_camera_undistorted.mp4 | Other | 325.5 MB | 4d8e27af4b95 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529795105328730112/head_right_camera_undistorted.mp4 | Other | 322.4 MB | 3e577eb392df |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529795105328730112/video_stream_audio_aac_stereo.m4a | Other | 2.9 MB | ba5bd71ed8a4 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529795105328730112/video_stream_audio_opus_4ch.ogg | Other | 5.8 MB | 078a9e443622 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529795105328730112/video_stream_depth_frames.npz | Other | 37.0 MB | ad6cf0c11e13 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529795105328730112/video_stream_head_pose_6dof.npz | Other | 6.2 MB | 8317208d723c |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529795696977252352/head_left_camera_undistorted.mp4 | Other | 317.4 MB | 694c36bd4ac3 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529795696977252352/head_right_camera_undistorted.mp4 | Other | 315.2 MB | ada2c13d6b10 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529795696977252352/video_stream_audio_aac_stereo.m4a | Other | 2.9 MB | c4c083607396 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529795696977252352/video_stream_audio_opus_4ch.ogg | Other | 5.8 MB | 3c15955fc6aa |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529795696977252352/video_stream_depth_frames.npz | Other | 36.9 MB | c47325ffe970 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529795696977252352/video_stream_head_pose_6dof.npz | Other | 6.2 MB | ac44c8178476 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529796657682583552/head_left_camera_undistorted.mp4 | Other | 282.2 MB | 210ac6f5299c |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529796657682583552/head_right_camera_undistorted.mp4 | Other | 281.2 MB | 8d802b5b34bd |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529796657682583552/video_stream_audio_aac_stereo.m4a | Other | 2.5 MB | 392987bf5007 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529796657682583552/video_stream_audio_opus_4ch.ogg | Other | 5.1 MB | e77d0f73dd98 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529796657682583552/video_stream_depth_frames.npz | Other | 32.9 MB | 2c678d437b43 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529796657682583552/video_stream_head_pose_6dof.npz | Other | 5.4 MB | faf67953a30a |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529798675805507584/head_left_camera_undistorted.mp4 | Other | 320.4 MB | 86b9d7817b48 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529798675805507584/head_right_camera_undistorted.mp4 | Other | 319.3 MB | 33020c8587cb |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529798675805507584/video_stream_audio_aac_stereo.m4a | Other | 3.0 MB | 5e816976573f |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529798675805507584/video_stream_audio_opus_4ch.ogg | Other | 5.9 MB | a704fbcfcf2f |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529798675805507584/video_stream_depth_frames.npz | Other | 37.8 MB | 5a73b4f95fc5 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529798675805507584/video_stream_head_pose_6dof.npz | Other | 6.3 MB | f2e3ad2c4636 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529799291059572736/head_left_camera_undistorted.mp4 | Other | 314.9 MB | c89acf1f457c |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529799291059572736/head_right_camera_undistorted.mp4 | Other | 313.9 MB | f6dc6d9ecacc |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529799291059572736/video_stream_audio_aac_stereo.m4a | Other | 2.8 MB | 7220b8a003c9 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529799291059572736/video_stream_audio_opus_4ch.ogg | Other | 5.6 MB | 4c601b50e0df |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529799291059572736/video_stream_depth_frames.npz | Other | 35.2 MB | 2cf48d3c8abc |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529799291059572736/video_stream_head_pose_6dof.npz | Other | 6.0 MB | 997947942174 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529801068106485760/head_left_camera_undistorted.mp4 | Other | 331.9 MB | 47f6645b7bd6 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529801068106485760/head_right_camera_undistorted.mp4 | Other | 331.8 MB | 788f5b3ae00b |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529801068106485760/video_stream_audio_aac_stereo.m4a | Other | 3.0 MB | fe18a63af340 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529801068106485760/video_stream_audio_opus_4ch.ogg | Other | 5.9 MB | 09c8a6e0a866 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529801068106485760/video_stream_depth_frames.npz | Other | 38.1 MB | 2980933a0627 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529801068106485760/video_stream_head_pose_6dof.npz | Other | 6.3 MB | 0ce56cb99a17 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529801684526567424/head_left_camera_undistorted.mp4 | Other | 364.8 MB | 6b7ebd4a61a0 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529801684526567424/head_right_camera_undistorted.mp4 | Other | 365.1 MB | be1f7799c418 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529801684526567424/video_stream_audio_aac_stereo.m4a | Other | 3.3 MB | b170179f1f50 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529801684526567424/video_stream_audio_opus_4ch.ogg | Other | 6.5 MB | 6077fccba361 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529801684526567424/video_stream_depth_frames.npz | Other | 41.6 MB | 9e259d63a0c2 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529801684526567424/video_stream_head_pose_6dof.npz | Other | 6.9 MB | d9085ce19a72 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529802448187691008/head_left_camera_undistorted.mp4 | Other | 278.1 MB | 26b40956b527 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529802448187691008/head_right_camera_undistorted.mp4 | Other | 277.5 MB | fdfb65392264 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529802448187691008/video_stream_audio_aac_stereo.m4a | Other | 2.4 MB | 05540c705a13 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529802448187691008/video_stream_audio_opus_4ch.ogg | Other | 4.9 MB | 68e32cdf0ef3 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529802448187691008/video_stream_depth_frames.npz | Other | 30.6 MB | ba04014d7653 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529802448187691008/video_stream_head_pose_6dof.npz | Other | 5.2 MB | 78b5754747c4 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529803087831633920/head_left_camera_undistorted.mp4 | Other | 284.7 MB | f2cbce32a2cd |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529803087831633920/head_right_camera_undistorted.mp4 | Other | 285.8 MB | 365f63179a41 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529803087831633920/video_stream_audio_aac_stereo.m4a | Other | 2.6 MB | 518a31933016 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529803087831633920/video_stream_audio_opus_4ch.ogg | Other | 5.1 MB | 1fc35877e117 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529803087831633920/video_stream_depth_frames.npz | Other | 32.3 MB | b45b8b248b25 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529803087831633920/video_stream_head_pose_6dof.npz | Other | 5.4 MB | 31dc303dc39f |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529803671372566528/head_left_camera_undistorted.mp4 | Other | 268.2 MB | 5cbe29f1f0d3 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529803671372566528/head_right_camera_undistorted.mp4 | Other | 269.8 MB | 37bf27ee8ff8 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529803671372566528/video_stream_audio_aac_stereo.m4a | Other | 2.4 MB | d5690ebb7071 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529803671372566528/video_stream_audio_opus_4ch.ogg | Other | 4.7 MB | 3ceed4e7250f |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529803671372566528/video_stream_depth_frames.npz | Other | 29.9 MB | 44d45eaab104 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529803671372566528/video_stream_head_pose_6dof.npz | Other | 5.0 MB | 4f5a29a28599 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529804171828531200/head_left_camera_undistorted.mp4 | Other | 289.7 MB | 8490f895f48b |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529804171828531200/head_right_camera_undistorted.mp4 | Other | 290.6 MB | bb9f1582c81d |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529804171828531200/video_stream_audio_aac_stereo.m4a | Other | 2.5 MB | 03176c257c8e |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529804171828531200/video_stream_audio_opus_4ch.ogg | Other | 5.1 MB | 86d2ca50710e |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529804171828531200/video_stream_depth_frames.npz | Other | 32.2 MB | 538a74019d96 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529804171828531200/video_stream_head_pose_6dof.npz | Other | 5.3 MB | b67c9965b2e5 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529804736134385664/head_left_camera_undistorted.mp4 | Other | 259.9 MB | 75ee4523793e |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529804736134385664/head_right_camera_undistorted.mp4 | Other | 259.8 MB | bfa35e81e6b8 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529804736134385664/video_stream_audio_aac_stereo.m4a | Other | 2.3 MB | cdd65821bbc9 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529804736134385664/video_stream_audio_opus_4ch.ogg | Other | 4.6 MB | 8d4e516fc95e |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529804736134385664/video_stream_depth_frames.npz | Other | 29.7 MB | f70a23223d8c |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529804736134385664/video_stream_head_pose_6dof.npz | Other | 4.9 MB | a0acd2721929 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529805751868985344/head_left_camera_undistorted.mp4 | Other | 292.9 MB | caa6a1e619c9 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529805751868985344/head_right_camera_undistorted.mp4 | Other | 291.4 MB | 0cd906dfc354 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529805751868985344/video_stream_audio_aac_stereo.m4a | Other | 2.6 MB | 01b0024b3b19 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529805751868985344/video_stream_audio_opus_4ch.ogg | Other | 5.2 MB | 35d1b0ab30ab |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529805751868985344/video_stream_depth_frames.npz | Other | 32.7 MB | d802546fbd97 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529805751868985344/video_stream_head_pose_6dof.npz | Other | 5.5 MB | db0a82d4cf3f |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529806487969337344/head_left_camera_undistorted.mp4 | Other | 295.0 MB | 819d00d3f0de |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529806487969337344/head_right_camera_undistorted.mp4 | Other | 294.9 MB | a50b3b37481f |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529806487969337344/video_stream_audio_aac_stereo.m4a | Other | 2.6 MB | 8c2f921842ee |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529806487969337344/video_stream_audio_opus_4ch.ogg | Other | 5.2 MB | 82b2cb48fd6b |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529806487969337344/video_stream_depth_frames.npz | Other | 33.1 MB | f950efe95d98 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529806487969337344/video_stream_head_pose_6dof.npz | Other | 5.6 MB | 9e687c81cb4e |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529807073498370048/head_left_camera_undistorted.mp4 | Other | 279.2 MB | 27980d1b8fdc |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529807073498370048/head_right_camera_undistorted.mp4 | Other | 278.5 MB | e3549680397d |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529807073498370048/video_stream_audio_aac_stereo.m4a | Other | 2.6 MB | 4c57ffe56466 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529807073498370048/video_stream_audio_opus_4ch.ogg | Other | 5.2 MB | c8313cc13c6c |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529807073498370048/video_stream_depth_frames.npz | Other | 32.0 MB | 907deb82c585 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529807073498370048/video_stream_head_pose_6dof.npz | Other | 5.4 MB | ca79721113eb |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529807688634994688/head_left_camera_undistorted.mp4 | Other | 292.8 MB | af3acceb3cd8 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529807688634994688/head_right_camera_undistorted.mp4 | Other | 292.0 MB | 3aa5d4f14c6f |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529807688634994688/video_stream_audio_aac_stereo.m4a | Other | 2.6 MB | 6e23617822fa |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529807688634994688/video_stream_audio_opus_4ch.ogg | Other | 5.2 MB | 19703fc003ca |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529807688634994688/video_stream_depth_frames.npz | Other | 32.6 MB | 7394b86548f9 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529807688634994688/video_stream_head_pose_6dof.npz | Other | 5.5 MB | 20cda9f43d00 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529808226021806080/head_left_camera_undistorted.mp4 | Other | 279.5 MB | 91f47f5cab6e |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529808226021806080/head_right_camera_undistorted.mp4 | Other | 279.3 MB | 2781b059b38e |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529808226021806080/video_stream_audio_aac_stereo.m4a | Other | 2.5 MB | efe69b490014 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529808226021806080/video_stream_audio_opus_4ch.ogg | Other | 5.1 MB | ddc5977574c2 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529808226021806080/video_stream_depth_frames.npz | Other | 31.9 MB | ab4ae4294d35 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529808226021806080/video_stream_head_pose_6dof.npz | Other | 5.4 MB | 4cbbf49e7733 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529808755925979136/head_left_camera_undistorted.mp4 | Other | 274.2 MB | e5d696d5700a |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529808755925979136/head_right_camera_undistorted.mp4 | Other | 273.8 MB | 050ab109a561 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529808755925979136/video_stream_audio_aac_stereo.m4a | Other | 2.5 MB | 6399fb44649c |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529808755925979136/video_stream_audio_opus_4ch.ogg | Other | 5.0 MB | 66798b4b7022 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529808755925979136/video_stream_depth_frames.npz | Other | 31.7 MB | 8d75d1e9cc80 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529808755925979136/video_stream_head_pose_6dof.npz | Other | 5.3 MB | cd423d4c36c6 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529809884537688064/head_left_camera_undistorted.mp4 | Other | 307.3 MB | f266aa523b71 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529809884537688064/head_right_camera_undistorted.mp4 | Other | 306.2 MB | 898263872ff5 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529809884537688064/video_stream_audio_aac_stereo.m4a | Other | 2.7 MB | 1db795a9f7f0 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529809884537688064/video_stream_audio_opus_4ch.ogg | Other | 5.4 MB | 82b134163db1 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529809884537688064/video_stream_depth_frames.npz | Other | 34.2 MB | 7f4041ad7a13 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529809884537688064/video_stream_head_pose_6dof.npz | Other | 5.8 MB | 17b02bfdea35 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529810429243559936/head_left_camera_undistorted.mp4 | Other | 303.6 MB | 95e30405dabe |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529810429243559936/head_right_camera_undistorted.mp4 | Other | 302.2 MB | a2c139c729ce |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529810429243559936/video_stream_audio_aac_stereo.m4a | Other | 2.7 MB | 1b3766a993b8 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529810429243559936/video_stream_audio_opus_4ch.ogg | Other | 5.5 MB | 080eeb0b2052 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529810429243559936/video_stream_depth_frames.npz | Other | 34.7 MB | 430cc840c5d2 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529810429243559936/video_stream_head_pose_6dof.npz | Other | 5.8 MB | 1b97822a3d63 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529811098927108096/head_left_camera_undistorted.mp4 | Other | 282.1 MB | a29933c73b39 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529811098927108096/head_right_camera_undistorted.mp4 | Other | 280.7 MB | 29cf54d4f23a |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529811098927108096/video_stream_audio_aac_stereo.m4a | Other | 2.7 MB | ebd05c1ccb15 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529811098927108096/video_stream_audio_opus_4ch.ogg | Other | 5.4 MB | 347b8cc60ee4 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529811098927108096/video_stream_depth_frames.npz | Other | 33.8 MB | 307733d258c1 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529811098927108096/video_stream_head_pose_6dof.npz | Other | 5.7 MB | a62fc0c2d5eb |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529811836436746240/head_left_camera_undistorted.mp4 | Other | 288.2 MB | 894ccb1dd593 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529811836436746240/head_right_camera_undistorted.mp4 | Other | 288.3 MB | bb86bb7af691 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529811836436746240/video_stream_audio_aac_stereo.m4a | Other | 2.7 MB | 24423bc1ea00 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529811836436746240/video_stream_audio_opus_4ch.ogg | Other | 5.4 MB | ad8fa6406417 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529811836436746240/video_stream_depth_frames.npz | Other | 34.4 MB | b1bbd2034b2e |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529811836436746240/video_stream_head_pose_6dof.npz | Other | 5.7 MB | 42b7a4721541 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529812365552390144/head_left_camera_undistorted.mp4 | Other | 319.6 MB | 431d34024f4d |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529812365552390144/head_right_camera_undistorted.mp4 | Other | 319.4 MB | d0bd424e640b |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529812365552390144/video_stream_audio_aac_stereo.m4a | Other | 2.9 MB | 36a85501e307 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529812365552390144/video_stream_audio_opus_4ch.ogg | Other | 4.8 MB | 9057d5addba5 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529812365552390144/video_stream_depth_frames.npz | Other | 36.9 MB | 7d17b566eedd |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529812365552390144/video_stream_head_pose_6dof.npz | Other | 6.1 MB | 5b602d58b3ab |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529813871219445760/head_left_camera_undistorted.mp4 | Other | 301.6 MB | 6ff4297ab0da |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529813871219445760/head_right_camera_undistorted.mp4 | Other | 300.9 MB | 366c8ddba147 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529813871219445760/video_stream_audio_aac_stereo.m4a | Other | 2.8 MB | c0752e5853e4 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529813871219445760/video_stream_audio_opus_4ch.ogg | Other | 5.5 MB | 4111466f0d85 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529813871219445760/video_stream_depth_frames.npz | Other | 35.5 MB | 859a51c2819a |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529813871219445760/video_stream_head_pose_6dof.npz | Other | 5.9 MB | 6b042112ee4b |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529814850874642432/head_left_camera_undistorted.mp4 | Other | 284.1 MB | 676bc8f6dd47 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529814850874642432/head_right_camera_undistorted.mp4 | Other | 284.1 MB | e0c65387ad94 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529814850874642432/video_stream_audio_aac_stereo.m4a | Other | 2.6 MB | 16e712ecc434 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529814850874642432/video_stream_audio_opus_4ch.ogg | Other | 5.3 MB | 67b3b199ca7e |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529814850874642432/video_stream_depth_frames.npz | Other | 33.2 MB | 68edcd3ad978 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529814850874642432/video_stream_head_pose_6dof.npz | Other | 5.6 MB | 0350b134c8f5 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529815443160698880/head_left_camera_undistorted.mp4 | Other | 315.0 MB | dc2a28fba747 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529815443160698880/head_right_camera_undistorted.mp4 | Other | 314.6 MB | 4b1ec3f65e92 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529815443160698880/video_stream_audio_aac_stereo.m4a | Other | 2.9 MB | 4b48fd783440 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529815443160698880/video_stream_audio_opus_4ch.ogg | Other | 5.7 MB | 5ba24b9ddddd |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529815443160698880/video_stream_depth_frames.npz | Other | 36.4 MB | 7f11f8324b1c |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529815443160698880/video_stream_head_pose_6dof.npz | Other | 6.1 MB | 2adaea16da9b |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529840763377029120/head_left_camera_undistorted.mp4 | Other | 104.2 MB | aa09c85edd51 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529840763377029120/head_right_camera_undistorted.mp4 | Other | 106.5 MB | d89c019eff24 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529840763377029120/video_stream_audio_aac_stereo.m4a | Other | 831.1 KB | ce0272bae0be |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529840763377029120/video_stream_audio_opus_4ch.ogg | Other | 1.7 MB | c46c176a92d5 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529840763377029120/video_stream_depth_frames.npz | Other | 7.1 MB | 4db26f4f71c1 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529840763377029120/video_stream_head_pose_6dof.npz | Other | 1.7 MB | 244158e0f94e |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529841170320986112/head_left_camera_undistorted.mp4 | Other | 274.4 MB | 33f926f1c6c5 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529841170320986112/head_right_camera_undistorted.mp4 | Other | 274.2 MB | 0c31f7c978aa |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529841170320986112/video_stream_audio_aac_stereo.m4a | Other | 2.5 MB | ff7d9de66b4b |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529841170320986112/video_stream_audio_opus_4ch.ogg | Other | 5.0 MB | 33e4e5938782 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529841170320986112/video_stream_depth_frames.npz | Other | 31.0 MB | 0d8bb10a2cb0 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529841170320986112/video_stream_head_pose_6dof.npz | Other | 5.3 MB | 64a01d0173da |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529843019329572864/head_left_camera_undistorted.mp4 | Other | 273.3 MB | 619e8e475831 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529843019329572864/head_right_camera_undistorted.mp4 | Other | 275.5 MB | 5e086db523e0 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529843019329572864/video_stream_audio_aac_stereo.m4a | Other | 2.7 MB | 305939466caf |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529843019329572864/video_stream_audio_opus_4ch.ogg | Other | 5.5 MB | f7f4149cf6cc |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529843019329572864/video_stream_depth_frames.npz | Other | 33.6 MB | 0fec1e004cd4 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529843019329572864/video_stream_head_pose_6dof.npz | Other | 6.1 MB | 473636120794 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529843884018896896/head_left_camera_undistorted.mp4 | Other | 279.5 MB | 18b2c9590179 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529843884018896896/head_right_camera_undistorted.mp4 | Other | 281.5 MB | 6ec780ab8d78 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529843884018896896/video_stream_audio_aac_stereo.m4a | Other | 2.7 MB | 3e2c90e5fd5a |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529843884018896896/video_stream_audio_opus_4ch.ogg | Other | 5.4 MB | 4f7c9c132c46 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529843884018896896/video_stream_depth_frames.npz | Other | 33.7 MB | c4d8b6d897c1 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529843884018896896/video_stream_head_pose_6dof.npz | Other | 6.1 MB | 3ff56727c6b8 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529844766223634432/head_left_camera_undistorted.mp4 | Other | 300.3 MB | 008f34d298ba |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529844766223634432/head_right_camera_undistorted.mp4 | Other | 302.1 MB | 378007b89a91 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529844766223634432/video_stream_audio_aac_stereo.m4a | Other | 2.9 MB | 859dc8c7b30f |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529844766223634432/video_stream_audio_opus_4ch.ogg | Other | 5.7 MB | 4a2aa35ff05a |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529844766223634432/video_stream_depth_frames.npz | Other | 36.1 MB | fa63b815c320 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529844766223634432/video_stream_head_pose_6dof.npz | Other | 6.4 MB | 5be9a06aeae8 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529845890603290624/head_left_camera_undistorted.mp4 | Other | 299.1 MB | ea2f6bb0559e |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529845890603290624/head_right_camera_undistorted.mp4 | Other | 302.0 MB | 9b882962e5d1 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529845890603290624/video_stream_audio_aac_stereo.m4a | Other | 2.8 MB | 051c78985f45 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529845890603290624/video_stream_audio_opus_4ch.ogg | Other | 5.5 MB | b2a1981bc53b |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529845890603290624/video_stream_depth_frames.npz | Other | 35.2 MB | 209c9d377414 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529845890603290624/video_stream_head_pose_6dof.npz | Other | 6.1 MB | 0bf5cb069658 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529846889824915456/head_left_camera_undistorted.mp4 | Other | 237.8 MB | 10d42b17fef6 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529846889824915456/head_right_camera_undistorted.mp4 | Other | 240.6 MB | 4f33226fd6a9 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529846889824915456/video_stream_audio_aac_stereo.m4a | Other | 2.3 MB | 4244a6b7359f |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529846889824915456/video_stream_audio_opus_4ch.ogg | Other | 4.6 MB | a8f56508e335 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529846889824915456/video_stream_depth_frames.npz | Other | 29.1 MB | 279b055a1592 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529846889824915456/video_stream_head_pose_6dof.npz | Other | 5.2 MB | c5138ff8724a |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529847583948673025/head_left_camera_undistorted.mp4 | Other | 247.7 MB | 013c92e311be |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529847583948673025/head_right_camera_undistorted.mp4 | Other | 249.8 MB | 3bcdb2c17b13 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529847583948673025/video_stream_audio_aac_stereo.m4a | Other | 2.3 MB | 8c47d6125d31 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529847583948673025/video_stream_audio_opus_4ch.ogg | Other | 4.6 MB | c299851f6a04 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529847583948673025/video_stream_depth_frames.npz | Other | 28.8 MB | a6d01dd7b2ec |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529847583948673025/video_stream_head_pose_6dof.npz | Other | 5.2 MB | 8c87c507598e |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529848221231222784/head_left_camera_undistorted.mp4 | Other | 292.8 MB | 7e47f43a231a |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529848221231222784/head_right_camera_undistorted.mp4 | Other | 294.5 MB | 9d2feb08a3c3 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529848221231222784/video_stream_audio_aac_stereo.m4a | Other | 2.8 MB | ee891dac83a6 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529848221231222784/video_stream_audio_opus_4ch.ogg | Other | 5.7 MB | abe0038d9b19 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529848221231222784/video_stream_depth_frames.npz | Other | 34.9 MB | 34825146b980 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529848221231222784/video_stream_head_pose_6dof.npz | Other | 6.3 MB | 625f045c895a |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529849094002970624/head_left_camera_undistorted.mp4 | Other | 274.1 MB | e35539bd9fcf |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529849094002970624/head_right_camera_undistorted.mp4 | Other | 274.8 MB | c43e46267d0e |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529849094002970624/video_stream_audio_aac_stereo.m4a | Other | 2.7 MB | dfe7f8d8bed3 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529849094002970624/video_stream_audio_opus_4ch.ogg | Other | 5.4 MB | cb78686f4e1b |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529849094002970624/video_stream_depth_frames.npz | Other | 32.8 MB | c120da63a8c2 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529849094002970624/video_stream_head_pose_6dof.npz | Other | 6.1 MB | 6c84f5e77cdd |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529849704869793792/head_left_camera_undistorted.mp4 | Other | 302.6 MB | 323608d3dff5 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529849704869793792/head_right_camera_undistorted.mp4 | Other | 304.0 MB | ed10834bd971 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529849704869793792/video_stream_audio_aac_stereo.m4a | Other | 3.0 MB | 1fa8e00185c3 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529849704869793792/video_stream_audio_opus_4ch.ogg | Other | 5.9 MB | 48d7e4ca6c14 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529849704869793792/video_stream_depth_frames.npz | Other | 36.7 MB | db817a595f54 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529849704869793792/video_stream_head_pose_6dof.npz | Other | 6.6 MB | 3b23bdb7c107 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529851185882730496/head_left_camera_undistorted.mp4 | Other | 258.3 MB | 3302db2b1197 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529851185882730496/head_right_camera_undistorted.mp4 | Other | 260.3 MB | 0994135ab05a |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529851185882730496/video_stream_audio_aac_stereo.m4a | Other | 2.5 MB | 083a0f8b6789 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529851185882730496/video_stream_audio_opus_4ch.ogg | Other | 5.0 MB | f6e8d1170da9 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529851185882730496/video_stream_depth_frames.npz | Other | 31.0 MB | c87bcee2468e |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529851185882730496/video_stream_head_pose_6dof.npz | Other | 5.5 MB | 712d72ff2d5b |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529851723114352640/head_left_camera_undistorted.mp4 | Other | 277.7 MB | a99a9d8a3e4f |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529851723114352640/head_right_camera_undistorted.mp4 | Other | 278.4 MB | 93bef18105cf |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529851723114352640/video_stream_audio_aac_stereo.m4a | Other | 2.7 MB | 72b670e2e76e |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529851723114352640/video_stream_audio_opus_4ch.ogg | Other | 5.4 MB | c791c65671e6 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529851723114352640/video_stream_depth_frames.npz | Other | 32.7 MB | 301624ecbc38 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529851723114352640/video_stream_head_pose_6dof.npz | Other | 6.1 MB | f8b11a61070e |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529854693977624576/head_left_camera_undistorted.mp4 | Other | 307.8 MB | 16af71ac363e |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529854693977624576/head_right_camera_undistorted.mp4 | Other | 309.6 MB | 9cac5c704d93 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529854693977624576/video_stream_audio_aac_stereo.m4a | Other | 2.9 MB | 237463d86521 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529854693977624576/video_stream_audio_opus_4ch.ogg | Other | 5.8 MB | db8c9d27a477 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529854693977624576/video_stream_depth_frames.npz | Other | 35.2 MB | d51173f184d2 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529854693977624576/video_stream_head_pose_6dof.npz | Other | 6.4 MB | ee6c8ef9662f |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529855517973811200/head_left_camera_undistorted.mp4 | Other | 294.6 MB | 90c9d1772c71 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529855517973811200/head_right_camera_undistorted.mp4 | Other | 297.3 MB | 69f70d88240f |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529855517973811200/video_stream_audio_aac_stereo.m4a | Other | 2.8 MB | 8a2d1725ad26 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529855517973811200/video_stream_audio_opus_4ch.ogg | Other | 5.6 MB | e675634b9a67 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529855517973811200/video_stream_depth_frames.npz | Other | 34.9 MB | 8db89f35423e |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529855517973811200/video_stream_head_pose_6dof.npz | Other | 6.3 MB | 86c4fbb40df8 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529856369283305472/head_left_camera_undistorted.mp4 | Other | 285.6 MB | cc9e29d50246 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529856369283305472/head_right_camera_undistorted.mp4 | Other | 287.4 MB | 732aeb49209f |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529856369283305472/video_stream_audio_aac_stereo.m4a | Other | 2.8 MB | d98262a94b33 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529856369283305472/video_stream_audio_opus_4ch.ogg | Other | 5.7 MB | ac556e399ae5 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529856369283305472/video_stream_depth_frames.npz | Other | 34.1 MB | 62e5dcce5db6 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529856369283305472/video_stream_head_pose_6dof.npz | Other | 6.4 MB | 4c5331c110bd |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529857316990488576/head_left_camera_undistorted.mp4 | Other | 294.9 MB | ea0c774422ca |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529857316990488576/head_right_camera_undistorted.mp4 | Other | 297.6 MB | 39663f2a628f |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529857316990488576/video_stream_audio_aac_stereo.m4a | Other | 2.8 MB | 6da70b9571bf |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529857316990488576/video_stream_audio_opus_4ch.ogg | Other | 5.7 MB | fbfb08fe2277 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529857316990488576/video_stream_depth_frames.npz | Other | 34.9 MB | 026fe8336280 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529857316990488576/video_stream_head_pose_6dof.npz | Other | 6.3 MB | dd1c05ea0daf |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529857903224164352/head_left_camera_undistorted.mp4 | Other | 280.4 MB | 5a43d6669796 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529857903224164352/head_right_camera_undistorted.mp4 | Other | 282.0 MB | 4c81e739a279 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529857903224164352/video_stream_audio_aac_stereo.m4a | Other | 2.7 MB | 25a270f7dc15 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529857903224164352/video_stream_audio_opus_4ch.ogg | Other | 5.3 MB | 1fec9c7d03f4 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529857903224164352/video_stream_depth_frames.npz | Other | 32.7 MB | b501e255eecc |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529857903224164352/video_stream_head_pose_6dof.npz | Other | 5.9 MB | 4ab379c5cdf6 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529859529963999232/head_left_camera_undistorted.mp4 | Other | 286.6 MB | 04434f0c5e87 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529859529963999232/head_right_camera_undistorted.mp4 | Other | 288.1 MB | af10978ab86e |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529859529963999232/video_stream_audio_aac_stereo.m4a | Other | 2.8 MB | e704f1850b71 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529859529963999232/video_stream_audio_opus_4ch.ogg | Other | 5.5 MB | 10c7a8e46230 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529859529963999232/video_stream_depth_frames.npz | Other | 34.1 MB | 9cd316ce26b0 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529859529963999232/video_stream_head_pose_6dof.npz | Other | 6.2 MB | 1564daeac251 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529860074162360320/head_left_camera_undistorted.mp4 | Other | 279.3 MB | 5a555a377931 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529860074162360320/head_right_camera_undistorted.mp4 | Other | 280.9 MB | d4fac7bfaaf6 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529860074162360320/video_stream_audio_aac_stereo.m4a | Other | 2.7 MB | 6a51e3ed7a9a |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529860074162360320/video_stream_audio_opus_4ch.ogg | Other | 5.5 MB | a8e06d5e1114 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529860074162360320/video_stream_depth_frames.npz | Other | 33.3 MB | 8873d64f9efa |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529860074162360320/video_stream_head_pose_6dof.npz | Other | 6.1 MB | af8fdec3d6f4 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529860887140110336/head_left_camera_undistorted.mp4 | Other | 258.8 MB | 979edcdac003 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529860887140110336/head_right_camera_undistorted.mp4 | Other | 261.1 MB | bb9d49894c91 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529860887140110336/video_stream_audio_aac_stereo.m4a | Other | 2.7 MB | 794c319f5c6a |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529860887140110336/video_stream_audio_opus_4ch.ogg | Other | 5.3 MB | 452647ad266b |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529860887140110336/video_stream_depth_frames.npz | Other | 32.4 MB | 60107050f19f |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529860887140110336/video_stream_head_pose_6dof.npz | Other | 5.9 MB | 973fa870d9f7 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529862835482398720/head_left_camera_undistorted.mp4 | Other | 290.2 MB | 0898d950e92b |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529862835482398720/head_right_camera_undistorted.mp4 | Other | 293.2 MB | 33c6b91c95c8 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529862835482398720/video_stream_audio_aac_stereo.m4a | Other | 2.9 MB | de601c7ee258 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529862835482398720/video_stream_audio_opus_4ch.ogg | Other | 5.9 MB | 61f5483328d0 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529862835482398720/video_stream_depth_frames.npz | Other | 35.9 MB | 400577c0c007 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529862835482398720/video_stream_head_pose_6dof.npz | Other | 6.6 MB | b2454a1d5231 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529863462648287232/head_left_camera_undistorted.mp4 | Other | 270.3 MB | 122817fbd670 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529863462648287232/head_right_camera_undistorted.mp4 | Other | 273.4 MB | 7979723cf2e7 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529863462648287232/video_stream_audio_aac_stereo.m4a | Other | 2.7 MB | 7cd57ba558d6 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529863462648287232/video_stream_audio_opus_4ch.ogg | Other | 5.4 MB | 60a72390875f |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529863462648287232/video_stream_depth_frames.npz | Other | 33.2 MB | 591532f11f91 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529863462648287232/video_stream_head_pose_6dof.npz | Other | 6.0 MB | 551f8fdf2b58 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529864176904704000/head_left_camera_undistorted.mp4 | Other | 271.8 MB | 13231b202a26 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529864176904704000/head_right_camera_undistorted.mp4 | Other | 273.6 MB | ac127eb0f308 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529864176904704000/video_stream_audio_aac_stereo.m4a | Other | 2.6 MB | 2b90a332802d |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529864176904704000/video_stream_audio_opus_4ch.ogg | Other | 5.3 MB | 52ae4d57872d |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529864176904704000/video_stream_depth_frames.npz | Other | 33.1 MB | 728557216abd |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529864176904704000/video_stream_head_pose_6dof.npz | Other | 5.9 MB | e80a4616267d |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529864979463802880/head_left_camera_undistorted.mp4 | Other | 288.0 MB | ee27c3ff712d |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529864979463802880/head_right_camera_undistorted.mp4 | Other | 292.3 MB | e54e8fa4f700 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529864979463802880/video_stream_audio_aac_stereo.m4a | Other | 2.8 MB | 41fcf6a18a05 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529864979463802880/video_stream_audio_opus_4ch.ogg | Other | 5.7 MB | 0a011dd7579f |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529864979463802880/video_stream_depth_frames.npz | Other | 34.7 MB | cc78e363f68e |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529864979463802880/video_stream_head_pose_6dof.npz | Other | 6.3 MB | 202cf84f3369 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529865982728736768/head_left_camera_undistorted.mp4 | Other | 260.5 MB | aaa0fca9e092 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529865982728736768/head_right_camera_undistorted.mp4 | Other | 263.1 MB | 03fabad3be2f |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529865982728736768/video_stream_audio_aac_stereo.m4a | Other | 2.7 MB | 0eb4cfaba88c |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529865982728736768/video_stream_audio_opus_4ch.ogg | Other | 5.3 MB | a9d18c1f51a4 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529865982728736768/video_stream_depth_frames.npz | Other | 31.5 MB | e52b3cb28974 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529865982728736768/video_stream_head_pose_6dof.npz | Other | 5.9 MB | 31dcc003330a |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529866509193580544/head_left_camera_undistorted.mp4 | Other | 246.8 MB | a10999b05c80 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529866509193580544/head_right_camera_undistorted.mp4 | Other | 249.4 MB | 6f0cdcc2122b |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529866509193580544/video_stream_audio_aac_stereo.m4a | Other | 2.5 MB | 01eca161b383 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529866509193580544/video_stream_audio_opus_4ch.ogg | Other | 5.0 MB | f026d65bd16c |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529866509193580544/video_stream_depth_frames.npz | Other | 29.3 MB | c84c0170f5e4 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529866509193580544/video_stream_head_pose_6dof.npz | Other | 5.6 MB | 1668b553a143 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529867419776978944/head_left_camera_undistorted.mp4 | Other | 268.2 MB | aca89f51002a |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529867419776978944/head_right_camera_undistorted.mp4 | Other | 270.1 MB | 4552420e5f3e |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529867419776978944/video_stream_audio_aac_stereo.m4a | Other | 2.6 MB | 1fd70da6e836 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529867419776978944/video_stream_audio_opus_4ch.ogg | Other | 5.2 MB | c61540163559 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529867419776978944/video_stream_depth_frames.npz | Other | 31.6 MB | 978caf241feb |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529867419776978944/video_stream_head_pose_6dof.npz | Other | 5.8 MB | 20ffb42466e2 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529868382881452032/head_left_camera_undistorted.mp4 | Other | 236.2 MB | 2e0b27959c00 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529868382881452032/head_right_camera_undistorted.mp4 | Other | 236.9 MB | 6929895b6613 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529868382881452032/video_stream_audio_aac_stereo.m4a | Other | 2.2 MB | 9d5e24f8da3c |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529868382881452032/video_stream_audio_opus_4ch.ogg | Other | 4.5 MB | 382103e7f093 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529868382881452032/video_stream_depth_frames.npz | Other | 27.9 MB | 9b53d4a1a893 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529868382881452032/video_stream_head_pose_6dof.npz | Other | 5.0 MB | b97e109ce57b |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529868994742325248/head_left_camera_undistorted.mp4 | Other | 269.2 MB | cb037e8168e1 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529868994742325248/head_right_camera_undistorted.mp4 | Other | 271.5 MB | 72d4bc41f374 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529868994742325248/video_stream_audio_aac_stereo.m4a | Other | 2.6 MB | b7181ca4f9f2 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529868994742325248/video_stream_audio_opus_4ch.ogg | Other | 5.1 MB | 3cd47ecf8bbc |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529868994742325248/video_stream_depth_frames.npz | Other | 31.5 MB | 9f591b21cf09 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529868994742325248/video_stream_head_pose_6dof.npz | Other | 5.7 MB | adf5130b429f |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529869596482342912/head_left_camera_undistorted.mp4 | Other | 253.6 MB | 72aa3e57f7d7 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529869596482342912/head_right_camera_undistorted.mp4 | Other | 256.9 MB | 12b8c4691ba8 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529869596482342912/video_stream_audio_aac_stereo.m4a | Other | 2.5 MB | 84ef746445af |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529869596482342912/video_stream_audio_opus_4ch.ogg | Other | 5.0 MB | 428c137ec070 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529869596482342912/video_stream_depth_frames.npz | Other | 30.3 MB | 1fe821cee71d |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529869596482342912/video_stream_head_pose_6dof.npz | Other | 5.6 MB | 0ab03d5d6205 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529870119906316288/head_left_camera_undistorted.mp4 | Other | 252.3 MB | c113f0ce258b |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529870119906316288/head_right_camera_undistorted.mp4 | Other | 255.8 MB | aa2c7b68a81f |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529870119906316288/video_stream_audio_aac_stereo.m4a | Other | 2.5 MB | 8b969b563d79 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529870119906316288/video_stream_audio_opus_4ch.ogg | Other | 4.9 MB | 956b28d8bbdc |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529870119906316288/video_stream_depth_frames.npz | Other | 30.6 MB | 5ce167a9037c |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529870119906316288/video_stream_head_pose_6dof.npz | Other | 5.5 MB | 9f03c937eb84 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529870630139203584/head_left_camera_undistorted.mp4 | Other | 271.8 MB | 4390bd254ed7 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529870630139203584/head_right_camera_undistorted.mp4 | Other | 274.8 MB | 9e40542c2ec8 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529870630139203584/video_stream_audio_aac_stereo.m4a | Other | 2.6 MB | f83938d1ed79 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529870630139203584/video_stream_audio_opus_4ch.ogg | Other | 5.2 MB | 60d56b9906a5 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529870630139203584/video_stream_depth_frames.npz | Other | 32.2 MB | 7e5910090fab |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529870630139203584/video_stream_head_pose_6dof.npz | Other | 5.8 MB | 7b92b3128efd |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529871238439112704/head_left_camera_undistorted.mp4 | Other | 287.2 MB | 76cba436ddfc |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529871238439112704/head_right_camera_undistorted.mp4 | Other | 290.2 MB | e78eff02e688 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529871238439112704/video_stream_audio_aac_stereo.m4a | Other | 2.7 MB | 9cc8bf309b6d |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529871238439112704/video_stream_audio_opus_4ch.ogg | Other | 5.4 MB | 56b905581041 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529871238439112704/video_stream_depth_frames.npz | Other | 33.5 MB | aafe09bb55e1 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529871238439112704/video_stream_head_pose_6dof.npz | Other | 6.0 MB | f31e97e8b576 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529871794691903488/head_left_camera_undistorted.mp4 | Other | 299.3 MB | 1a396736c716 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529871794691903488/head_right_camera_undistorted.mp4 | Other | 303.1 MB | d945f3177bbf |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529871794691903488/video_stream_audio_aac_stereo.m4a | Other | 2.8 MB | 3592a270e563 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529871794691903488/video_stream_audio_opus_4ch.ogg | Other | 5.5 MB | 7d4d5d78fce3 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529871794691903488/video_stream_depth_frames.npz | Other | 34.8 MB | 003f07283a57 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529871794691903488/video_stream_head_pose_6dof.npz | Other | 6.2 MB | 58d6df414722 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529872325581737984/head_left_camera_undistorted.mp4 | Other | 272.2 MB | a221bec07a9f |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529872325581737984/head_right_camera_undistorted.mp4 | Other | 276.4 MB | fdeba5b2f559 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529872325581737984/video_stream_audio_aac_stereo.m4a | Other | 2.6 MB | 452633a90303 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529872325581737984/video_stream_audio_opus_4ch.ogg | Other | 5.2 MB | aebfdbd0ea09 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529872325581737984/video_stream_depth_frames.npz | Other | 32.3 MB | c8c9cfd99319 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529872325581737984/video_stream_head_pose_6dof.npz | Other | 5.8 MB | 74bc5ba2b76c |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529872968274939904/head_left_camera_undistorted.mp4 | Other | 306.8 MB | 7e90b0caa12b |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529872968274939904/head_right_camera_undistorted.mp4 | Other | 310.2 MB | 7314bc5796ab |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529872968274939904/video_stream_audio_aac_stereo.m4a | Other | 2.8 MB | 34395d625515 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529872968274939904/video_stream_audio_opus_4ch.ogg | Other | 5.6 MB | 56690f818836 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529872968274939904/video_stream_depth_frames.npz | Other | 35.8 MB | 91e848cb20af |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529872968274939904/video_stream_head_pose_6dof.npz | Other | 6.3 MB | 4b89ae5e53c1 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529873518240468992/head_left_camera_undistorted.mp4 | Other | 290.7 MB | ab7b06022746 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529873518240468992/head_right_camera_undistorted.mp4 | Other | 293.5 MB | 5674dda85283 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529873518240468992/video_stream_audio_aac_stereo.m4a | Other | 2.7 MB | 269509fa7667 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529873518240468992/video_stream_audio_opus_4ch.ogg | Other | 5.4 MB | 279483b4c718 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529873518240468992/video_stream_depth_frames.npz | Other | 33.6 MB | 0a75c044e652 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529873518240468992/video_stream_head_pose_6dof.npz | Other | 6.0 MB | 629680ba9a5b |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529874076321976320/head_left_camera_undistorted.mp4 | Other | 280.0 MB | 827b554963d6 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529874076321976320/head_right_camera_undistorted.mp4 | Other | 284.7 MB | 9478a5d23915 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529874076321976320/video_stream_audio_aac_stereo.m4a | Other | 2.7 MB | 5a5fc57e8043 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529874076321976320/video_stream_audio_opus_4ch.ogg | Other | 5.4 MB | aa3350686c51 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529874076321976320/video_stream_depth_frames.npz | Other | 33.2 MB | d151c8514086 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529874076321976320/video_stream_head_pose_6dof.npz | Other | 6.0 MB | b2719b6ef1d2 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529881578736455680/head_left_camera_undistorted.mp4 | Other | 275.4 MB | 8996545d5e92 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529881578736455680/head_right_camera_undistorted.mp4 | Other | 278.7 MB | 0c86435444c4 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529881578736455680/video_stream_audio_aac_stereo.m4a | Other | 2.6 MB | 385c3454b689 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529881578736455680/video_stream_audio_opus_4ch.ogg | Other | 5.2 MB | 2c58f474b39a |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529881578736455680/video_stream_depth_frames.npz | Other | 32.5 MB | 1549e7c9377b |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529881578736455680/video_stream_head_pose_6dof.npz | Other | 5.8 MB | b776350168ea |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529882125229101056/head_left_camera_undistorted.mp4 | Other | 269.8 MB | 8d86ed30195c |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529882125229101056/head_right_camera_undistorted.mp4 | Other | 272.1 MB | 60627cea9490 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529882125229101056/video_stream_audio_aac_stereo.m4a | Other | 2.6 MB | 2a344126cb44 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529882125229101056/video_stream_audio_opus_4ch.ogg | Other | 5.1 MB | 51e4b2a42f83 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529882125229101056/video_stream_depth_frames.npz | Other | 32.1 MB | 85ac47d9b3a4 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529882125229101056/video_stream_head_pose_6dof.npz | Other | 5.7 MB | 5ead8605c179 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529882640214134784/head_left_camera_undistorted.mp4 | Other | 265.1 MB | 97111a744a61 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529882640214134784/head_right_camera_undistorted.mp4 | Other | 268.0 MB | 9e9d5231bb88 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529882640214134784/video_stream_audio_aac_stereo.m4a | Other | 2.6 MB | f8b6f369ffb3 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529882640214134784/video_stream_audio_opus_4ch.ogg | Other | 5.2 MB | e08057b6341f |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529882640214134784/video_stream_depth_frames.npz | Other | 31.9 MB | 47a1f64bef0a |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529882640214134784/video_stream_head_pose_6dof.npz | Other | 5.8 MB | 125601ea74a5 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529883531122053120/head_left_camera_undistorted.mp4 | Other | 253.3 MB | fdcbee2d2c52 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529883531122053120/head_right_camera_undistorted.mp4 | Other | 256.2 MB | 4b37fee24f25 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529883531122053120/video_stream_audio_aac_stereo.m4a | Other | 2.5 MB | afa1db565976 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529883531122053120/video_stream_audio_opus_4ch.ogg | Other | 5.0 MB | 18efe108567e |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529883531122053120/video_stream_depth_frames.npz | Other | 30.4 MB | 221219ce4d87 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529883531122053120/video_stream_head_pose_6dof.npz | Other | 5.5 MB | 8e6d5835f920 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529884047373766656/head_left_camera_undistorted.mp4 | Other | 292.4 MB | 938d144ec4df |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529884047373766656/head_right_camera_undistorted.mp4 | Other | 297.1 MB | 7ed1adae71f0 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529884047373766656/video_stream_audio_aac_stereo.m4a | Other | 2.9 MB | e055d233ce56 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529884047373766656/video_stream_audio_opus_4ch.ogg | Other | 5.7 MB | 2baf4b925e9f |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529884047373766656/video_stream_depth_frames.npz | Other | 35.1 MB | a88fb5d65308 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529884047373766656/video_stream_head_pose_6dof.npz | Other | 6.4 MB | 76f18fe91df4 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529885293581176832/head_left_camera_undistorted.mp4 | Other | 250.2 MB | 6501d18793fc |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529885293581176832/head_right_camera_undistorted.mp4 | Other | 253.5 MB | 539327720d8d |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529885293581176832/video_stream_audio_aac_stereo.m4a | Other | 2.4 MB | c39fb39df2f6 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529885293581176832/video_stream_audio_opus_4ch.ogg | Other | 4.9 MB | a4bfe216f6e3 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529885293581176832/video_stream_depth_frames.npz | Other | 30.0 MB | 8e6a462267e2 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529885293581176832/video_stream_head_pose_6dof.npz | Other | 5.4 MB | 731b10b80ee9 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529885810566893568/head_left_camera_undistorted.mp4 | Other | 270.7 MB | 333d1d273f40 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529885810566893568/head_right_camera_undistorted.mp4 | Other | 274.4 MB | b7b41c528a9a |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529885810566893568/video_stream_audio_aac_stereo.m4a | Other | 2.6 MB | 47095fe13052 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529885810566893568/video_stream_audio_opus_4ch.ogg | Other | 5.3 MB | 4b56ec049f31 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529885810566893568/video_stream_depth_frames.npz | Other | 32.4 MB | bf97adbb0a19 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529885810566893568/video_stream_head_pose_6dof.npz | Other | 5.9 MB | 8369ad8fb482 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529886368803590144/head_left_camera_undistorted.mp4 | Other | 260.4 MB | 09681ac23e18 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529886368803590144/head_right_camera_undistorted.mp4 | Other | 263.7 MB | c3be723e291a |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529886368803590144/video_stream_audio_aac_stereo.m4a | Other | 2.5 MB | 6ef8bf3885d1 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529886368803590144/video_stream_audio_opus_4ch.ogg | Other | 5.0 MB | 4f1b839fd501 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529886368803590144/video_stream_depth_frames.npz | Other | 30.9 MB | 5d7c806f064b |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529886368803590144/video_stream_head_pose_6dof.npz | Other | 5.6 MB | 705bd0de1cbf |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529886891392897024/head_left_camera_undistorted.mp4 | Other | 265.5 MB | 422e104d3728 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529886891392897024/head_right_camera_undistorted.mp4 | Other | 269.0 MB | 9da8ced49fd3 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529886891392897024/video_stream_audio_aac_stereo.m4a | Other | 2.5 MB | 63803a138970 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529886891392897024/video_stream_audio_opus_4ch.ogg | Other | 5.0 MB | 18f0f093ac5b |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529886891392897024/video_stream_depth_frames.npz | Other | 31.1 MB | 00453fda7376 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529886891392897024/video_stream_head_pose_6dof.npz | Other | 5.6 MB | cd70b1a55ea3 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529887391291019264/head_left_camera_undistorted.mp4 | Other | 274.2 MB | f9fd0e44915d |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529887391291019264/head_right_camera_undistorted.mp4 | Other | 278.0 MB | 24288a5067e2 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529887391291019264/video_stream_audio_aac_stereo.m4a | Other | 2.6 MB | 6ea29c34f406 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529887391291019264/video_stream_audio_opus_4ch.ogg | Other | 5.2 MB | 974617574b7d |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529887391291019264/video_stream_depth_frames.npz | Other | 32.0 MB | 3964a107e0a3 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529887391291019264/video_stream_head_pose_6dof.npz | Other | 5.8 MB | 8d98845fa945 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529887895798681600/head_left_camera_undistorted.mp4 | Other | 273.8 MB | f7e867e7369b |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529887895798681600/head_right_camera_undistorted.mp4 | Other | 277.8 MB | c856446d211b |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529887895798681600/video_stream_audio_aac_stereo.m4a | Other | 2.6 MB | 5091429f79a3 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529887895798681600/video_stream_audio_opus_4ch.ogg | Other | 5.2 MB | 448d96f48ce8 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529887895798681600/video_stream_depth_frames.npz | Other | 32.3 MB | d6a16610a833 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529887895798681600/video_stream_head_pose_6dof.npz | Other | 5.8 MB | 3f766ee953bc |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529888493906432000/head_left_camera_undistorted.mp4 | Other | 276.1 MB | e5bd885c212d |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529888493906432000/head_right_camera_undistorted.mp4 | Other | 280.2 MB | a77399282576 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529888493906432000/video_stream_audio_aac_stereo.m4a | Other | 2.6 MB | 7f0b33595164 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529888493906432000/video_stream_audio_opus_4ch.ogg | Other | 5.2 MB | 7a4a9e462eb3 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529888493906432000/video_stream_depth_frames.npz | Other | 32.7 MB | 1dc498ad65ca |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529888493906432000/video_stream_head_pose_6dof.npz | Other | 5.8 MB | 9fe64f4a39a9 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529889342288302080/head_left_camera_undistorted.mp4 | Other | 296.4 MB | 23f09a8e13d4 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529889342288302080/head_right_camera_undistorted.mp4 | Other | 302.9 MB | 77c37656c3e9 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529889342288302080/video_stream_audio_aac_stereo.m4a | Other | 2.9 MB | 4bf90e8f098d |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529889342288302080/video_stream_audio_opus_4ch.ogg | Other | 5.7 MB | c8f64febe56a |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529889342288302080/video_stream_depth_frames.npz | Other | 35.7 MB | 92aaf34be4c7 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529889342288302080/video_stream_head_pose_6dof.npz | Other | 6.4 MB | 2880a9aade3c |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529889921261637632/head_left_camera_undistorted.mp4 | Other | 271.8 MB | 5fe090f2f913 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529889921261637632/head_right_camera_undistorted.mp4 | Other | 276.3 MB | 2ff4b78149ab |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529889921261637632/video_stream_audio_aac_stereo.m4a | Other | 2.6 MB | 93bd2a0f9ae9 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529889921261637632/video_stream_audio_opus_4ch.ogg | Other | 5.2 MB | cfe0ffb0ff01 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529889921261637632/video_stream_depth_frames.npz | Other | 32.4 MB | 74b3d1f6f6cc |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529889921261637632/video_stream_head_pose_6dof.npz | Other | 5.9 MB | 412d1d1ecc84 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529890442668150784/head_left_camera_undistorted.mp4 | Other | 262.0 MB | 21423d344a0d |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529890442668150784/head_right_camera_undistorted.mp4 | Other | 264.8 MB | b0508b98bfcb |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529890442668150784/video_stream_audio_aac_stereo.m4a | Other | 2.4 MB | 1271c516b659 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529890442668150784/video_stream_audio_opus_4ch.ogg | Other | 4.9 MB | 697826136989 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529890442668150784/video_stream_depth_frames.npz | Other | 30.6 MB | 4d09069ca825 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529890442668150784/video_stream_head_pose_6dof.npz | Other | 5.5 MB | f4e994be950f |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529890991048232960/head_left_camera_undistorted.mp4 | Other | 241.6 MB | 13ac574a4f30 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529890991048232960/head_right_camera_undistorted.mp4 | Other | 245.1 MB | 4088e5674928 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529890991048232960/video_stream_audio_aac_stereo.m4a | Other | 2.3 MB | 2cabc4abbb36 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529890991048232960/video_stream_audio_opus_4ch.ogg | Other | 4.5 MB | ae5376755ffe |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529890991048232960/video_stream_depth_frames.npz | Other | 28.5 MB | 741e8d205f72 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529890991048232960/video_stream_head_pose_6dof.npz | Other | 5.1 MB | e6b2b89547b9 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529891519731863552/head_left_camera_undistorted.mp4 | Other | 260.6 MB | 29241a92851c |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529891519731863552/head_right_camera_undistorted.mp4 | Other | 264.2 MB | bb4673d29beb |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529891519731863552/video_stream_audio_aac_stereo.m4a | Other | 2.4 MB | 5752816a2392 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529891519731863552/video_stream_audio_opus_4ch.ogg | Other | 4.9 MB | 03e2f1591172 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529891519731863552/video_stream_depth_frames.npz | Other | 30.7 MB | cecb140a3ae3 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529891519731863552/video_stream_head_pose_6dof.npz | Other | 5.5 MB | b2d193c9da70 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529892093000945664/head_left_camera_undistorted.mp4 | Other | 261.3 MB | 59a983781ca8 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529892093000945664/head_right_camera_undistorted.mp4 | Other | 265.1 MB | 17ffef6abe72 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529892093000945664/video_stream_audio_aac_stereo.m4a | Other | 2.5 MB | 012bd7fc3961 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529892093000945664/video_stream_audio_opus_4ch.ogg | Other | 4.9 MB | 8fb961b64b80 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529892093000945664/video_stream_depth_frames.npz | Other | 30.4 MB | ada301aa21fa |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529892093000945664/video_stream_head_pose_6dof.npz | Other | 5.5 MB | f275a53c414b |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529892674591526912/head_left_camera_undistorted.mp4 | Other | 282.4 MB | 8b9545ae4966 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529892674591526912/head_right_camera_undistorted.mp4 | Other | 286.5 MB | 5954318b3029 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529892674591526912/video_stream_audio_aac_stereo.m4a | Other | 2.6 MB | 7f501a79d9c1 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529892674591526912/video_stream_audio_opus_4ch.ogg | Other | 5.2 MB | ac5d78fd367e |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529892674591526912/video_stream_depth_frames.npz | Other | 32.8 MB | 49b9bf79c062 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529892674591526912/video_stream_head_pose_6dof.npz | Other | 5.8 MB | b0a4f180a77d |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529893191401082880/head_left_camera_undistorted.mp4 | Other | 270.7 MB | 9c1fddaf6f64 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529893191401082880/video_stream_audio_aac_stereo.m4a | Other | 2.5 MB | 2695a17c1439 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529893191401082880/video_stream_audio_opus_4ch.ogg | Other | 5.1 MB | 6d66929b3a8b |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529893191401082880/video_stream_depth_frames.npz | Other | 31.8 MB | 8f3c39e0a7cd |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529893191401082880/video_stream_head_pose_6dof.npz | Other | 5.7 MB | 310689f6eab8 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529893696080711680/head_left_camera_undistorted.mp4 | Other | 254.9 MB | c0486a0c5123 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529893696080711680/head_right_camera_undistorted.mp4 | Other | 259.1 MB | b34eca5b3b1c |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529893696080711680/video_stream_audio_aac_stereo.m4a | Other | 2.4 MB | a5e6318b84d2 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529893696080711680/video_stream_audio_opus_4ch.ogg | Other | 4.9 MB | ec04ff1ac4f5 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529893696080711680/video_stream_depth_frames.npz | Other | 30.3 MB | 3d2fb6ced068 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529893696080711680/video_stream_head_pose_6dof.npz | Other | 5.5 MB | 0202816f4c5c |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529894172918550528/head_left_camera_undistorted.mp4 | Other | 257.6 MB | c3e7fb27ea88 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529894172918550528/head_right_camera_undistorted.mp4 | Other | 260.8 MB | 897984f937d1 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529894172918550528/video_stream_audio_aac_stereo.m4a | Other | 2.4 MB | 893d44c2034c |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529894172918550528/video_stream_audio_opus_4ch.ogg | Other | 4.9 MB | 32e3f73fa238 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529894172918550528/video_stream_depth_frames.npz | Other | 30.3 MB | fbd2fa611e5d |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529894172918550528/video_stream_head_pose_6dof.npz | Other | 5.5 MB | 2b723fb176a0 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529894661244588032/head_right_camera_undistorted.mp4 | Other | 254.3 MB | 2338a5815abf |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529894661244588032/video_stream_audio_aac_stereo.m4a | Other | 2.4 MB | eeb5ea2cb74e |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529894661244588032/video_stream_audio_opus_4ch.ogg | Other | 4.7 MB | 9542fa8984f0 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529894661244588032/video_stream_depth_frames.npz | Other | 29.5 MB | 7259720c3c14 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529894661244588032/video_stream_head_pose_6dof.npz | Other | 5.3 MB | d8e534cc2f2c |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529895253744553984/head_left_camera_undistorted.mp4 | Other | 281.1 MB | 981c08f414de |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529895253744553984/head_right_camera_undistorted.mp4 | Other | 285.0 MB | 8f6923936050 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529895253744553984/video_stream_audio_aac_stereo.m4a | Other | 2.5 MB | 7c99d9c54d8d |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529895253744553984/video_stream_audio_opus_4ch.ogg | Other | 5.1 MB | 2e1ddb553844 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529895253744553984/video_stream_depth_frames.npz | Other | 32.6 MB | f49c5b53911a |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529895253744553984/video_stream_head_pose_6dof.npz | Other | 5.7 MB | 162fa3ad2089 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529895796709789696/head_left_camera_undistorted.mp4 | Other | 286.5 MB | dd2a9e64a4f5 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529895796709789696/head_right_camera_undistorted.mp4 | Other | 290.3 MB | 09cdfe98d9a6 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529895796709789696/video_stream_audio_aac_stereo.m4a | Other | 2.6 MB | 6460d84296b0 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529895796709789696/video_stream_audio_opus_4ch.ogg | Other | 5.3 MB | 1d37ef319f5c |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529895796709789696/video_stream_depth_frames.npz | Other | 33.6 MB | b58b72af7499 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529895796709789696/video_stream_head_pose_6dof.npz | Other | 5.9 MB | a4fe92194b83 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529896402807689216/head_left_camera_undistorted.mp4 | Other | 250.8 MB | 7bc7174903b4 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529896402807689216/head_right_camera_undistorted.mp4 | Other | 254.4 MB | 211bea1d0dbf |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529896402807689216/video_stream_audio_aac_stereo.m4a | Other | 2.3 MB | 1648d140e60f |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529896402807689216/video_stream_audio_opus_4ch.ogg | Other | 4.7 MB | 8f23b449cf22 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529896402807689216/video_stream_depth_frames.npz | Other | 29.6 MB | d1a24e54145a |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529896402807689216/video_stream_head_pose_6dof.npz | Other | 5.3 MB | e7f5a14918da |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529897406370418688/head_left_camera_undistorted.mp4 | Other | 277.4 MB | 99048165abbf |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529897406370418688/head_right_camera_undistorted.mp4 | Other | 281.0 MB | a5bffe95c79b |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529897406370418688/video_stream_audio_aac_stereo.m4a | Other | 2.6 MB | a609d81e63b6 |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529897406370418688/video_stream_audio_opus_4ch.ogg | Other | 5.1 MB | de49a170effc |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529897406370418688/video_stream_depth_frames.npz | Other | 32.4 MB | 2db86454877c |
| hengxuan-commercial-bank-retail-area/correction-of-shelf-snacks-different-categories-of-duck-products-are-mixed/case_1529897406370418688/video_stream_head_pose_6dof.npz | Other | 5.8 MB | 24cd7e3c5a94 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529064021917962240/head_left_camera_undistorted.mp4 | Other | 196.9 MB | a1afff24e0ad |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529064021917962240/head_right_camera_undistorted.mp4 | Other | 175.0 MB | 8ec87f25c45f |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529064021917962240/video_stream_audio_aac_stereo.m4a | Other | 3.0 MB | cec71c4966ed |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529064021917962240/video_stream_audio_opus_4ch.ogg | Other | 6.0 MB | 361148bca342 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529064021917962240/video_stream_depth_frames.npz | Other | 35.9 MB | 40edb682b3fa |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529064021917962240/video_stream_head_pose_6dof.npz | Other | 6.4 MB | 0ee862bc4513 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529065052898856960/head_left_camera_undistorted.mp4 | Other | 176.0 MB | 485957e15678 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529065052898856960/head_right_camera_undistorted.mp4 | Other | 156.3 MB | 7c4a5129bf24 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529065052898856960/video_stream_audio_aac_stereo.m4a | Other | 2.6 MB | e054e00bfab6 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529065052898856960/video_stream_audio_opus_4ch.ogg | Other | 5.3 MB | e8064b85bc0f |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529065052898856960/video_stream_depth_frames.npz | Other | 31.6 MB | 2be618c4d1fa |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529065052898856960/video_stream_head_pose_6dof.npz | Other | 5.7 MB | 3050c153435a |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529066456669491200/head_left_camera_undistorted.mp4 | Other | 159.2 MB | f3ad70ede9da |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529066456669491200/head_right_camera_undistorted.mp4 | Other | 138.4 MB | 4d2afe5b0e2d |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529066456669491200/video_stream_audio_aac_stereo.m4a | Other | 2.4 MB | 747639e1fd22 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529066456669491200/video_stream_audio_opus_4ch.ogg | Other | 4.8 MB | 881a550da7f5 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529066456669491200/video_stream_depth_frames.npz | Other | 28.4 MB | 2dbc5a0e3ddc |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529066456669491200/video_stream_head_pose_6dof.npz | Other | 5.1 MB | 8fbff4668c31 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529067018160967680/head_left_camera_undistorted.mp4 | Other | 193.8 MB | 3f1220c2abaa |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529067018160967680/head_right_camera_undistorted.mp4 | Other | 168.0 MB | 8ecf37a744b3 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529067018160967680/video_stream_audio_aac_stereo.m4a | Other | 2.9 MB | ae96d6373fbb |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529067018160967680/video_stream_audio_opus_4ch.ogg | Other | 5.8 MB | b413263d39d0 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529067018160967680/video_stream_depth_frames.npz | Other | 34.4 MB | f3d85ccd0819 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529067018160967680/video_stream_head_pose_6dof.npz | Other | 6.2 MB | f3dde0d3ccd5 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529067661869191168/head_left_camera_undistorted.mp4 | Other | 193.6 MB | bb141e02d70b |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529067661869191168/head_right_camera_undistorted.mp4 | Other | 167.9 MB | 539ce24c0007 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529067661869191168/video_stream_audio_aac_stereo.m4a | Other | 2.8 MB | 14881c105a92 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529067661869191168/video_stream_audio_opus_4ch.ogg | Other | 5.7 MB | 6a41fb3d20b8 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529067661869191168/video_stream_depth_frames.npz | Other | 34.1 MB | c5496f15e70a |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529067661869191168/video_stream_head_pose_6dof.npz | Other | 6.1 MB | d9b630456fd1 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529068249180803072/head_left_camera_undistorted.mp4 | Other | 186.0 MB | 0b569f99c65e |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529068249180803072/head_right_camera_undistorted.mp4 | Other | 161.2 MB | 0b00c1fe06af |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529068249180803072/video_stream_audio_aac_stereo.m4a | Other | 2.7 MB | bd3fa35cef79 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529068249180803072/video_stream_audio_opus_4ch.ogg | Other | 5.5 MB | a3707409ea04 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529068249180803072/video_stream_depth_frames.npz | Other | 32.6 MB | 028aa8958f9d |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529068249180803072/video_stream_head_pose_6dof.npz | Other | 5.9 MB | 6059396a82c4 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529068969036615680/head_left_camera_undistorted.mp4 | Other | 199.3 MB | 0dd2055ea68b |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529068969036615680/head_right_camera_undistorted.mp4 | Other | 171.0 MB | 881f7392727b |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529068969036615680/video_stream_audio_aac_stereo.m4a | Other | 2.9 MB | 96892ef3d069 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529068969036615680/video_stream_audio_opus_4ch.ogg | Other | 5.8 MB | 0496d35a3317 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529068969036615680/video_stream_depth_frames.npz | Other | 35.2 MB | a0290176770b |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529068969036615680/video_stream_head_pose_6dof.npz | Other | 6.3 MB | ebcda7b9f028 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529069673012793344/head_left_camera_undistorted.mp4 | Other | 187.4 MB | 27f37332a152 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529069673012793344/head_right_camera_undistorted.mp4 | Other | 161.5 MB | 1825b03581ee |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529069673012793344/video_stream_audio_aac_stereo.m4a | Other | 2.8 MB | 17316eb926cd |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529069673012793344/video_stream_audio_opus_4ch.ogg | Other | 5.6 MB | 6292d279ff77 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529069673012793344/video_stream_depth_frames.npz | Other | 33.3 MB | 4b2fd06dcc4f |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529069673012793344/video_stream_head_pose_6dof.npz | Other | 6.0 MB | 43a9bd6765b1 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529070246827134976/head_left_camera_undistorted.mp4 | Other | 184.6 MB | 5f46561e47e8 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529070246827134976/head_right_camera_undistorted.mp4 | Other | 159.2 MB | 46b12adbc0ef |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529070246827134976/video_stream_audio_aac_stereo.m4a | Other | 2.8 MB | 11b960a120b4 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529070246827134976/video_stream_audio_opus_4ch.ogg | Other | 5.6 MB | e181df92fc70 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529070246827134976/video_stream_depth_frames.npz | Other | 33.3 MB | ee81398a0c96 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529070246827134976/video_stream_head_pose_6dof.npz | Other | 5.9 MB | 8fbf6ff66a4b |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529070880393531392/head_left_camera_undistorted.mp4 | Other | 188.7 MB | a055825c2ac7 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529070880393531392/head_right_camera_undistorted.mp4 | Other | 162.7 MB | 2aabafd28be3 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529070880393531392/video_stream_audio_aac_stereo.m4a | Other | 2.8 MB | 9fe6a0f47f48 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529070880393531392/video_stream_audio_opus_4ch.ogg | Other | 5.7 MB | a4032693ee08 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529070880393531392/video_stream_depth_frames.npz | Other | 33.8 MB | 969395efde4c |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529070880393531392/video_stream_head_pose_6dof.npz | Other | 6.0 MB | 37907fd25f76 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529072241780723712/head_left_camera_undistorted.mp4 | Other | 196.9 MB | 9fbd084704e5 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529072241780723712/head_right_camera_undistorted.mp4 | Other | 169.4 MB | ba14c4fadb7e |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529072241780723712/video_stream_audio_aac_stereo.m4a | Other | 2.9 MB | 95270d8a30a3 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529072241780723712/video_stream_audio_opus_4ch.ogg | Other | 5.8 MB | a1eb2d101d96 |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529072241780723712/video_stream_depth_frames.npz | Other | 34.9 MB | d52161b23efa |
| hengxuan-commercial-bank-retail-area/organize-and-replenish-snacks/case_1529072241780723712/video_stream_head_pose_6dof.npz | Other | 6.2 MB | 15d1115fb0ac |
License and Download
- License
- cc-by-4.0
- Access
- No access gate
Released by Jiu through its official repository on Hugging Face. Read the license.