00001 /*! 00002 *************************************************************************** 00003 * \file 00004 * img_dist_ssim.h 00005 * 00006 * \author 00007 * Main contributors (see contributors.h for copyright, address and affiliation details) 00008 * - Woo-Shik Kim <wooshik.kim@usc.edu> 00009 * - Alexis Michael Tourapis <alexismt@ieee.org> 00010 * 00011 * \date 00012 * 29 May 2008 00013 * 00014 * \brief 00015 * Headerfile to calculate structural similarity (SSIM) index 00016 ************************************************************************** 00017 */ 00018 00019 #ifndef _IMG_DIST_SSIM_H_ 00020 #define _IMG_DIST_SSIM_H_ 00021 #include "img_distortion.h" 00022 00023 extern void find_ssim (ImageParameters *p_Img, InputParameters *p_Inp, ImageStructure *imgREF, ImageStructure *imgSRC, DistMetric metricSSIM[3]); 00024 00025 #endif 00026