]> mj.ucw.cz Git - libucw.git/blob - images/signature.h
improved image segmentation... thresholds are unbalanced yet
[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
9 #define IMAGE_VEC_F     6
10 #define IMAGE_REG_F     IMAGE_VEC_F
11 #define IMAGE_REG_H     3
12 #define IMAGE_REG_MAX   16
13
14 /* K-dimensional feature vector (6 bytes) */
15 struct image_vector {
16   byte f[IMAGE_VEC_F];          /* texture features */
17 } PACKED;
18
19 /* Fetures for image regions (16 bytes) */
20 struct image_region {
21   byte f[IMAGE_VEC_F];          /* texture features */
22   u16 h[IMAGE_REG_H];           /* shape features */
23   u16 wa;                       /* normalized area percentage */
24   u16 wb;                       /* normalized weight */
25 } PACKED;
26
27 /* Image signature (10 + len * 16 bytes) */
28 struct image_signature {
29   byte len;                     /* Number of regions */
30   byte df;                      /* average f dist */
31   u16 dh;                       /* average h dist */
32   struct image_vector vec;      /* Combination of all regions... simple signature */
33   struct image_region reg[IMAGE_REG_MAX];/* Feature vector for every region */
34 } PACKED;
35
36 static inline uns
37 image_signature_size(uns len)
38 {
39   return 4 + sizeof(struct image_vector) + len * sizeof(struct image_region);
40 }
41
42 /* sig-dump.c */
43
44 #define IMAGE_VECTOR_DUMP_MAX (IMAGE_VEC_F * 16 + 1)
45 #define IMAGE_REGION_DUMP_MAX ((IMAGE_REG_F + IMAGE_REG_H) * 16 + 100)
46
47 byte *image_vector_dump(byte *buf, struct image_vector *vec);
48 byte *image_region_dump(byte *buf, struct image_region *reg);
49
50 /* sig-init.c */
51
52 int compute_image_signature(struct image_thread *thread, struct image_signature *sig, struct image *image);
53
54 /* sig-cmp.c */
55
56 #define IMAGE_SIG_DIST_SCALE (3 + 3 + 8 + 16)
57
58 uns image_signatures_dist(struct image_signature *sig1, struct image_signature *sig2);
59
60 #if 0
61 /* K-dimensional interval */
62 struct image_bbox {
63   struct image_vector vec[2];
64 };
65
66 /* Similarity search tree... will be changed */
67 struct image_tree {
68   uns count;                    /* Number of images in the tree */
69   uns depth;                    /* Tree depth */
70   struct image_bbox bbox;       /* Bounding box containing all the */
71   struct image_node *nodes;     /* Internal nodes */
72   struct image_leaf *leaves;    /* Leaves */
73 };
74
75 /* Internal node in the search tree */
76 #define IMAGE_NODE_LEAF         0x80000000              /* Node contains pointer to leaves array */
77 #define IMAGE_NODE_DIM          0xff                    /* Split dimension */
78 struct image_node {
79   u32 val;
80 };
81
82 /* Leaves in the search tree */
83 #define IMAGE_LEAF_LAST         0x80000000              /* Last entry in the list */
84 #define IMAGE_LEAF_BITS(i)      (31 / IMAGE_VEC_K)      /* Number of bits for relative position in i-th dimension */
85 struct image_leaf {
86   u32 flags;            /* Relative position in bbox and last node flag */ 
87   oid_t oid;
88 };
89
90 #define stk_print_image_vector(v) ({ struct image_vector *_v = v; \
91     byte *_s = (byte *) alloca(IMAGE_VEC_K * 6), *_p = _s + sprintf(_s, "%d", _v->f[0]); \
92     for (uns _i = 1; _i < IMAGE_VEC_K; _i++) _p += sprintf(_p, " %d", _v->f[_i]); _s; })
93 #endif
94
95 #endif
96