All Projects → umautobots → pedx

umautobots / pedx

Licence: MIT license
Python tools for working with PedX dataset.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to pedx

Awesome-Vision-Transformer-Collection
Variants of Vision Transformer and its downstream tasks
Stars: ✭ 124 (+376.92%)
Mutual labels:  tracking, segmentation
Co Fusion
Co-Fusion: Real-time Segmentation, Tracking and Fusion of Multiple Objects
Stars: ✭ 400 (+1438.46%)
Mutual labels:  tracking, segmentation
Sipmask
SipMask: Spatial Information Preservation for Fast Image and Video Instance Segmentation (ECCV2020)
Stars: ✭ 255 (+880.77%)
Mutual labels:  tracking, segmentation
Dipy
DIPY is the paragon 3D/4D+ imaging library in Python. Contains generic methods for spatial normalization, signal processing, machine learning, statistical analysis and visualization of medical images. Additionally, it contains specialized methods for computational anatomy including diffusion, perfusion and structural imaging.
Stars: ✭ 417 (+1503.85%)
Mutual labels:  tracking, segmentation
Alphapose
Real-Time and Accurate Full-Body Multi-Person Pose Estimation&Tracking System
Stars: ✭ 5,697 (+21811.54%)
Mutual labels:  tracking, keypoints
Trackit
[ECCV'20] Ocean: Object-aware Anchor-Free Tracking
Stars: ✭ 424 (+1530.77%)
Mutual labels:  tracking, segmentation
Maskfusion
MaskFusion: Real-Time Recognition, Tracking and Reconstruction of Multiple Moving Objects
Stars: ✭ 404 (+1453.85%)
Mutual labels:  tracking, segmentation
Deep Learning For Tracking And Detection
Collection of papers, datasets, code and other resources for object tracking and detection using deep learning
Stars: ✭ 1,920 (+7284.62%)
Mutual labels:  tracking, segmentation
pcan
Prototypical Cross-Attention Networks for Multiple Object Tracking and Segmentation, NeurIPS 2021 Spotlight
Stars: ✭ 294 (+1030.77%)
Mutual labels:  tracking, segmentation
kaggle-satellite-imagery-feature-detection
Satellite Imagery Feature Detection (68 out of 419)
Stars: ✭ 29 (+11.54%)
Mutual labels:  segmentation
jeelizPupillometry
Real-time pupillometry in the web browser using a 4K webcam video feed processed by this WebGL/Javascript library. 2 demo experiments are included.
Stars: ✭ 78 (+200%)
Mutual labels:  tracking
MONAILabel
MONAI Label is an intelligent open source image labeling and learning tool.
Stars: ✭ 249 (+857.69%)
Mutual labels:  segmentation
Visual-Tracking-Development
Recent Trackers
Stars: ✭ 93 (+257.69%)
Mutual labels:  tracking
LEDNet
This is an unofficial implemention of LEDNet https://arxiv.org/abs/1905.02423
Stars: ✭ 37 (+42.31%)
Mutual labels:  segmentation
Dynamic ORB SLAM2
Visual SLAM system that can identify and exclude dynamic objects.
Stars: ✭ 89 (+242.31%)
Mutual labels:  segmentation
LightNet
LightNet: Light-weight Networks for Semantic Image Segmentation (Cityscapes and Mapillary Vistas Dataset)
Stars: ✭ 710 (+2630.77%)
Mutual labels:  segmentation
tracking-location-provider-android
Tracking the android mobile and animating marker smoothly in Google Maps. Tracking has been done both in foreground and background. Tested in Android Oreo 8.1, Android 6.0 and Android 5.0
Stars: ✭ 37 (+42.31%)
Mutual labels:  tracking
medical image segmentation
Medical image segmentation ( Eye vessel segmentation)
Stars: ✭ 90 (+246.15%)
Mutual labels:  segmentation
craft-webperf
Webperf helps you build & maintain high quality websites through Real User Measurement of your website's performance
Stars: ✭ 24 (-7.69%)
Mutual labels:  tracking
DSeg
Invariant Superpixel Features for Object Detection
Stars: ✭ 18 (-30.77%)
Mutual labels:  segmentation

PedX

This package provides basic tools for working with the PedX dataset [1] in Python.

Data

The dataset is available from the webpage (http://pedx.io/downloads/). You can download the entire dataset by running the script download_data.py. The data will be organized as in the following directory tree.

Directory Tree

pedx/
├── pedx/
├── data/
│   ├── images/
│   │   ├── 20171130T2000/
│   │   ├── 20171207T2024/
│   │   └── 20171212T2030/
│   │       ├── ylw79D0/
│   │       ├── red707B/
│   │       ├── blu79CF/
│   │       └── grn43E3/
│   │           └── 20171212T2030_grn43E3_0001234.jpg
│   ├── pointclouds/
│   │   ├── 20171130T2000/
│   │   ├── 20171207T2024/
│   │   └── 20171212T2030/
│   │       └── 20171212T2030_0001234.ply
│   ├── labels/
│   |   ├── 2d/
│   |   │   ├── 20171130T2000/
│   |   │   ├── 20171207T2024/
│   |   │   └── 20171212T2030/
│   |   └── 3d/
│   |       ├── smpl/
│   |       │   ├── 20171130T2000/
│   |       │   ├── 20171207T2024/
│   |       |   └── 20171212T2030/
│   |       └── segment/
│   |           ├── 20171130T2000/
│   |           ├── 20171207T2024/
│   |           └── 20171212T2030/
│   ├── calib/
│   │   ├── calib_cam_to_cam_blu79CF-grn43E3.txt
│   │   ├── calib_cam_to_cam_blu79CF-red707B.txt
│   │   ├── calib_cam_to_range_blu79CF.txt
│   │   └── calib_cam_to_range_ylw79D0.txt
│   └── timestamps/
│       ├── timestamps-images-20171130T2000.txt
│       ├── timestamps-images-20171207T2024.txt
│       ├── timestamps-images-20171212T2030.txt
│       ├── timestamps-pointclouds-20171130T2000.txt
│       ├── timestamps-pointclouds-20171207T2024.txt
│       └── timestamps-pointclouds-20171212T2030.txt
├── demo.py
└── README.md
  • data contains the rectified images, point clouds, calibrated parameters and frame metadata.
  • All the manual/automatic annotations are in data/labels. 2D/3D annotations are provided in an instance-level.
  • We provide 3 video sequences captured at different 4-way stop intersections on different dates.
    • Capture dates: 20171130T2000, 20171207T2024, 20171212T2030
  • The cameras are color-coded for our convenience.
    • Cameras: ylw79D0, red707B, blu79CF, grn43E3
    • Stereo pairs: ylw79D0-red707B, blu79CF-grn43E3 (left-right camera)
  • We provide a simple Python demo script: demo.py. pedx provides Python helper functions to load and visualize the data. We have tested the script with the Python packages listed in requirements.txt.

Contact

Email: [email protected]

References

[1] Kim, Wonhui, et al. "Pedx: Benchmark dataset for metric 3d pose estimation of pedestrians in complex urban intersections." IEEE Robotics and Automation Letters (2019). http://pedx.io/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].