X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=test_util.h;h=8fb17bfecf77cb6cef3604808730d90e3fa57e9a;hp=10ecf9ff122a9461dd6e4e520db4f5c971d7f673;hb=f62661c1bef3acac7b98631970700dfa5ac94768;hpb=ac4fc36aa70ffefb6b9632dc0abea5cbbce5387b diff --git a/test_util.h b/test_util.h index 10ecf9f..8fb17bf 100644 --- a/test_util.h +++ b/test_util.h @@ -5,6 +5,8 @@ #include "effect_chain.h" #include "image_format.h" +namespace movit { + class Input; class EffectChainTester { @@ -33,5 +35,8 @@ private: void expect_equal(const float *ref, const float *result, unsigned width, unsigned height, float largest_difference_limit = 1.5 / 255.0, float rms_limit = 0.2 / 255.0); void expect_equal(const unsigned char *ref, const unsigned char *result, unsigned width, unsigned height, unsigned largest_difference_limit = 1, float rms_limit = 0.2); +void test_accuracy(const float *expected, const float *result, unsigned num_values, double absolute_error_limit, double relative_error_limit, double local_relative_error_limit, double rms_limit); + +} // namespace movit #endif // !defined(_MOVIT_TEST_UTIL_H)