]> mj.ucw.cz Git - libucw.git/blob - images/config.c
- detection of textured images
[libucw.git] / images / config.c
1 /*
2  *      Image Library -- Configuration
3  *
4  *      (c) 2006 Pavel Charvat <pchar@ucw.cz>
5  */
6
7 #undef LOCAL_DEBUG
8
9 #include "lib/lib.h"
10 #include "lib/conf.h"
11 #include "images/images.h"
12 #include "images/signature.h"
13
14 #include <string.h>
15
16 uns image_sig_min_width;
17 uns image_sig_min_height;
18 uns *image_sig_prequant_thresholds;
19 uns image_sig_postquant_min_steps;
20 uns image_sig_postquant_max_steps;
21 uns image_sig_postquant_threshold;
22 double image_sig_textured_threshold;
23
24 static struct cf_section sig_config = {
25   CF_ITEMS{
26     CF_UNS("MinWidth", &image_sig_min_width),
27     CF_UNS("MinHeight", &image_sig_min_height),
28     CF_UNS_DYN("PreQuantThresholds", &image_sig_prequant_thresholds, CF_ANY_NUM),
29     CF_UNS("PostQuantMinSteps", &image_sig_postquant_min_steps),
30     CF_UNS("PostQuantMaxSteps", &image_sig_postquant_max_steps),
31     CF_UNS("PostQuantThreshold", &image_sig_postquant_threshold),
32     CF_DOUBLE("TexturedThreshold", &image_sig_textured_threshold),
33     CF_END
34   }
35 };
36
37 static void CONSTRUCTOR
38 images_init_config(void)
39 {
40   cf_declare_section("ImageSig", &sig_config, 0);
41 }