https://doi.org/10.5201/ipol.2012.llm-ksvd
Raw File
Tip revision: c78cdcf65f9f2fd89008647de7d7776cb2454f08 authored by Software Heritage on 01 January 2011, 00:00:00 UTC
ipol: Deposit 1191 in collection ipol
Tip revision: c78cdcf
utilities.h
#ifndef UTILITIES_H_INCLUDED
#define UTILITIES_H_INCLUDED

#include <vector>

//! Compute PSNR and RMSE
void psnr_rmse(const float *  img_1,
               const float *  img_2,
               float *        psnr,
               float *        rmse,
               const unsigned size);

#endif // UTILITIES_H_INCLUDED
back to top