-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmain.c
228 lines (211 loc) · 6.53 KB
/
main.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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
#include <string.h>
#include <unistd.h>
#include "ct-head/random.h"
#include "io/svg.h"
#include "math/math.h"
#include "math/poisson.h"
#define STBI_ONLY_PNG
#define STBI_ONLY_JPEG
#define STB_IMAGE_IMPLEMENTATION
#include "stb_image.h"
#define STB_DEFINE
#include "stb.h"
typedef struct {
CT_Quadtree tree;
CT_MPool vpool;
char *path;
float minDist;
float maxDist;
float dotRadius;
float gamma;
uint32_t quality;
uint32_t fg;
uint32_t bg;
uint32_t invert;
uint8_t *image;
int width;
int height;
int channels;
int textMode;
} AppState;
// clang-format off
static AppState state = {
.minDist = 2.0f,
.maxDist = 10.0f,
.dotRadius = 1.0f,
.quality = 1e2,
.gamma = 3.0f,
.invert = 0,
.bg = 0xffffff,
.fg = 0x0000ff,
.textMode = 0
};
// clang-format on
static float disc_gen(CT_Quadtree *t, CT_Circle2f *disc, void *s) {
ct_set2fxy(&disc->pos, ct_rand_normpos() * t->root.w,
ct_rand_normpos() * t->root.h);
size_t x = (size_t)disc->pos.x;
size_t y = (size_t)disc->pos.y;
AppState *state = (AppState *)s;
float tt = (float)state->image[y * state->width + x] / 255.f;
if (state->invert) {
tt = 1.0f - tt;
}
return disc->r =
ct_mixf(state->minDist, state->maxDist, powf(tt, state->gamma));
}
static int poisson_svg(AppState *state) {
ct_svg_start_doc(stdout, ct_svg_attribs(1, 2, SVG_INT("width", state->width),
SVG_INT("height", state->height)));
ct_svg_write_rect(stdout, 0, 0, state->width, state->height,
ct_svg_attribs(1, 1, SVG_HEX("fill", state->bg)));
ct_svg_start_group(stdout, ct_svg_attribs(1, 2, SVG_STR("stroke", "none"),
SVG_HEX("fill", state->fg)));
size_t count = 0;
size_t failed = 0;
CT_Vec2f *p = (CT_Vec2f *)ct_mpool_alloc(&state->vpool);
while (1) {
if (!ct_poisson_sample2f_with(&state->tree, disc_gen, (void *)state, 5,
p)) {
ct_svg_write_circle(stdout, p->x, p->y, state->dotRadius, NULL);
p = (CT_Vec2f *)ct_mpool_alloc(&state->vpool);
count++;
failed = 0;
} else if (++failed > state->quality) {
break;
}
}
ct_svg_end_group(stdout);
ct_svg_end_doc(stdout);
fprintf(stderr, "%zu points", count);
return 0;
}
static int poisson_txt(AppState *state) {
size_t count = 0;
size_t failed = 0;
CT_Vec2f *p = (CT_Vec2f *)ct_mpool_alloc(&state->vpool);
while (1) {
if (!ct_poisson_sample2f_with(&state->tree, disc_gen, (void *)state, 5,
p)) {
fprintf(stdout, "%1.3f,%1.3f\n", p->x, p->y);
p = (CT_Vec2f *)ct_mpool_alloc(&state->vpool);
count++;
failed = 0;
} else if (++failed > state->quality) {
break;
}
}
fprintf(stderr, "%zu points", count);
return 0;
}
static inline uint8_t luminance(uint8_t r, uint8_t g, uint8_t b) {
return (uint8_t)(((uint32_t)r + r + r + b + g + g + g + g) >> 3);
}
static void grayscale_image(AppState *state) {
size_t size = state->width * state->height;
uint8_t *gray = malloc(size);
for (size_t i = 0, j = 0; i < size; i++, j += state->channels) {
gray[i] =
luminance(state->image[j], state->image[j + 1], state->image[j + 2]);
}
stbi_image_free(state->image);
state->image = gray;
}
static int convert(AppState *state) {
// clang-format on
state->image = stbi_load(state->path, &state->width, &state->height,
&state->channels, 0);
if (state->image == NULL) {
fprintf(stderr, "error loading image: %s\n", state->path);
return 1;
}
fprintf(stderr, "min: %f, max: %f, r: %f, q: %u, fg: %06x, bg: %06x\n",
state->minDist, state->maxDist, state->dotRadius, state->quality,
state->fg, state->bg);
fprintf(stderr, "image size: %d x %d @ %d\n", state->width, state->height,
state->channels);
if (state->channels > 1) {
grayscale_image(state);
}
srand(time(0));
ct_qtree_init(&state->tree, 0, 0, state->width, state->height, 0x4000);
ct_mpool_init(&state->vpool, 0x4000, sizeof(CT_Vec2f));
int res = (state->textMode ? poisson_txt(state) : poisson_svg(state));
ct_mpool_free(&state->vpool);
ct_qtree_free(&state->tree);
return res;
}
static void usage(const AppState *state) {
fprintf(stderr, "Usage:\tex-poisson [options] image [ > out.svg ]\n");
fprintf(stderr, "\t-b HEX\t\tbg color (default: %06x)\n", state->bg);
fprintf(stderr, "\t-f HEX\t\tfg color (default: %06x)\n", state->fg);
fprintf(stderr, "\t-g FLOAT\tgamma (default: %1.2f)\n", state->gamma);
fprintf(stderr, "\t-i\t\tinvert (also swaps fg/bg) (default: %s)\n",
state->invert ? "yes" : "no");
fprintf(stderr, "\t-m FLOAT\tmin distance (default: %1.2f)\n",
state->minDist);
fprintf(stderr, "\t-x FLOAT\tmax distance (default: %1.2f)\n",
state->maxDist);
fprintf(stderr, "\t-r FLOAT\tdot radius (default: %1.2f)\n",
state->dotRadius);
fprintf(stderr, "\t-q INT\t\tquality (default: %u)\n", state->quality);
fprintf(stderr, "\t-t\t\toutput points as text only (default: no)\n");
}
int main(int argc, char **argv) {
char c;
uint8_t err = 0;
while (!err && (c = getopt(argc, argv, "b:f:g:im:q:r:tx:")) != -1) {
switch (c) {
case 'm':
state.minDist = ct_parse_float(optarg, state.minDist);
break;
case 'x':
state.maxDist = ct_parse_float(optarg, state.maxDist);
break;
case 'r':
state.dotRadius = ct_parse_float(optarg, state.dotRadius);
break;
case 'g':
state.gamma = ct_parse_float(optarg, state.gamma);
break;
case 'q':
state.quality = (uint32_t)ct_parse_float(optarg, state.quality);
break;
case 'f':
state.fg = ct_parse_hex32(optarg, state.fg);
break;
case 'b':
state.bg = ct_parse_hex32(optarg, state.bg);
break;
case 'i':
state.invert = !state.invert;
state.fg ^= state.bg;
state.bg ^= state.fg;
state.fg ^= state.bg;
break;
case 't':
state.textMode = 1;
break;
case '?':
fprintf(stderr, "Option -%c requires an argument\n", optopt);
err = 1;
break;
default:
err = 1;
}
}
if (!err && optind >= argc) {
fprintf(stderr, "Missing input file\n");
err = 1;
}
if (!err && optind < argc - 1) {
fprintf(stderr, "Extraneous arguments given\n");
err = 1;
}
if (err) {
usage(&state);
return 1;
}
state.path = argv[optind];
return convert(&state);
}