Skip to main content

Toolkit for OpenPack Dataset

Project description

OpenPack Dataset Toolkit (optk)

OpenPack Dataset Logo

Test API Docs - GitHub Pages

"OpenPack Dataset" is a new large-scale multi modal dataset of manual packing process. OpenPack is an open access logistics-dataset for human activity recognition, which contains human movement and package information from 16 distinct subjects. This repository provide utilities to explore our exciting dataset.

Dataset Release Note

For preliminary analysis, please start from preprocessed-IMU-with-operation-labels.zip in zenodo. This preprocessed dataset include IMU data (acc, gyro, quaternion) assosiated with operatopn labels because you don't need to combine data and label.

Docs

Dataset

Task & Activity Recognition Challenge

Sample Data

Sample

Install

We provide some utility functions as python package. You can install via pip with the following command. Note that the supported dataset version is >=1.0.0.

# Pip
pip install openpack-toolkit

# Poetry
poetry add  openpack-toolkit

Examples

Tutorial

Work Activity Recognition (PyTorch)

PyTorch code samples for work operation prediction task is available. See openpack-torch for more dietail.

Timestamp

Each data point is associated with a millisecond-precision unix timestamp. The following is a snippet that converts a timestamp (an int value) into a datatime.datetime() object with timezone.

import datetime


def timestamp_to_datetime(ts: int) -> datetime.datetime:
  """Convert unix timestamp (milli-second precision) into datatime object. """
  timezone_jst = datetime.timezone(datetime.timedelta(hours=9))
  dt = datetime.datetime.fromtimestamp(ts / 1000).replace(tzinfo=timezone_jst)
  return dt
  
def datetime_to_timestamp(dt: datetime.datetime) -> int:
  """Convert a datetime object into a milli-second precision timestamp."""
  return int(dt.timestamp() * 1000)


ts = 1634885786000

dt_out =  timestamp_to_datetime(ts)
ts_out = datetime_to_timestamp(dt_out)
print(f"datetime: {dt_out}")  # datetime: 2021-10-22 15:56:26+09:00
print(f"timestamp: {ts_out}")  # timestamp: 1634885786000
assert ts_out == ts

Download Dataset

From Zenodo (w/o Depth Images)

bash tools/download/dl_from_zenodo.sh <path to a dataset root directory>

# Example:
bash tools/download/dl_from_zenodo.sh ./data/datasets

Links

OpenPack Challenge Logo

License

openpack-toolkit has a MIT license, as found in the LICENSE file.

NOTE: OpenPack Dataset itself is available under Creative Commons Attribution Non Commercial Share Alike 4.0 International license. However, OpenPack Dataset (+RGB) License is applied to "OpenPack Dataset (+RGB)" which includs RGB data.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

openpack-toolkit-1.1.0.tar.gz (25.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

openpack_toolkit-1.1.0-py3-none-any.whl (29.5 kB view details)

Uploaded Python 3

File details

Details for the file openpack-toolkit-1.1.0.tar.gz.

File metadata

  • Download URL: openpack-toolkit-1.1.0.tar.gz
  • Upload date:
  • Size: 25.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.13 CPython/3.9.12 Darwin/23.2.0

File hashes

Hashes for openpack-toolkit-1.1.0.tar.gz
Algorithm Hash digest
SHA256 2089543f0f24c82018f8d948aad86d8d9a4eeeb4c0c306a4cd7d723670c65db4
MD5 a371846aaa8717864bd60d1749187470
BLAKE2b-256 82187ce395731235e535b89fa210dad2910ae738a56983ed6df3a85c232bcda0

See more details on using hashes here.

File details

Details for the file openpack_toolkit-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: openpack_toolkit-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 29.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.13 CPython/3.9.12 Darwin/23.2.0

File hashes

Hashes for openpack_toolkit-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d4c91023ab482b326bf8f4256e34a27d6464799e0f144b2b3b76731e7e33043f
MD5 446919229db7b4978ef119b6d39c5f65
BLAKE2b-256 b8fb14aea2864c7120d308bbb66daf4075823a122df4b142412d1ab29a67e21e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page