2 * Image similarity testing
4 * (c) 2006 Pavel Charvat <pchar@ucw.cz>
6 * This software may be freely distributed and used according to the terms
7 * of the GNU General Public License.
11 #include "lib/getopt.h"
12 #include "lib/fastbuf.h"
13 #include "images/images.h"
14 #include "images/color.h"
15 #include "images/signature.h"
21 #include <sys/types.h>
28 Usage: image-sim-test [options] image1 [image2] \n\
30 -q --quiet no progress messages\n\
31 -f --format-1 image1 format (jpeg, gif, png)\n\
32 -F --format-2 image2 format\n\
33 -g --background background color (hexadecimal RRGGBB)\n\
34 -r --segmentation-1 writes image1 segmentation to given file\n\
35 -R --segmentation-2 writes image2 segmentation to given file\n\
40 static char *shortopts = "qf:F:g:t:r:R:" CF_SHORT_OPTS;
41 static struct option longopts[] =
44 { "quiet", 0, 0, 'q' },
45 { "format-1", 0, 0, 'f' },
46 { "format-2", 0, 0, 'F' },
47 { "background", 0, 0, 'g' },
48 { "segmentation-1", 0, 0, 'r' },
49 { "segmentation-2", 0, 0, 'R' },
53 static uns verbose = 1;
54 static byte *file_name_1;
55 static byte *file_name_2;
56 static enum image_format format_1;
57 static enum image_format format_2;
58 static struct color background_color;
59 static byte *segmentation_name_1;
60 static byte *segmentation_name_2;
62 #define MSG(x...) do{ if (verbose) log(L_INFO, ##x); }while(0)
63 #define TRY(x) do{ if (!(x)) die("Error: %s", it.err_msg); }while(0)
66 msg_str(byte *s, void *param UNUSED)
72 dump_signature(struct image_signature *sig)
74 byte buf[MAX(IMAGE_VECTOR_DUMP_MAX, IMAGE_REGION_DUMP_MAX)];
75 image_vector_dump(buf, &sig->vec);
76 MSG("vector: %s", buf);
77 for (uns i = 0; i < sig->len; i++)
79 image_region_dump(buf, sig->reg + i);
80 MSG("region %u: %s", i, buf);
84 static struct image_thread it;
85 static struct image_io io;
88 write_segmentation(struct image_sig_data *data, byte *fn)
90 MSG("Writing segmentation to %s", fn);
92 struct fastbuf *fb = bopen(fn, O_WRONLY | O_CREAT | O_TRUNC, 4096);
94 TRY(img = image_new(&it, data->image->cols, data->image->rows, COLOR_SPACE_RGB, NULL));
95 image_clear(&it, img);
97 for (uns i = 0; i < data->regions_count; i++)
100 double luv[3], xyz[3], srgb[3];
101 luv[0] = data->regions[i].a[0] * (4 / 2.55);
102 luv[1] = ((int)data->regions[i].a[1] - 128) * (4 / 2.55);
103 luv[2] = ((int)data->regions[i].a[2] - 128) * (4 / 2.55);
104 luv_to_xyz_slow(xyz, luv);
105 xyz_to_srgb_slow(srgb, xyz);
106 c[0] = CLAMP(srgb[0] * 255, 0, 255);
107 c[1] = CLAMP(srgb[1] * 255, 0, 255);
108 c[2] = CLAMP(srgb[2] * 255, 0, 255);
109 for (struct image_sig_block *block = data->regions[i].blocks; block; block = block->next)
111 uns x1 = block->x * 4;
112 uns y1 = block->y * 4;
113 uns x2 = MIN(x1 + 4, img->cols);
114 uns y2 = MIN(y1 + 4, img->rows);
115 byte *p = img->pixels + x1 * 3 + y1 * img->row_size;
116 for (uns y = y1; y < y2; y++, p += img->row_size)
119 for (uns x = x1; x < x2; x++, p2 += 3)
131 io.format = image_file_name_to_format(fn);
132 TRY(image_io_write(&io));
140 main(int argc, char **argv)
144 while ((opt = cf_getopt(argc, argv, shortopts, longopts, NULL)) >= 0)
151 if (!(format_1 = image_extension_to_format(optarg)))
155 if (!(format_2 = image_extension_to_format(optarg)))
160 if (strlen(optarg) != 6)
164 long int v = strtol(optarg, &end, 16);
165 if (errno || *end || v < 0)
167 color_make_rgb(&background_color, (v >> 16) & 255, (v >> 8) & 255, v & 255);
171 segmentation_name_1 = optarg;
174 segmentation_name_2 = optarg;
180 if (argc != optind + 2 && argc != optind + 1)
182 file_name_1 = argv[optind++];
184 file_name_2 = argv[optind++];
186 MSG("Initializing image library");
187 srandom(time(NULL) ^ getpid());
189 image_thread_init(&it);
191 struct image *img1, *img2;
193 if (!image_io_init(&it, &io))
194 die("Cannot initialize image I/O (%s)", it.err_msg);
198 MSG("Reading %s", file_name_1);
199 io.fastbuf = bopen(file_name_1, O_RDONLY, 1 << 18);
200 io.format = format_1 ? : image_file_name_to_format(file_name_1);
201 TRY(image_io_read_header(&io));
202 io.flags = COLOR_SPACE_RGB | IMAGE_IO_USE_BACKGROUND;
203 if (background_color.color_space)
204 io.background_color = background_color;
205 else if (!io.background_color.color_space)
206 io.background_color = color_black;
207 TRY(image_io_read_data(&io, 1));
210 MSG("Image size=%ux%u", img1->cols, img1->rows);
218 MSG("Reading %s", file_name_2);
219 io.fastbuf = bopen(file_name_2, O_RDONLY, 1 << 18);
220 io.format = format_2 ? : image_file_name_to_format(file_name_2);
221 TRY(image_io_read_header(&io));
222 io.flags = COLOR_SPACE_RGB | IMAGE_IO_USE_BACKGROUND;
223 if (background_color.color_space)
224 io.background_color = background_color;
225 else if (!io.background_color.color_space)
226 io.background_color = color_black;
227 TRY(image_io_read_data(&io, 1));
230 MSG("Image size=%ux%u", img2->cols, img2->rows);
236 struct image_signature sig1, sig2;
237 MSG("Computing signatures");
240 struct image_sig_data data;
241 TRY(image_sig_init(&it, &data, img1));
242 image_sig_preprocess(&data);
245 image_sig_segmentation(&data);
246 image_sig_detect_textured(&data);
248 if (segmentation_name_1)
249 write_segmentation(&data, segmentation_name_1);
250 image_sig_finish(&data, &sig1);
251 image_sig_cleanup(&data);
252 dump_signature(&sig1);
256 struct image_sig_data data;
257 TRY(image_sig_init(&it, &data, img2));
258 image_sig_preprocess(&data);
261 image_sig_segmentation(&data);
262 image_sig_detect_textured(&data);
264 if (segmentation_name_2)
265 write_segmentation(&data, segmentation_name_2);
266 image_sig_finish(&data, &sig2);
267 image_sig_cleanup(&data);
268 dump_signature(&sig2);
276 struct fastbuf *fb = bfdopen(0, 4096);
277 dist = image_signatures_dist_explain(&sig1, &sig2, msg_str, NULL);
281 dist = image_signatures_dist(&sig1, &sig2);
282 MSG("dist=%u", dist);
290 image_io_cleanup(&io);
291 image_thread_cleanup(&it);