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.

56 lines
2.3KB

  1. /*
  2. * Copyright (C) 2007 Vitor Sessak <vitor1001@gmail.com>
  3. *
  4. * This file is part of Libav.
  5. *
  6. * Libav is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * Libav is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with Libav; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #ifndef AVCODEC_ELBG_H
  21. #define AVCODEC_ELBG_H
  22. #include "libavutil/lfg.h"
  23. /**
  24. * Implementation of the Enhanced LBG Algorithm
  25. * Based on the paper "Neural Networks 14:1219-1237" that can be found in
  26. * http://citeseer.ist.psu.edu/patan01enhanced.html .
  27. *
  28. * @param points Input points.
  29. * @param dim Dimension of the points.
  30. * @param numpoints Num of points in **points.
  31. * @param codebook Pointer to the output codebook. Must be allocated.
  32. * @param numCB Number of points in the codebook.
  33. * @param num_steps The maximum number of steps. One step is already a good compromise between time and quality.
  34. * @param closest_cb Return the closest codebook to each point. Must be allocated.
  35. * @param rand_state A random number generator state. Should be already initialized by av_lfg_init().
  36. */
  37. void ff_do_elbg(int *points, int dim, int numpoints, int *codebook,
  38. int numCB, int num_steps, int *closest_cb,
  39. AVLFG *rand_state);
  40. /**
  41. * Initialize the **codebook vector for the elbg algorithm. If you have already
  42. * a codebook and you want to refine it, you shouldn't call this function.
  43. * If numpoints < 8*numCB this function fills **codebook with random numbers.
  44. * If not, it calls ff_do_elbg for a (smaller) random sample of the points in
  45. * **points. Get the same parameters as ff_do_elbg.
  46. */
  47. void ff_init_elbg(int *points, int dim, int numpoints, int *codebook,
  48. int numCB, int num_steps, int *closest_cb,
  49. AVLFG *rand_state);
  50. #endif /* AVCODEC_ELBG_H */