Coder Social home page Coder Social logo

computer_vision_datasets's Introduction

Computer Vision Datasets

datasetninja.com has an impressive collection of comptuer vision datasets. This package was built to let you easily download and use these computer vision datasets.

Installation

pip install git+https://github.com/franchesoni/computer_vision_datasets.git or add the only relevant file in this repo (computer_vision_datasets/module.py) to your codebase.

Available datasets (code)

To check the available datasets run list-ninja or

from computer_vision_datasets import get_released_datasets
print(sorted(get_released_datasets().keys()))

Download a dataset

Find the name of the dataset you want with the code above. Here we use 'ADE20K'.

from computer_vision_datasets import download
download('ADE20K', '/your/destination/directory')

The SegDataset class

There is a SegDataset class for segmentation datasets. You just need to point it to the dataset path. Example:

ds = SegDataset(ds_path, split='test')

You can, for instance, wrap it in a Pytorch Dataset:

from torch.utils.data import Dataset

class PyTorchWrapperDataset(Dataset):
    def __init__(self, ds):
        # super().__init__() is not needed since we're not overriding anything from the parent's __init__
        self.original_dataset = ds

    def __getitem__(self, index):
        # Assuming the original dataset uses __getitem__ to access items
        # If it uses a different method (like get_item), adjust accordingly.
        return self.original_dataset[index]

    def __len__(self):
        return len(self.original_dataset)

computer_vision_datasets's People

Contributors

franchesoni avatar

Stargazers

 avatar

Watchers

Kostas Georgiou avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.