]> mj.ucw.cz Git - libucw.git/blob - images/signature.h
d59e043d902824e67b17fdd5e47d6e902ddb89c5
[libucw.git] / images / signature.h
1 #ifndef _IMAGES_SIGNATURE_H
2 #define _IMAGES_SIGNATURE_H
3
4 /* Configuration */
5 extern uns image_sig_min_width, image_sig_min_height;
6 extern uns *image_sig_prequant_thresholds;
7 extern uns image_sig_postquant_min_steps, image_sig_postquant_max_steps, image_sig_postquant_threshold;
8 extern double image_sig_textured_threshold;
9 extern uns image_sig_compare_method;
10
11 #define IMAGE_VEC_F     6
12 #define IMAGE_REG_F     IMAGE_VEC_F
13 #define IMAGE_REG_H     3
14 #define IMAGE_REG_MAX   16
15
16 /* K-dimensional feature vector (6 bytes) */
17 struct image_vector {
18   byte f[IMAGE_VEC_F];          /* texture features */
19 } PACKED;
20
21 /* Fetures for image regions (16 bytes) */
22 struct image_region {
23   byte f[IMAGE_VEC_F];          /* texture features */
24   u16 h[IMAGE_REG_H];           /* shape features */
25   u16 wa;                       /* normalized area percentage */
26   u16 wb;                       /* normalized weight */
27 } PACKED;
28
29 #define IMAGE_SIG_TEXTURED      0x1
30
31 /* Image signature (11 + len * 16 bytes) */
32 struct image_signature {
33   byte len;                     /* Number of regions */
34   byte flags;                   /* IMAGE_SIG_xxx */
35   byte df;                      /* Average f dist */
36   u16 dh;                       /* Average h dist */
37   struct image_vector vec;      /* Combination of all regions... simple signature */
38   struct image_region reg[IMAGE_REG_MAX];/* Feature vector for every region */
39 } PACKED;
40
41 static inline uns
42 image_signature_size(uns len)
43 {
44   return 5 + sizeof(struct image_vector) + len * sizeof(struct image_region);
45 }
46
47 /* sig-dump.c */
48
49 #define IMAGE_VECTOR_DUMP_MAX (IMAGE_VEC_F * 16 + 1)
50 #define IMAGE_REGION_DUMP_MAX ((IMAGE_REG_F + IMAGE_REG_H) * 16 + 100)
51
52 byte *image_vector_dump(byte *buf, struct image_vector *vec);
53 byte *image_region_dump(byte *buf, struct image_region *reg);
54
55 struct image_sig_block {
56   struct image_sig_block *next;         /* linked list */
57   u32 x, y;                             /* block position */
58   byte area;                            /* block area in pixels (usually 16) */
59   byte region;                          /* region index */
60   byte v[IMAGE_VEC_F];                  /* feature vector */
61 };
62
63 struct image_sig_region {
64   struct image_sig_block *blocks;
65   u32 count;
66   u32 a[IMAGE_VEC_F];
67   u32 b[IMAGE_VEC_F];
68   u32 c[IMAGE_VEC_F];
69   u64 e;
70   u64 w_sum;
71 };
72
73 struct image_sig_data {
74   struct image *image;
75   struct image_sig_block *blocks;
76   struct image_sig_region regions[IMAGE_REG_MAX];
77   u32 cols;
78   u32 rows;
79   u32 full_cols;
80   u32 full_rows;
81   u32 flags;
82   u32 area;
83   u32 valid;
84   u32 blocks_count;
85   u32 regions_count;
86   u32 f[IMAGE_VEC_F];
87 };
88
89 /* sig-init.c */
90
91 int compute_image_signature(struct image_thread *thread, struct image_signature *sig, struct image *image);
92
93 int image_sig_init(struct image_thread *thread, struct image_sig_data *data, struct image *image);
94 void image_sig_preprocess(struct image_sig_data *data);
95 void image_sig_finish(struct image_sig_data *data, struct image_signature *sig);
96 void image_sig_cleanup(struct image_sig_data *data);
97
98 /* sig-seg.c */
99
100 void image_sig_segmentation(struct image_sig_data *data);
101
102 /* sig-txt.c */
103
104 void image_sig_detect_textured(struct image_sig_data *data);
105
106 /* sig-cmp.c */
107
108 #define IMAGE_SIG_DIST_SCALE 30
109
110 uns image_signatures_dist(struct image_signature *sig1, struct image_signature *sig2);
111
112 #endif
113