Skip to content
/ dempy Public
forked from Rockdell/dempy

๐Ÿ“‹ A package that simplifies access and management of datasets and their annotations. [Course assignment]

License

Notifications You must be signed in to change notification settings

RMoura98/dempy

ย 
ย 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

39 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

License
A package that simplifies access and management of datasets and their annotations.

Getting started

Documentation

Install

  • Clone this repository
  • Within the dempy folder run:
    python setup.py install
  • You can now delete the cloned folder

Uninstall

  • To uninstall just run:
    pip3 uninstall dempy

Code Example

# Example of how to make operations only on videos
# with the mp4 extension of a specific dataset and acquisition

import dempy

dataset = dempy.datasets.get("123")
acq = dempy.acquisitions.get("456")
video_samples = acq.video_samples.get()
dev_videos = video_samples.by_device("789")

mp4_video_samples = [vs for vs in dev_videos if vs.media_type == "video/mp4"]

for v in mp4_video_samples:
    # Manipulate these videos

# Clear cache
dempy.cache.clear()

Work developed by:

About

๐Ÿ“‹ A package that simplifies access and management of datasets and their annotations. [Course assignment]

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%