1 #ifndef _IMAGES_SIGNATURE_H
2 #define _IMAGES_SIGNATURE_H
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_border_size;
9 extern int image_sig_border_bonus;
10 extern double image_sig_inertia_scale[];
11 extern double image_sig_textured_threshold;
12 extern int image_sig_compare_method;
13 extern uns image_sig_cmp_features_weights[];
16 #define IMAGE_REG_F IMAGE_VEC_F
18 #define IMAGE_REG_MAX 16
20 /* K-dimensional feature vector (6 bytes) */
22 byte f[IMAGE_VEC_F]; /* texture features */
25 /* Features for image regions (16 bytes) */
27 byte f[IMAGE_VEC_F]; /* texture features - L, u, v, LH, HL, HH */
28 byte h[IMAGE_REG_H]; /* shape/pos features - I1, I2, I3, X, Y */
29 byte wa; /* normalized area percentage */
30 byte wb; /* normalized weight */
33 #define IMAGE_SIG_TEXTURED 0x1
35 /* Image signature (usually 16 + len * 16 bytes) */
36 struct image_signature {
37 byte len; /* number of regions */
38 byte flags; /* IMAGE_SIG_xxx */
39 u16 cols; /* image width */
40 u16 rows; /* image height */
41 u16 df; /* average weighted f dist */
42 u16 dh; /* average weighted h dist */
43 struct image_vector vec; /* average features of all regions... simple signature */
44 struct image_region reg[IMAGE_REG_MAX];/* feature vector for every region */
47 struct image_cluster {
50 s32 dot; /* dot product of the splitting plane */
51 s8 vec[IMAGE_VEC_F]; /* normal vector of the splitting plane */
54 u64 pos; /* cluster size in bytes */
60 image_signature_size(uns len)
62 return OFFSETOF(struct image_signature, reg) + len * sizeof(struct image_region);
67 #define IMAGE_VECTOR_DUMP_MAX (IMAGE_VEC_F * 16 + 1)
68 #define IMAGE_REGION_DUMP_MAX ((IMAGE_REG_F + IMAGE_REG_H) * 16 + 100)
70 byte *image_vector_dump(byte *buf, struct image_vector *vec);
71 byte *image_region_dump(byte *buf, struct image_region *reg);
73 struct image_sig_block {
74 struct image_sig_block *next; /* linked list */
75 u32 x, y; /* block position */
76 byte area; /* block area in pixels (usually 16) */
77 byte region; /* region index */
78 byte v[IMAGE_VEC_F]; /* feature vector */
81 struct image_sig_region {
82 struct image_sig_block *blocks;
91 struct image_sig_data {
93 struct image_sig_block *blocks;
94 struct image_sig_region regions[IMAGE_REG_MAX];
109 int compute_image_signature(struct image_context *ctx, struct image_signature *sig, struct image *image);
111 int image_sig_init(struct image_context *ctx, struct image_sig_data *data, struct image *image);
112 void image_sig_preprocess(struct image_sig_data *data);
113 void image_sig_finish(struct image_sig_data *data, struct image_signature *sig);
114 void image_sig_cleanup(struct image_sig_data *data);
118 void image_sig_segmentation(struct image_sig_data *data);
122 void image_sig_detect_textured(struct image_sig_data *data);
126 uns image_signatures_dist(struct image_signature *sig1, struct image_signature *sig2);
127 uns image_signatures_dist_explain(struct image_signature *sig1, struct image_signature *sig2, void (*msg)(byte *text, void *param), void *param);