fr1ll / image_datasets

Image datasets for computer vision projects in Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Image Datasets

A module of sample image datasets for computer vision projects in Python.

Installation

To install this module, type in a terminal:

pip install image_datasets

Usage

To list all available datasets:

import image_datasets
image_datasets.list() # returns a list of datasets ['oslo', 'bain', ...]

To download the "bain" dataset:

import image_datasets
image_datasets.bain.download()

To load the images in a dataset into RAM at a constant size:

import image_datasets
X = image_datasets.bain.load()

About

Image datasets for computer vision projects in Python


Languages

Language:Python 100.0%