IAQ

Image Aesthetic Quality assessment tool – This is a Matlab implementation of the feature extraction process of the Image Aesthetic Quality assessment method presented below. This method represents each image according to a set of photographic rules and extracts five representative feature vectors which describe the photo’s simplicity, colorfulness, sharpness, pattern and composition, in order to assess the total aesthetic quality of the image. 

Abstract:  This is a comprehensive Image Aesthetic Quality assessment method that represents each image-photo according to a set of photographic rules. Specifically, our method exploits information derived from both low- and high-level analysis of photo layout, not only for the photo as a whole but also for specific spatial regions of it. Five feature vectors are introduced for describing the photo’s simplicity, colorfulness, sharpness, pattern and composition. Subsequently, they are concatenated in a final feature vector where a Support Vector Machine classifier is applied in order to perform the aesthetic quality evaluation. The experimental results and comparisons show that our approach achieves consistently more accurate quality assessment than the relevant literature methods and also that the proposed features can be combined with other generic image features so as to enhance the performance of previous methods.

For more detailed information, please refer to the following paper:

E. Mavridaki, V. Mezaris, "A comprehensive aesthetic quality assessment method for natural image using basic rules of photography”, Proc. IEEE International Conference on Image Processing (ICIP 2015), Quebec, Canada, September 2015.

Description:  A Matlab implementation of the feature extraction process of the aforementioned Image Aesthetic Quality assessment method is attached below (Image_Aesthetic_Quality_CERTH.zip). The input of this software is the path of the folder that contains the images and the output is five text files with the corresponding feature vectors of each examined rule of photography. These feature vectors can be used individually to capture the simplicity, the colorfulness, the sharpness, the existence of pattern and the layout composition of the photo. 

The SVM models which were trained using these features for each of the three datasets presented at ICIP 2015 are available for comparison purposes upon request. 

Instructions:

Run the ImageAestheticQuality.m which has the following requirements

Input:

  1. imagepath  :        The path of the folder where the photos are stored.                                      
  2. label              :        A label for the feature vectors (1 or -1) . Feature vectors are in format compatible with LIBSVM. The LIBSVM format of training and testing data file is: "<label> <index1>:<value1> <index2>:<value2 > ... <indexN>:<valueN >".  For classification, <label> is an integer (1 or -1) indicating the class label. The pair <index>:<value> is a feature, <index> is an integer starting from 1 and <value> is a real number indicating the feature value. For testing, <label> is only used to calculate accuracy or errors. If they are unknown, just fill the first column with any numbers.

Output:

  1. Simplicity.txt          :  Simplicity feature vector
  2. Colorfulness.txt    :  Colorfulness feature vector
  3. Sharpness.txt        :  Sharpness feature vector
  4. Pattern.txt              :  Pattern feature vector
  5. Composition.txt    :  Composition feature vector

The aforementioned feature vectors will be stored in the "Results" output folder. The present implementation has been tested on Matlab 2013a.

Publication:

If you use the CERTH image aesthetic quality assessment method in your research work, please cite the following paper:

E. Mavridaki, V. Mezaris, "A comprehensive aesthetic quality assessment method for natural image using basic rules of photography”, Proc. IEEE International Conference on Image Processing (ICIP 2015), Quebec, Canada, September 2015.

License:

Copyright (c) 2015, Mavridaki Eftichia, Mezaris Vasileios and other copyright holders.

All rights reserved.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Further details of this license can be found in LICENSE.pdf.

Attachments:

LICENSE.pdf

Image Aesthetic Quality CERTH - (UPDATED 27/06/2016)