Remove commented out code.
[geeqie.git] / src / similar.h
1 /*
2  * Geeqie
3  * (C) 2004 John Ellis
4  * Copyright (C) 2008 - 2012 The Geeqie Team
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 {
21         guint8 avg_r[1024];
22         guint8 avg_g[1024];
23         guint8 avg_b[1024];
24
25         gboolean filled;
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(gboolean enable);
40 gboolean image_sim_alternate_enabled(void);
41 void image_sim_alternate_processing(ImageSimilarityData *sd);
42
43
44 #endif
45 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */