-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathknn_flann.c
204 lines (161 loc) · 4.87 KB
/
knn_flann.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
#include <stdlib.h>
#include <stdio.h>
#include <glib.h>
#include "flann/flann.h"
// TYPES
typedef struct COORD_FILE {
float* dataset;
int rows;
int cols;
} COORD_FILE;
// GLOBALS
gchar* input_coordinates = NULL;
int nn = 5;
gdouble precision = 0.9;
gboolean output_indices = FALSE;
gboolean use_kdtree = TRUE;
// COMMAND LINE OPTS
static GOptionEntry entries[] =
{
{ "input_coordinates", 'i', 0, G_OPTION_ARG_FILENAME, &input_coordinates, "Input coordinates", "input_coordinates" },
{ "nn", 'n', 0, G_OPTION_ARG_INT, &nn, "Nearest Neighbors", "nn" },
{ "output_indices", 'O', 0, G_OPTION_ARG_NONE, &output_indices, "Output indices to stdout", "output_indices" },
{ "precision", 'p', 0, G_OPTION_ARG_DOUBLE, &precision, "Precision of nearest neighbors [0.9]", "output_indices" },
{ "use_kdtree", 'k', 0, G_OPTION_ARG_NONE, &use_kdtree, "Use a kdtree for nn search", "use_kdtree" },
{ NULL }
};
/*
*/
COORD_FILE load_coords( const gchar *filename ) {
COORD_FILE ret_file;
// open the file
GError *error = NULL;
GIOChannel* input_channel = g_io_channel_new_file(filename,"r",&error);
if( input_channel == NULL ) {
g_error( "Error opening %s\n", filename );
exit(0);
}
// parse lines
int num_points = 0;
int num_columns = 0;
gchar* str_return = NULL;
gsize length = 0;
gsize terminator_pos = 0;
GIOStatus g_status = g_io_channel_read_line( input_channel,
&str_return,
&length,
&terminator_pos,
&error);
while( str_return != NULL ) {
if( num_columns == 0 ) {
gchar** tokens = g_strsplit( g_strstrip( str_return ),
",",
0);
gint token_idx = 0;
while( tokens[token_idx] != NULL ) {
token_idx++;
}
g_strfreev( tokens );
num_columns = token_idx;
}
g_free( str_return );
g_status = g_io_channel_read_line( input_channel,
&str_return,
&length,
&terminator_pos,
&error);
num_points++;
}
ret_file.dataset = (float*) malloc(sizeof(float)*num_points*num_columns);
ret_file.rows = num_points;
ret_file.cols = num_columns;
// clean up
g_status = g_io_channel_shutdown( input_channel,
TRUE,
&error);
// reopen the file
input_channel = g_io_channel_new_file(filename,"r",&error);
if( input_channel == NULL ) {
g_error( "Error re-opening %s\n", filename );
exit(0);
}
// parse lines
num_points = 0;
str_return = NULL;
length = 0;
terminator_pos = 0;
g_status = g_io_channel_read_line( input_channel,
&str_return,
&length,
&terminator_pos,
&error);
while( str_return != NULL ) {
num_columns = 0;
gchar** tokens = g_strsplit( g_strstrip( str_return ),
",",
0);
gint token_idx = 0;
while( tokens[token_idx] != NULL ) {
ret_file.dataset[num_points*ret_file.cols+token_idx] =
(float)g_ascii_strtod( tokens[token_idx], NULL );
token_idx++;
}
g_strfreev( tokens );
num_columns = token_idx;
g_free( str_return );
g_status = g_io_channel_read_line( input_channel,
&str_return,
&length,
&terminator_pos,
&error);
num_points++;
}
// clean up
g_status = g_io_channel_shutdown( input_channel,
TRUE,
&error);
return ret_file;
}
int main (int argc, char* argv[]) {
GError *error = NULL;
// parse command line
GOptionContext *context = g_option_context_new("- Compute mean precision recall values with optional confidence intervals (for sampled means).");
g_option_context_add_main_entries (context, entries, NULL);
if (!g_option_context_parse (context, &argc, &argv, &error)) {
g_error ("option parsing failed: %s\n", error->message);
exit ( 1 );
}
if( input_coordinates == NULL ) {
g_error("Problem opening %s\n",input_coordinates);
exit(1);
}
COORD_FILE coord_file = load_coords( input_coordinates );
/* allocate memory for the nearest-neighbors indices */
int* result = (int*) malloc(coord_file.rows*nn*sizeof(int));
/* allocate memory for the distances */
float* dists = (float*) malloc(coord_file.rows*nn*sizeof(float));
/* index parameters are stored here */
struct FLANNParameters p = DEFAULT_FLANN_PARAMETERS;
p.algorithm = FLANN_INDEX_AUTOTUNED;
p.target_precision = precision;
if( use_kdtree ) {
p.algorithm = FLANN_INDEX_KDTREE;
p.target_precision = -1;
}
flann_find_nearest_neighbors(coord_file.dataset, coord_file.rows, coord_file.cols, coord_file.dataset, coord_file.rows,
result, dists, nn, &p);
if( output_indices ) {
for( int i = 0; i < coord_file.rows; i++ ) {
for( int j = 0; j < nn; j++ ) {
printf("%d",result[i*nn+j]);
if( j < nn-1 )
printf(",");
}
printf("\n");
}
}
free(coord_file.dataset);
free(result);
free(dists);
return 0;
}