Skip to content

Image datasets for computer vision projects in Python

Notifications You must be signed in to change notification settings

YaleDHLab/image_datasets

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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()

Releases

No releases published

Packages

No packages published

Languages