This ORIGINAL repository contains image collection of 383 car manufacturers logos.
Each logo has three size variations (original, optimized, thumbnail).
Logo images were crawled on 15.11.2023
from website Carlogos.org and processed afterwards for better usability.
/logos/optimized/
(includes optimized logos with small file size but good quality)/logos/thumb/
(includes thumbnails of logos with height of 256px)/logos/original/
(includes original crawled images)
/logos/data.json
This file contains description of each logo with few properties.
{
"name": "Volkswagen",
"slug": "volkswagen",
"image": {
"source": "https://www.carlogos.org/logo/Volkswagen-logo-2019-640x500.jpg",
"thumb": "https://raw.githubusercontent.com/YellowLineParking/car-logos-dataset/master/logos/thumb/volkswagen.png",
"optimized": "https://raw.githubusercontent.com/YellowLineParking/car-logos-dataset/master/logos/optimized/volkswagen.png",
"original": "https://raw.githubusercontent.com/YellowLineParking/car-logos-dataset/master/logos/original/volkswagen.jpg",
"localThumb": "./thumb/volkswagen.png",
"localOptimized": "./optimized/volkswagen.png",
"localOriginal": "./original/volkswagen.jpg"
}
},
You can use this dataset mainly in two ways:
-
Download repository and use images and JSON file as you wish.
- In this case useful for you is the item property
localThumb
,localOptimized
andlocalOriginal
. - These properties are representing relative path from JSON file to image.
- In this case useful for you is the item property
-
Embed logo via url from a repository.
- In this case useful for you is the item property
thumb
,optimized
andoriginal
- These properties are urls for direct embedding of image.
- In this case useful for you is the item property
Crawler and optimization script is included in /src/
folder and it's written with Node.js
and TypeScript
If you would like to improve it feel free to open Issue or Pull Request
- MIT
- All images are the property of their respective owners.