All Projects → ylogx → Aesthetics

ylogx / Aesthetics

Licence: apache-2.0
Image Aesthetics Toolkit - includes Fisher Vector implementation, AVA (Image Aesthetic Visual Analysis) dataset and fast multi-threaded downloader

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Aesthetics

Wb srgb
White balance camera-rendered sRGB images (CVPR 2019) [Matlab & Python]
Stars: ✭ 101 (-10.62%)
Mutual labels:  dataset, datasets, image-processing
Damselfly
Damselfly is a server-based Digital Asset Management system for photographs. The goal of Damselfly is to index an extremely large collection of images, and allow easy search and retrieval of those images, using metadata such as the IPTC keyword tags, as well as the folder and file names.
Stars: ✭ 86 (-23.89%)
Mutual labels:  image-processing, image
Openml R
R package to interface with OpenML
Stars: ✭ 81 (-28.32%)
Mutual labels:  dataset, datasets
Autoannotationtool
A label tool aim to reduce semantic segmentation label time, rectangle and polygon annotation is supported
Stars: ✭ 113 (+0%)
Mutual labels:  dataset, image-processing
Pillow
The friendly PIL fork (Python Imaging Library)
Stars: ✭ 9,241 (+8077.88%)
Mutual labels:  image-processing, image
Skrop
Image transformation service using libvips, based on Skipper.
Stars: ✭ 71 (-37.17%)
Mutual labels:  image-processing, image
Png To Ico
convert png to ico format
Stars: ✭ 88 (-22.12%)
Mutual labels:  image-processing, image
French Sentiment Analysis Dataset
A collection of over 1.5 Million tweets data translated to French, with their sentiment.
Stars: ✭ 35 (-69.03%)
Mutual labels:  dataset, datasets
Persian Swear Words
دیتاست کلمات نامناسب و بد فارسی برای فیلتر کردن متن ها
Stars: ✭ 95 (-15.93%)
Mutual labels:  dataset, datasets
Pimg
📷 Mini Image Lazy Loader for P(R)eact and Vue
Stars: ✭ 97 (-14.16%)
Mutual labels:  image-processing, image
Exposure correction
Reference code for the paper "Learning Multi-Scale Photo Exposure Correction", CVPR 2021.
Stars: ✭ 98 (-13.27%)
Mutual labels:  dataset, datasets
Colour
Colour Science for Python
Stars: ✭ 1,131 (+900.88%)
Mutual labels:  dataset, datasets
Images Web Crawler
This package is a complete tool for creating a large dataset of images (specially designed -but not only- for machine learning enthusiasts). It can crawl the web, download images, rename / resize / covert the images and merge folders..
Stars: ✭ 51 (-54.87%)
Mutual labels:  dataset, image-processing
Atis dataset
The ATIS (Airline Travel Information System) Dataset
Stars: ✭ 81 (-28.32%)
Mutual labels:  dataset, datasets
Imagemin Module
Automatically optimize (compress) all images used in Nuxt.js
Stars: ✭ 37 (-67.26%)
Mutual labels:  image-processing, image
Processing Imageprocessing
Collection of basic image processing algorithms for processing
Stars: ✭ 87 (-23.01%)
Mutual labels:  image-processing, image
Deep learning projects
Stars: ✭ 28 (-75.22%)
Mutual labels:  dataset, image-processing
Smartcircle
✂️Automatically determine where to crop a circular image out of a rectangular.
Stars: ✭ 29 (-74.34%)
Mutual labels:  image-processing, image
Pyautolens
PyAutoLens: Open Source Strong Gravitational Lensing
Stars: ✭ 90 (-20.35%)
Mutual labels:  image-processing, image
Serverless Image Processor
AWS Lambda image processor
Stars: ✭ 106 (-6.19%)
Mutual labels:  image-processing, image

Aesthetics

Image Aesthetics Definition

Image aesthetic evaluation aims to classify photos into high quality or low quality from the perspective of human.

High Quality Image Low Quality Image
Good Image Bad Image

Image Aesthetics drills down to a classification problem:

  • Low Quality Image Bad Image
  • High Quality Image Good Image

A commonly used dataset for image aesthetics is AVA (Image Aesthetic Visual Analysis) dataset

This repo provides following tools to help in image aesthetics problem:

Fisher Vector

Fisher Vector is a technique for generating features for images, which can be used by discriminative models like SVM. You can use fisher vectors for usecases like image classification (ImageNet), image aesthetics.

Flow

  • We create local descriptors using SIFT for each image in the training set
  • We fit a Gausian Mixture Model (GMM) on descriptors for all images in training set.
  • Using this global GMM we generate features for each image

Fisher Vector flow

Spatial Pooling

Spatial pooling is a technique to save the spatial information of the image while generating features. This is very important in image aesthetics because the look and feel of the image are highly dependent on the aspect ratio, placement of the objects in the image.

Following image should clarify the importance of spatial pooling:

Importance of spatial pooling

For spatial pooling, the fisher vector paper recommends splitting the image into 4 patches:

  • Full image patch
  • 3 horizontal sliced patches of the image

To generate the fisher vector of the image, as shown in the flowchart above, we concat the fisher vectors of the 4 individual patches of the image.

AVA Downloader

./download.py --help
./download.py ava

This is a WIP

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].