h_measure.h 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. /* h_measure.c */
  2. /****************************************************************************
  3. *
  4. * MODULE: r.texture
  5. * AUTHOR(S): Carmine Basco - basco@unisannio.it
  6. * with hints from:
  7. * prof. Giulio Antoniol - antoniol@ieee.org
  8. * prof. Michele Ceccarelli - ceccarelli@unisannio.it
  9. * PURPOSE: Intended to explain GRASS raster programming.
  10. * Create map raster with textural features.
  11. *
  12. * COPYRIGHT: (C) 2002 by University of Sannio (BN) - Italy
  13. *
  14. * This program is free software under the GNU General Public
  15. * License (>=v2). Read the file COPYING that comes with GRASS
  16. * for details.
  17. *
  18. * Permission to use, copy, modify, and distribute this software and its
  19. * documentation for any purpose and without fee is hereby granted. This
  20. * software is provided "as is" without express or implied warranty.
  21. *
  22. *****************************************************************************/
  23. float h_measure(int);
  24. void alloc_vars(int);
  25. int set_vars(int **grays, int curr_rrow, int curr_col,
  26. int size, int offset, int t_d, int with_nulls);
  27. int set_angle_vars(int angle, int have_px, int have_py,
  28. int have_pxpys, int have_pxpyd);