Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the resolution of an image in ImageNet dataset?

Does anyone know the resolution of an image in the ImageNet dataset?

I'm sorry, but I couldn't find it on their website or in any of the papers.

like image 384
Shiqing Fan Avatar asked Mar 20 '16 03:03

Shiqing Fan


People also ask

What is the size of ImageNet?

Clocking in at 150 GB, ImageNet is quite a beast. It holds 1,281,167 images for training and 50,000 images for validation, organised in 1,000 categories.

What type of images are in ImageNet?

ImageNet is a large dataset of annotated photographs intended for computer vision research.

What is 21K ImageNet?

ImageNet-21K dataset, which contains more pictures and classes, is used less frequently for pretraining, mainly due to its complexity, and underestimation of its added value compared to standard ImageNet-1K pretraining.

What does ImageNet dataset contain?

The ImageNet dataset contains 14,197,122 annotated images according to the WordNet hierarchy. Since 2010 the dataset is used in the ImageNet Large Scale Visual Recognition Challenge (ILSVRC), a benchmark in image classification and object detection.


Video Answer


4 Answers

The images vary in dimensions and resolution. Many applications resize / crop all of the images to 256x256 pixels.

like image 190
Prune Avatar answered Nov 07 '22 23:11

Prune


The average image resolution on ImageNet is 469x387 pixels. Normally it's applied a pre-processing that samples them to 256x256 as @Prune said, but it depends on the task at hand.

like image 29
Ricardo M S Avatar answered Nov 08 '22 01:11

Ricardo M S


In a brief check of a random ImageNet 2012 folder (Fish)... The largest image is 4288 x 2848 pixels. The smallest image is 75 x 56 pixels. This is representative of the aspect ratio range.

like image 40
Avi Messica Avatar answered Nov 08 '22 01:11

Avi Messica


It depends of the picture but you can resize them. The smaller dimension of the picture should be at least 256 px and the aspect ratio should be intact.

like image 29
A. Attia Avatar answered Nov 08 '22 00:11

A. Attia