1 | /* |
---|
2 | * libpipi Proper image processing implementation library |
---|
3 | * Copyright (c) 2004-2008 Sam Hocevar <sam@zoy.org> |
---|
4 | * All Rights Reserved |
---|
5 | * |
---|
6 | * $Id$ |
---|
7 | * |
---|
8 | * This library is free software. It comes without any warranty, to |
---|
9 | * the extent permitted by applicable law. You can redistribute it |
---|
10 | * and/or modify it under the terms of the Do What The Fuck You Want |
---|
11 | * To Public License, Version 2, as published by Sam Hocevar. See |
---|
12 | * http://sam.zoy.org/wtfpl/COPYING for more details. |
---|
13 | */ |
---|
14 | |
---|
15 | /* |
---|
16 | * measure.c: distance functions |
---|
17 | */ |
---|
18 | |
---|
19 | #include "config.h" |
---|
20 | #include "common.h" |
---|
21 | |
---|
22 | #include <math.h> |
---|
23 | |
---|
24 | #include "pipi.h" |
---|
25 | #include "pipi_internals.h" |
---|
26 | |
---|
27 | double pipi_measure_rmsd(pipi_image_t *i1, pipi_image_t *i2) |
---|
28 | { |
---|
29 | return sqrt(pipi_measure_msd(i1, i2)); |
---|
30 | } |
---|
31 | |
---|
32 | double pipi_measure_msd(pipi_image_t *i1, pipi_image_t *i2) |
---|
33 | { |
---|
34 | pipi_format_t f1, f2; |
---|
35 | double ret = 0.0; |
---|
36 | float *p1, *p2; |
---|
37 | int x, y, w, h; |
---|
38 | |
---|
39 | w = i1->w < i2->w ? i1->w : i2->w; |
---|
40 | h = i1->h < i2->h ? i1->h : i2->h; |
---|
41 | |
---|
42 | f1 = i1->last_modified; |
---|
43 | f2 = i2->last_modified; |
---|
44 | |
---|
45 | pipi_getpixels(i1, PIPI_PIXELS_Y_F); |
---|
46 | pipi_getpixels(i2, PIPI_PIXELS_Y_F); |
---|
47 | |
---|
48 | p1 = (float *)i1->p[PIPI_PIXELS_Y_F].pixels; |
---|
49 | p2 = (float *)i2->p[PIPI_PIXELS_Y_F].pixels; |
---|
50 | |
---|
51 | for(y = 0; y < h; y++) |
---|
52 | for(x = 0; x < w; x++) |
---|
53 | { |
---|
54 | float a = p1[y * i1->w + x]; |
---|
55 | float b = p2[y * i2->w + x]; |
---|
56 | ret += (a - b) * (a - b); |
---|
57 | } |
---|
58 | |
---|
59 | /* TODO: free pixels if they were allocated */ |
---|
60 | |
---|
61 | /* Restore original image formats */ |
---|
62 | i1->last_modified = f1; |
---|
63 | i2->last_modified = f2; |
---|
64 | |
---|
65 | return ret / (w * h); |
---|
66 | } |
---|
67 | |
---|