blob: 9817754b7419c4fb36e7c767ccdc22f1b021480d (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef __ERROR_HPP__
#define __ERROR_HPP__
#include "Bitmap.hpp"
float CalcMSE3( const Bitmap& bmp, const Bitmap& out );
float CalcMSE1( const Bitmap& bmp, const Bitmap& out );
#endif
|