9
|
1 /*
|
196
|
2 * Geeqie
|
9
|
3 * (C) 2004 John Ellis
|
475
|
4 * Copyright (C) 2008 The Geeqie Team
|
9
|
5 *
|
|
6 * Author: John Ellis
|
|
7 *
|
|
8 * This software is released under the GNU General Public License (GNU GPL).
|
|
9 * Please read the included file COPYING for more information.
|
|
10 * This software comes with no warranty of any kind, use at your own risk!
|
|
11 */
|
|
12
|
|
13
|
|
14 #ifndef SIMILAR_H
|
|
15 #define SIMILAR_H
|
|
16
|
|
17
|
|
18 typedef struct _ImageSimilarityData ImageSimilarityData;
|
|
19 struct _ImageSimilarityData
|
|
20 {
|
442
|
21 guint8 avg_r[1024];
|
|
22 guint8 avg_g[1024];
|
|
23 guint8 avg_b[1024];
|
9
|
24
|
442
|
25 gint filled;
|
9
|
26 };
|
|
27
|
|
28
|
|
29 ImageSimilarityData *image_sim_new(void);
|
|
30 void image_sim_free(ImageSimilarityData *sd);
|
|
31
|
|
32 void image_sim_fill_data(ImageSimilarityData *sd, GdkPixbuf *pixbuf);
|
|
33 ImageSimilarityData *image_sim_new_from_pixbuf(GdkPixbuf *pixbuf);
|
|
34
|
|
35 gdouble image_sim_compare(ImageSimilarityData *a, ImageSimilarityData *b);
|
|
36 gdouble image_sim_compare_fast(ImageSimilarityData *a, ImageSimilarityData *b, gdouble min);
|
|
37
|
|
38
|
|
39 void image_sim_alternate_set(gint enable);
|
|
40 gint image_sim_alternate_enabled(void);
|
|
41 void image_sim_alternate_processing(ImageSimilarityData *sd);
|
|
42
|
|
43
|
|
44 #endif
|