forked from liuliu/ccv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
swtdetect.c
68 lines (65 loc) · 1.64 KB
/
swtdetect.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include "ccv.h"
#include <sys/time.h>
#include <ctype.h>
unsigned int get_current_time()
{
struct timeval tv;
gettimeofday(&tv, 0);
return tv.tv_sec * 1000 + tv.tv_usec / 1000;
}
int main(int argc, char** argv)
{
ccv_enable_default_cache();
ccv_dense_matrix_t* image = 0;
ccv_read(argv[1], &image, CCV_IO_GRAY | CCV_IO_ANY_FILE);
if (image != 0)
{
unsigned int elapsed_time = get_current_time();
ccv_array_t* words = ccv_swt_detect_words(image, ccv_swt_default_params);
elapsed_time = get_current_time() - elapsed_time;
if (words)
{
int i;
for (i = 0; i < words->rnum; i++)
{
ccv_rect_t* rect = (ccv_rect_t*)ccv_array_get(words, i);
printf("%d %d %d %d\n", rect->x, rect->y, rect->width, rect->height);
}
printf("total : %d in time %dms\n", words->rnum, elapsed_time);
ccv_array_free(words);
}
ccv_matrix_free(image);
} else {
FILE* r = fopen(argv[1], "rt");
if (argc == 3)
chdir(argv[2]);
if(r)
{
size_t len = 1024;
char* file = (char*)malloc(len);
ssize_t read;
while((read = getline(&file, &len, r)) != -1)
{
while(read > 1 && isspace(file[read - 1]))
read--;
file[read] = 0;
image = 0;
printf("%s\n", file);
ccv_read(file, &image, CCV_IO_GRAY | CCV_IO_ANY_FILE);
ccv_array_t* words = ccv_swt_detect_words(image, ccv_swt_default_params);
int i;
for (i = 0; i < words->rnum; i++)
{
ccv_rect_t* rect = (ccv_rect_t*)ccv_array_get(words, i);
printf("%d %d %d %d\n", rect->x, rect->y, rect->width, rect->height);
}
ccv_array_free(words);
ccv_matrix_free(image);
}
free(file);
fclose(r);
}
}
ccv_drain_cache();
return 0;
}