OCHuman-Pose / README.md
purkrmir's picture
Update README.md
b0f6a7b verified
---
pretty_name: OCHuman-Pose Dataset
dataset_info:
features:
- name: images
dtype: string
- name: annotations
dtype: coco
language:
- en
license: mit
task_categories:
- keypoint-detection
- object-detection
task_ids:
- pose-estimation
tags:
- computer-vision
- human-pose-estimation
- crowded-scenes
- occlusion
- coco-format
- ochuman
- bboxmaskpose
size_categories:
- 10K<n<100K
---
<div align="center">
<div style="display: flex; justify-content: space-between; align-items: center;">
<img src="assets/000007.jpg" style="width: 32.22%;">
<img src="assets/000028.jpg" style="width: 22.56%;">
<img src="assets/000116.jpg" style="width: 35.21%;">
</div>
<p style="font-size: 14px; margin-top: 2px;">
Examples from OCHuman-Pose: original OCHuman instances (orange) and new OCHuman-Pose instances (magenta and blue).
</p>
</div>
# OCHuman-Pose
OCHuman-Pose is an annotation extension of the original [OCHuman](https://github.com/liruilong940607/ochumanapi) dataset for evaluating human pose estimation in crowded and heavily occluded scenes.
This dataset **does not add new images**. It only adds and restructures annotations for images from the original OCHuman dataset.
To use this dataset, you must download the images separately from the original OCHuman source:
- Original OCHuman dataset/API: https://github.com/liruilong940607/ochumanapi
- BBoxMaskPose project page: https://mirapurkrabek.github.io/BBox-Mask-Pose/index.html
- BBoxMaskPose v2 paper: https://arxiv.org/abs/2601.15200
## Dataset Summary
OCHuman was originally designed for the pose-to-segmentation task. Because of this, many visible people in the images were not part of the standard pose evaluation annotations. This causes problems when OCHuman is used as a general in-the-wild crowded human pose benchmark: detections of real but unannotated people may be counted as false positives.
OCHuman-Pose addresses this by adding COCO-style keypoint annotations to previously missing person instances in the original OCHuman images.
Important points:
- **No new images are added.**
- **Images must be downloaded from the original OCHuman dataset.**
- **Annotations are provided in COCO format.**
- **OCHuman-Pose contains bounding boxes and COCO-style keypoints.**
- **OCHuman-Pose does not contain segmentation masks.**
- Original OCHuman masks can theoretically be mapped to the subset of original instances, but they are intentionally omitted here to avoid confusion.
- The dataset is intended primarily for **evaluation**, not training.
## Dataset Statistics
### Original OCHuman vs. OCHuman-Pose
| Split | Images | Original OCHuman keypoint instances | OCHuman-Pose keypoint instances | Added / reinstated keypoint instances |
|---|---:|---:|---:|---:|
| validation | 2,500 | 4,291 | 6,546 | +2,255 |
| test | 2,231 | 3,819 | 5,863 | +2,044 |
| total | 4,731 | 8,110 | 12,409 | +4,299 |
OCHuman-Pose adds more than 50% additional pose instances compared to the original OCHuman pose annotations.
## Annotation Format
The annotations follow the COCO keypoint format.
Each person annotation contains:
- `bbox`
- `keypoints`
- `num_keypoints`
- `category_id`
- standard COCO-style image and annotation metadata
The keypoints follow the standard 17-keypoint COCO human pose layout:
1. nose
2. left eye
3. right eye
4. left ear
5. right ear
6. left shoulder
7. right shoulder
8. left elbow
9. right elbow
10. left wrist
11. right wrist
12. left hip
13. right hip
14. left knee
15. right knee
16. left ankle
17. right ankle
## Annotation Process
The annotation process used:
- two professional full-time in-house annotators,
- double annotation of a subset of instances to estimate annotation variance,
- visual inspection of a random subset by a researcher experienced in human pose estimation,
- a dedicated 2D human pose annotation GUI designed to reduce common annotation errors such as left-right flips.
The dataset does not add new bounding boxes beyond those already present in OCHuman. Therefore, very small or insignificant background people may still be unannotated.
Here is a comparison of our annotation quality (blue) and COCO (orange). Quality measured as per-keypoint sigma.
![image](https://cdn-uploads.huggingface.co/production/uploads/64bfa064b7375f6b84ad58e9/-rEJj11iZYIF1tt4GXt1i.png)
## Intended Use
OCHuman-Pose is intended for:
- evaluation of 2D human pose estimation,
- evaluation of crowded-scene human pose estimation,
- analysis of pose estimation under occlusion and close person-person interaction,
- comparison of top-down, bottom-up, detector-free, and iterative pose-estimation methods.
The dataset is especially useful when evaluating systems that detect people first and then estimate pose, because it reduces the false-positive problem caused by missing person annotations in the original OCHuman benchmark.
## Not Intended Use
OCHuman-Pose is **not intended for**:
- training large pose-estimation models,
- segmentation evaluation,
- pose-to-segmentation evaluation,
- mask detection,
- human parsing,
- evaluating segmentation mAP.
The dataset has no training split and is relatively small. It should be treated primarily as an evaluation benchmark.
## Dataset Splits
The dataset follows the original OCHuman validation and test split structure:
| Split | Images | Pose annotations |
|---|---:|---:|
| validation | 2,500 | 6,546 |
| test | 2,231 | 5,863 |
The original OCHuman dataset contains 5,081 images, but only 4,731 are used here, following the original evaluated OCHuman subset. The remaining ignored images are not included in OCHuman-Pose.
## Results Reported in BBoxMaskPose v2
The BBoxMaskPose v2 paper reports that evaluation on OCHuman-Pose better reflects real crowded-scene pose performance than the original OCHuman annotations.
For example, ViTPose-B with ground-truth bounding boxes and detected bounding boxes shows a much smaller gap on OCHuman-Pose than on the original OCHuman benchmark:
| Input boxes | OCHuman val AP | OCHuman test AP | OCHuman-Pose val AP | OCHuman-Pose test AP |
|---|---:|---:|---:|---:|
| Ground-truth boxes | 90.9 | 91.0 | 86.4 | 86.2 |
| Detected boxes | 44.5 | 44.1 | 75.3 | 76.1 |
This suggests that the original OCHuman evaluation partly confounds pose-estimation errors with missing annotation effects.
## Loading the Data
This dataset provides annotations only. The images are not redistributed.
Recommended usage:
1. Download the original OCHuman images from:
https://github.com/liruilong940607/ochumanapi
2. Download the OCHuman-Pose annotations from this Hugging Face repository.
3. Place or symlink the original images so that the `file_name` fields in the COCO-format annotation files resolve correctly.
4. Use [`pycocotools`](https://pypi.org/project/pycocotools/) or [`exococotools`](https://pypi.org/project/exococotools/1.0.0/) or [`OCHumanApi`](https://github.com/liruilong940607/ochumanapi) for COCO-like evaluation.
Example structure:
```text
OCHuman-Pose/
├── annotations/
│ ├── ochuman_pose_val.json
│ └── ochuman_pose_test.json
└── images/
└── ... original OCHuman images ...
```
## Citation
If you use OCHuman-Pose, please cite BBoxMaskPose v2:
```bibtex
@article{purkrabek2026bboxmaskposev2,
title = {BBoxMaskPose v2: Expanding Mutual Conditioning to 3D},
author = {Purkrabek, Miroslav and Kolomiiets, Constantin and Matas, Jiri},
journal = {arXiv preprint arXiv:2601.15200},
year = {2026}
}