You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

132 lines
3.9 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. * median.c: median filter functions
  16. */
  17. #include "config.h"
  18. #include <stdlib.h>
  19. #include <stdio.h>
  20. #include <string.h>
  21. #include <math.h>
  22. #include "pipi.h"
  23. #include "pipi_internals.h"
  24. static int cmpint(void const *i1, void const *i2)
  25. {
  26. return *(double const *)i1 < *(double const *)i2;
  27. }
  28. pipi_image_t *pipi_median(pipi_image_t *src, int radius)
  29. {
  30. return pipi_median_ext(src, radius, radius);
  31. }
  32. /* FIXME: this is in desperate want of optimisation. Here is what could
  33. * be done to improve the performance:
  34. * - prefetch the neighbourhood; most neighbours are the same as the
  35. * previous pixels.
  36. * - use a better sort algorithm; bubble sort is ridiculous
  37. * - even better, use state-of-the art median selection, ie. O(3n), for
  38. * most common combinations (9, 25, 49, 81). */
  39. pipi_image_t *pipi_median_ext(pipi_image_t *src, int rx, int ry)
  40. {
  41. pipi_image_t *dst;
  42. pipi_pixels_t *srcp, *dstp;
  43. float *srcdata, *dstdata;
  44. double *list;
  45. int x, y, w, h, i, j, size, gray;
  46. w = src->w;
  47. h = src->h;
  48. size = (2 * rx + 1) * (2 * ry + 1);
  49. gray = (src->last_modified == PIPI_PIXELS_Y_F32);
  50. srcp = gray ? pipi_get_pixels(src, PIPI_PIXELS_Y_F32)
  51. : pipi_get_pixels(src, PIPI_PIXELS_RGBA_F32);
  52. srcdata = (float *)srcp->pixels;
  53. dst = pipi_new(w, h);
  54. dstp = gray ? pipi_get_pixels(dst, PIPI_PIXELS_Y_F32)
  55. : pipi_get_pixels(dst, PIPI_PIXELS_RGBA_F32);
  56. dstdata = (float *)dstp->pixels;
  57. list = malloc(size * (gray ? 1 : 4) * sizeof(double));
  58. for(y = 0; y < h; y++)
  59. {
  60. for(x = 0; x < w; x++)
  61. {
  62. double *parser = list;
  63. /* Make a list of neighbours */
  64. for(j = -ry; j <= ry; j++)
  65. {
  66. int y2 = y + j;
  67. if(y2 < 0) y2 = h - 1 - ((-y2 - 1) % h);
  68. else if(y2 > 0) y2 = y2 % h;
  69. for(i = -rx; i <= rx; i++)
  70. {
  71. int x2 = x + i;
  72. if(x2 < 0) x2 = w - 1 - ((-x2 - 1) % w);
  73. else if(x2 > 0) x2 = x2 % w;
  74. if(gray)
  75. {
  76. *parser++ = srcdata[y2 * w + x2];
  77. }
  78. else
  79. {
  80. parser[0] = srcdata[4 * (y2 * w + x2)];
  81. parser[size * 1] = srcdata[4 * (y2 * w + x2) + 1];
  82. parser[size * 2] = srcdata[4 * (y2 * w + x2) + 2];
  83. parser[size * 3] = srcdata[4 * (y2 * w + x2) + 3];
  84. parser++;
  85. }
  86. }
  87. }
  88. /* Sort the list */
  89. qsort(list, size, sizeof(double), cmpint);
  90. if(!gray)
  91. {
  92. qsort(list + size, size, sizeof(double), cmpint);
  93. qsort(list + 2 * size, size, sizeof(double), cmpint);
  94. qsort(list + 3 * size, size, sizeof(double), cmpint);
  95. }
  96. /* Store the median value */
  97. if(gray)
  98. {
  99. dstdata[y * w + x] = list[size / 2];
  100. }
  101. else
  102. {
  103. dstdata[4 * (y * w + x)] = list[size / 2];
  104. dstdata[4 * (y * w + x) + 1] = list[size / 2 + size * 1];
  105. dstdata[4 * (y * w + x) + 2] = list[size / 2 + size * 2];
  106. dstdata[4 * (y * w + x) + 3] = list[size / 2 + size * 3];
  107. }
  108. }
  109. }
  110. return dst;
  111. }