cortexdatalabs/MCAP-Housing
MCAP-Housing: Egocentric RGB-D Household Manipulation Dataset MCAP-Housing is an egocentric RGB + Depth + IMU dataset of human household manipulation activities, packaged in robotics-native .mcap (ROS2) format. Designed for robotics research, policy learning, and embodied AI. This is a sample release. We can scale to custom episode counts, new activities, and specific environments on request. Contact us to discuss your requirements. Quick Facts Property… See the full description on the dataset page: https://huggingface.co/datasets/cortexdatalabs/MCAP-Housing.
MCAP-Housing: Egocentric RGB-D Household Manipulation Dataset
MCAP-Housing is an egocentric RGB + Depth + IMU dataset of human household manipulation activities, packaged in robotics-native .mcap (ROS2) format. Designed for robotics research, policy learning, and embodied AI.
This is a sample release. We can scale to custom episode counts, new activities, and specific environments on request. Contact us to discuss your requirements.
Quick Facts
What's Included Per Sequence
Each .mcap file contains 11 synchronized ROS2 topics:
Available on Request
Beyond the raw synchronized streams, the following are available on request:
- Ego-motion / trajectories (VIO-style) — smooth, drift-corrected camera trajectories
- SLAM reconstructions — dense maps, optimized trajectories, keyframe selection
- Accurate body pose estimation — full skeletal tracking during manipulation
- State-of-the-art 3D hand landmarks — true 3D hand joint positions, not 2D reprojections
- QC-validated data — quality-checked sequences with automated scoring for frame drops, motion blur, depth sanity, and sync integrity
- Additional QA layers and consistency checks tailored to your specific training setup
Contact us to discuss which derived signals you need.
Data Quality
- Tight RGB ↔ Depth ↔ IMU synchronization (all streams at 60 Hz)
- Per-frame camera intrinsics (not a single fixed calibration)
- Per-frame 6DoF pose from visual-inertial odometry
- Depth hole-filling and bilateral filtering provided as separate topics
- Full QC reports and filtered datasets available on request
Getting Started
Inspect a file
pip install mcap
mcap info Chopping.mcapRead in Python
from mcap.reader import make_reader
from mcap_ros2.decoder import DecoderFactory
with open("Chopping.mcap", "rb") as f:
reader = make_reader(f, decoder_factories=[DecoderFactory()])
for schema, channel, message, decoded in reader.iter_decoded_messages():
if channel.topic == "/camera/rgb/compressed":
print(f"RGB frame at t={message.log_time}, size={len(decoded.data)} bytes")
elif channel.topic == "/camera/depth/aligned":
print(f"Depth frame: {decoded.width}x{decoded.height}, encoding={decoded.encoding}")
elif channel.topic == "/camera/points":
print(f"Point cloud: {decoded.width} points")Visualize
Open any .mcap file directly in Foxglove Studio for full 3D visualization of RGB, depth, point clouds, and transforms.
Dependencies
pip install mcap mcap-ros2-support numpy opencv-pythonIntended Uses
- Policy and skill learning — imitation learning, VLA pre-training
- Action detection and segmentation — temporal activity recognition
- Hand and body pose estimation — grasp analysis, manipulation understanding
- Depth-based reconstruction — SLAM, scene understanding, 3D mapping
- World-model training — ego-motion prediction, scene dynamics
- Sensor fusion research — RGB-D-IMU alignment and calibration
Scaling & Custom Data
This release is a sample. We offer:
- Custom episode capture — specific activities, environments, and object sets
- Scalable data collection — hundreds to thousands of episodes on demand
- Derived signal pipelines — hand tracking, body pose, SLAM, tailored to your model
- Custom QC gates — filtering and validation matched to your training requirements
Reach out to discuss your needs.
License
This dataset is released under CC-BY-NC-4.0. Free for research and non-commercial use with attribution. For commercial licensing, contact us.
Required attribution: "This work uses the MCAP-Housing dataset (Cortex Data Labs, 2025)."
Contact
- Email: shashin.bhaskar@gmail.com
- Organization: Cortex Data Labs
For custom data capture, derived signals, QC-validated datasets, or commercial licensing, reach out directly.
