Dataset Viewer
Auto-converted to Parquet Duplicate
image
unknown
label
stringclasses
7 values
filename
stringlengths
10
15
[ 137, 80, 78, 71, 13, 10, 26, 10, 0, 0, 0, 13, 73, 72, 68, 82, 0, 0, 0, 128, 0, 0, 0, 128, 8, 2, 0, 0, 0, 76, 92, 246, 156, 0, 0, 4, 100, 73, 68, 65, 84, 120, 156, 237, 157, 89, 82, 27, 49, 16, 134, 37, 215, 220...
black
black_1.png
[ 137, 80, 78, 71, 13, 10, 26, 10, 0, 0, 0, 13, 73, 72, 68, 82, 0, 0, 0, 128, 0, 0, 0, 128, 8, 2, 0, 0, 0, 76, 92, 246, 156, 0, 0, 28, 206, 73, 68, 65, 84, 120, 156, 237, 157, 121, 60, 213, 233, 251, 255, 111, 239,...
black
black_10.png
[ 137, 80, 78, 71, 13, 10, 26, 10, 0, 0, 0, 13, 73, 72, 68, 82, 0, 0, 0, 128, 0, 0, 0, 128, 8, 2, 0, 0, 0, 76, 92, 246, 156, 0, 0, 188, 49, 73, 68, 65, 84, 120, 156, 4, 193, 7, 32, 20, 10, 0, 0, 208, 219, 123, ...
black
black_100.png
[ 137, 80, 78, 71, 13, 10, 26, 10, 0, 0, 0, 13, 73, 72, 68, 82, 0, 0, 0, 128, 0, 0, 0, 128, 8, 2, 0, 0, 0, 76, 92, 246, 156, 0, 0, 19, 141, 73, 68, 65, 84, 120, 156, 237, 93, 249, 143, 28, 197, 21, 174, 238, 153, ...
black
black_1000.png
[ 137, 80, 78, 71, 13, 10, 26, 10, 0, 0, 0, 13, 73, 72, 68, 82, 0, 0, 0, 128, 0, 0, 0, 128, 8, 2, 0, 0, 0, 76, 92, 246, 156, 0, 0, 88, 190, 73, 68, 65, 84, 120, 156, 237, 221, 101, 80, 92, 109, 187, 39, 250, 69, ...
black
black_10000.png
[ 137, 80, 78, 71, 13, 10, 26, 10, 0, 0, 0, 13, 73, 72, 68, 82, 0, 0, 0, 128, 0, 0, 0, 128, 8, 2, 0, 0, 0, 76, 92, 246, 156, 0, 0, 132, 184, 73, 68, 65, 84, 120, 156, 28, 253, 201, 175, 173, 219, 187, 223, 7, 141, ...
black
black_10001.png
"iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAIAAABMXPacAAB8IUlEQVR4nCT9X6xtabPeB1XV+3+MMedca+/d/X22IwgIohAOxso(...TRUNCATED)
black
black_10002.png
"iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAIAAABMXPacAAAC/0lEQVR4nO3cwWobQRAE0PHYt5ANrR/yH+T/v2KEJ+QY44PBmBx(...TRUNCATED)
black
black_10003.png
"iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAIAAABMXPacAAAGW0lEQVR4nO2d22sdRRzHf2fdFImllZ52SzCpzUlSKwV9yEPwRSS(...TRUNCATED)
black
black_10004.png
"iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAIAAABMXPacAACLS0lEQVR4nBz9Wa8267rfB919U33V043und1aa9sWnThDcMAROSC(...TRUNCATED)
black
black_10005.png
End of preview. Expand in Data Studio

datadive

banner

Datadive is a large-scale color detection dataset containing 360,000 images. Each image is 128x128 pixels and generated with a variety of colors, shapes, and realistic background effects. It’s ideal for testing and training models related to color recognition, object detection, and image classification.

Dataset Details

  • Number of images: 360,000
  • Image size: 128 x 128 pixels
  • Categories / Colors: red, green, blue, yellow, cyan, orange, black, white, gray, lime, navy, brown
  • Format: PNG
  • Purpose: Color detection, classification, and computer vision experiments

Features

  • Randomized backgrounds: solid, gradient, noise, corruption, and perlin noise.
  • Random shapes: circles, rectangles, and triangles.
  • Lighting, shadow, and noise effects applied for realism.
  • Optional texture overlays for variety (stored in the textures/ folder).

Structure

datadive/
├── banner.png
├── black/
│   ├── black_1.png
│   ├── black_2.png
│   └── ...
├── blue/
│   ├── blue_1.png
│   └── ...
├── ...
├── red/
├── white/
└── yellow/

Each color has its own folder containing 30,000 images.

Usage

Using Hugging Face datasets (if stored as Parquet)

from datasets import load_dataset
import io
from PIL import Image

dataset = load_dataset("Mafu-Labs/datadive", split="train")

for example in dataset:
    img_bytes = example["image"]
    img = Image.open(io.BytesIO(img_bytes))
    img.show()

Direct file access

from PIL import Image
img = Image.open("datadive/blue/blue_1.png")
img.show()

License

This dataset is released under the Apache 2.0 License.

Downloads last month
11