Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
 

67 rader
1.6 KiB

  1. /*
  2. * libpipi Pathetic image processing interface 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. * measure.c: distance functions
  16. */
  17. #include "config.h"
  18. #include <math.h>
  19. #include "pipi.h"
  20. #include "pipi_internals.h"
  21. double pipi_measure_rmsd(pipi_image_t *i1, pipi_image_t *i2)
  22. {
  23. return sqrt(pipi_measure_msd(i1, i2));
  24. }
  25. double pipi_measure_msd(pipi_image_t *i1, pipi_image_t *i2)
  26. {
  27. pipi_format_t f1, f2;
  28. double ret = 0.0;
  29. float *p1, *p2;
  30. int x, y, w, h;
  31. w = i1->w < i2->w ? i1->w : i2->w;
  32. h = i1->h < i2->h ? i1->h : i2->h;
  33. f1 = i1->last_modified;
  34. f2 = i2->last_modified;
  35. pipi_getpixels(i1, PIPI_PIXELS_Y_F);
  36. pipi_getpixels(i2, PIPI_PIXELS_Y_F);
  37. p1 = (float *)i1->p[PIPI_PIXELS_Y_F].pixels;
  38. p2 = (float *)i2->p[PIPI_PIXELS_Y_F].pixels;
  39. for(y = 0; y < h; y++)
  40. for(x = 0; x < w; x++)
  41. {
  42. float a = p1[y * i1->w + x];
  43. float b = p2[y * i2->w + x];
  44. ret += (a - b) * (a - b);
  45. }
  46. /* TODO: free pixels if they were allocated */
  47. /* Restore original image formats */
  48. i1->last_modified = f1;
  49. i2->last_modified = f2;
  50. return ret / (w * h);
  51. }