123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- #ifndef GRASS_IMAGERY_H
- #define GRASS_IMAGERY_H
- #include <grass/gis.h>
- #include <grass/raster.h>
- /* File/directory name lengths */
- #define INAME_LEN GNAME_MAX /* coupled to raster map name length */
- struct Ref_Color
- {
- unsigned char *table; /* color table for min-max values */
- unsigned char *index; /* data translation index */
- unsigned char *buf; /* data buffer for reading color file */
- int fd; /* for image i/o */
- CELL min, max; /* min,max CELL values */
- int n; /* index into Ref_Files */
- };
- struct Ref_Files
- {
- char name[INAME_LEN]; /* length is not in sync with other definitions */
- char mapset[INAME_LEN];
- };
- struct Ref
- {
- int nfiles;
- struct Ref_Files *file;
- struct Ref_Color red, grn, blu;
- };
- struct Tape_Info
- {
- char title[75];
- char id[2][75];
- char desc[5][75];
- };
- struct Control_Points
- {
- int count;
- double *e1;
- double *n1;
- double *e2;
- double *n2;
- int *status;
- };
- struct One_Sig
- {
- char desc[100];
- int npoints;
- double *mean; /* one mean for each band */
- double **var; /* covariance band-band */
- int status; /* may be used to 'delete' a signature */
- float r, g, b; /* color */
- int have_color;
- };
- struct Signature
- {
- int nbands;
- int nsigs;
- char title[100];
- struct One_Sig *sig;
- };
- struct SubSig
- {
- double N;
- double pi;
- double *means;
- double **R;
- double **Rinv;
- double cnst;
- int used;
- };
- struct ClassData
- {
- int npixels;
- int count;
- double **x; /* pixel list: x[npixels][nbands] */
- double **p; /* prob p[npixels][subclasses] */
- };
- struct ClassSig
- {
- long classnum;
- char *title;
- int used;
- int type;
- int nsubclasses;
- struct SubSig *SubSig;
- struct ClassData ClassData;
- };
- struct SigSet
- {
- int nbands;
- int nclasses;
- char *title;
- struct ClassSig *ClassSig;
- };
- #define SIGNATURE_TYPE_MIXED 1
- #define GROUPFILE "CURGROUP"
- #define SUBGROUPFILE "CURSUBGROUP"
- #include <grass/imagedefs.h>
- #endif
|