1 
2 /****************************************************************************
3  *
4  * MODULE:       r.clump
5  *
6  * AUTHOR(S):    Michael Shapiro - CERL
7  *
8  * PURPOSE:      Recategorizes data in a raster map layer by grouping cells
9  *               that form physically discrete areas into unique categories.
10  *
11  * COPYRIGHT:    (C) 2006 by the GRASS Development Team
12  *
13  *               This program is free software under the GNU General Public
14  *               License (>=v2). Read the file COPYING that comes with GRASS
15  *               for details.
16  *
17  ***************************************************************************/
18 
19 #ifndef __LOCAL_PROTO_H__
20 #define __LOCAL_PROTO_H__
21 
22 /* clump.c */
23 CELL clump(int *, int, int, int);
24 CELL clump_n(int *, char **, int, double, int, int, int);
25 
26 /* minsize.c */
27 int merge_small_clumps(int *in_fd, int nin, DCELL *rng,
28                         int diag, int min_size, int *n_clumps,
29 			int cfd, int out_fd);
30 
31 #endif /* __LOCAL_PROTO_H__ */
32