Datasets:

Tasks:
Other
Languages:
English
Multilinguality:
monolingual
Size Categories:
10K<n<100K
Language Creators:
found
Annotations Creators:
expert-generated
Source Datasets:
extended|mnist
Tags:
License:
image
image

7

Dataset Card for MNIST3D

Dataset Description

Dataset Summary

The MNIST3D dataset consists of 70,000 point clouds of handwritten digits generated by converting the images from the original MNIST dataset. Each point cloud has 193 points.

Languages

English

Dataset Structure

Data Splits

The data is split into training and test set. The original data split of the MNIST dataset is preserved.

Dataset Creation

Curation Rationale

The MNIST3D dataset serves as an accessible entry point for those interested in applying machine learning models to 3D point cloud classification tasks while spending minimal efforts on preprocessing and formatting.

Methods

  1. The MNIST dataset is loaded from the keras.datasets module.
  2. The pixel intensity distribution of the MNIST images is analyzed. As shown in the plot below, intensities are clustered toward 0 and 255. A threshold equal to 128 is chosen.

hist

  1. Images are binarized. Intensities greater than the threshold are converted to 1, the remaining ones to 0.
  2. Images are converted to point clouds. Pixels with non-zero intensity are considered as points where the intensity acts as the z-coordinate. The x and y coordinates are normalized in the 0-1 range. The z coordinate is converted to 0.
  3. The total number of points is set to 193, which is the maximum (outliers excluded) of the distribution of non-zero intensities in the binarized images (see boxplot below).

boxplot

  1. Gaussian noise with mean set to zero and standard deviation equal to 0.01 is added to the three dimensions.

The dataset is generated by running main.py and written to disk as NumPy files (npy format). Plots are drawn by running plotter.py, while size_calculator.py allows to compute the dataset size.

Additional Information

Dataset Curators

Cristiano Pizzamiglio

Licensing Information

MIT Licence

Acknowledgment

Mariona Carós

Downloads last month
0
Edit dataset card