forked from golanlevin/QR_STENCILER
-
Notifications
You must be signed in to change notification settings - Fork 0
/
QR_STENCILER.pde
372 lines (315 loc) · 15.9 KB
/
QR_STENCILER.pde
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
// Author: "Golan Levin" <[email protected]>
//=====================================================================
void QRStencilerInfo() {
//
// ___ ___ ___ _____ ___ _ _ ___ ___ _ ___ ___
// / _ \| _ \ / __|_ _| __| \| |/ __|_ _| | | __| _ \
// | (_) | / \__ \ | | | _|| .` | (__ | || |__| _|| /
// \__\_\_|_\ |___/ |_| |___|_|\_|\___|___|____|___|_|_\
// By Golan Levin and Asa Foster III for FFFFF.AT, 2011
//
println ();
println (" ********************************************************");
println (" * *");
println (" * QR_STENCILER *");
println (" * Version: 01 August, 2011 *");
println (" * http://fffff.at/qr-stenciler-and-qr-hobo-codes/ *");
println (" * By Golan Levin and Asa Foster III for FFFFF.AT *");
println (" * Developed with Processing v.0198, a free, cross- *");
println (" * platform Java programming toolkit for the arts. *");
println (" * *");
println (" * ABOUT *");
println (" * This free program loads a user-specified QR code *");
println (" * image, from which it generates a topologically *");
println (" * correct stencil PDF, suitable for laser-cutting. *");
println (" * *");
println (" * INSTRUCTIONS *");
println (" * >> QR_STENCILER has been tested in MacOSX 10.6.8. *");
println (" * 1. Make a QR code image which embeds a short text. *");
println (" * Try GoQR.me, Kaywa, or the Google Chart API. *");
println (" * 2. Download and install 'Processing' from *");
println (" * http://www.processing.org/download *");
println (" * We used v.0198 but v.1.5.1 seems OK too. *");
println (" * 3. Unzip 'QR_STENCILER.zip' to a folder. *");
println (" * 4. Put your QR code image in 'QR_STENCILER/data/' *");
println (" * 5. Launch Processing and open 'QR_STENCILER.pde' *");
println (" * 6. Press 'Run' (Command-R) to start the stenciler. *");
println (" * 7. You will be prompted to Open your QR code image. *");
println (" * A default will be opened if none is provided. *");
println (" * 8. After doing so, the program will generate a *");
println (" * stencil PDF in the 'data' folder. *");
println (" * 9. That PDF can now be opened in your favorite CAD *");
println (" * software, for laser-cutting cardboard, etc. *");
println (" * 10.After marking your stencil, test it with a QR *");
println (" * reader, such as TapMedia's free iPhone app. *");
println (" * *");
println (" * LICENSE *");
println (" * QR_STENCILER shall be used for Good, not Evil. *");
println (" * It is licensed under a Creative Commons *");
println (" * Attribution-NonCommercial-ShareAlike 3.0 Unported *");
println (" * License (by-nc-sa 3.0), as described at *");
println (" * http://creativecommons.org/licenses/by-nc-sa/3.0/ *");
println (" * You are free to distribute, remix, and modify *");
println (" * QR_STENCILER, so long as you share alike and *");
println (" * provide attribution to FFFFF.AT. The repackaging *");
println (" * of QR_STENCILER as or into commercial software, is *");
println (" * expressly prohibited. Please note that QR_STENCILER *");
println (" * also enjoys protections under the GRL Repercussions *");
println (" * 3.0 license, http://bit.ly/cc-repercussions. *");
println (" * For other uses, please contact FFFFF.AT. *");
println (" * The 100 QR_HOBO_CODES and their respective stencils *");
println (" * are hereby dedicated to the public domain. *");
println (" * *");
println (" * WARRANTY *");
println (" * This software is provided AS IS, without warranty *");
println (" * of any kind, expressed or implied, including but *");
println (" * not limited to the warranties of merchantibility, *");
println (" * fitness for a particular purpose, and noninfringe- *");
println (" * ment. In no event shall the authors be liable for *");
println (" * any claim, damages or other liability, whether in *");
println (" * an action of contract, tort or otherwise, arising *");
println (" * from, out of or in connection with this software *");
println (" * or its use. *");
println (" * *");
println (" * ACKNOWLEDGEMENTS *");
println (" * QR_STENCILER was created by Golan Levin and *");
println (" * Asa Foster III with support from the STUDIO for *");
println (" * Creative Inquiry and the School of Art at *");
println (" * Carnegie Mellon University. Thanks to Ben Fry, *");
println (" * Marcus Beausang, Neil Brown & Judy Robertson for *");
println (" * great code. A tip of the hat to Fred Trotter, *");
println (" * Jovino, le Suedois, Patrick Donnelly and others *");
println (" * who have gone down similar paths. Additional *");
println (" * thanks to Andrea Boykowycz for creative input. *");
println (" * Some of the QR Hobo Codes are inspired by: *");
println (" * http://www.worldpath.net/~minstrel/hobosign.htm *");
println (" * http://cockeyed.com/archive/hobo/modern_hobo.html *");
println (" * http://en.wikipedia.org/wiki/Warchalking *");
println (" * 'QR code' is trademarked by Denso Wave, Inc. *");
println (" * *");
println (" * CONTACT *");
println (" * Inquiries about QR_STENCILER may be directed to: *");
println (" * Golan Levin <[email protected]> *");
println (" * *");
println (" ********************************************************");
println ();
}
import processing.pdf.*;
import javax.swing.*;
import javax.swing.filechooser.FileFilter;
import controlP5.*;
//=====================================================================
// ADJUSTABLE PARAMETERS: You can change these, if you so desire
//
float BRIDGE_THICKNESS = 0.17; // Ratio of bridge thickness to QR grid size, i.e. 1:6
float PDF_LINE_THICKNESS = 0.50; // For 0.001" thick lines, use 0.072.
float BRIDGE_CULLING_FACTOR = 0.60; // Set between 0..1; Higher values cull more bridges.
int MIN_BRIDGES_PER_ISLAND = 3; // Just what it says
int CORNER_THICKENING = 3; // Number of pixels of corner thickening.
int ARC_RESOLUTION = 12; // Number of points on a generated circular arc corner.
boolean DO_WHITE_PAINT_STENCIL = false;
boolean DO_ROUNDED_CORNERS = true; // Enables corner rounding and path simplification.
boolean USE_BEZIER_NOT_ARCS = false; // Enables Bezier exporting instead of generating arc points.
boolean DO_ADVANCED_BRIDGING = true; // Chooses between advanced and simple bridging.
boolean DO_ALL_COMPUTED_BRIDGES = false; // Invalidates RANDOM_BRIDGE_CULLING_FACTOR
boolean DO_OPEN_PDF_WHEN_DONE = false; // Open the stencil PDF in Acrobat when done?
//=====================================================================
// For more information about generating your own QR codes, see:
// http://code.google.com/apis/chart/image/docs/gallery/qr_codes.html
// Note: You may obtain better results by experimenting with the QR
// "error correction level" (L,M,Q,H) in the "chld" field.
//
// Our default QR code image ("hello world") is from:
// https://chart.googleapis.com/chart?chs=540x540&cht=qr&chld=L|1&chl=hello%20world
String QRDefaultImageFilename;
String QRImageFilename;
String QRStencilPDFFilename;
boolean bComputedStencilPDF = false;
PImage QR;
ControlP5 controlP5;
CheckBox checkbox;
Slider slider0;
Slider slider1;
Slider slider2;
Slider slider3;
Slider slider4;
Bang bang1;
Bang bang2;
Textlabel myTextlabelA;
//=====================================================================
// Other internal (global) variables and constants.
//
ConnectedComponentLabeler CCL; // Determines which pixels are holes/islands
ContourTracer CT; // Traces hole contours for PDF output
PFont tinyPdfFont;
boolean bCompleted;
boolean bSetupPhase;
int blackAndWhiteImage[];
int blackAndWhiteImageInverse[];
int coloredLabeledImage[];
int nPixels;
final color white = color(255);
final color black = color(0);
final int inverseMargin = 1;
final int controlPanelWidth = 250;
final int DIR_UP = 0;
final int DIR_DOWN = 1;
final int DIR_LEFT = 2;
final int DIR_RIGHT = 3;
//===============================================================
void setup() {
bSetupPhase = true;
QRStencilerInfo();
QRDefaultImageFilename = sketchPath + "/data/" + "QR_hello_world.png";
QRImageFilename = getUserSelectedQRCodeImageFilename(); // See FileLoading.pde
QR = loadImage (QRImageFilename);
size (1000, 750, JAVA2D);
nPixels = QR.width * QR.height;
blackAndWhiteImage = new int[nPixels];
blackAndWhiteImageInverse = new int[nPixels];
coloredLabeledImage = new int[nPixels];
CCL = new ConnectedComponentLabeler (QR.width, QR.height);
CT = new ContourTracer();
bCompleted = false;
hint (ENABLE_NATIVE_FONTS);
tinyPdfFont = createFont("Arial", 6);
setupGUI(); // see Gui.pde
bSetupPhase = false;
}
//===============================================================
void draw() {
if (bCompleted == false) {
doMainProcess();
bCompleted = true;
}
}
//===============================================================
void keyPressed() {
// Restart computation of a new stencil. Useful if you have some randomization enabled.
if (key == ' ') {
bCompleted = false;
}
}
//===============================================================
void doMainProcess() {
// This is the main processing routine for the program.
// Assuming PImage QR contains a valid QR code image,
// this routine will export a PDF stencil file for it.
// 1. Extract the pixels (as a color[] array) from the loaded QR image.
// See Utils.pde for implementation.
copyBlackAndWhiteImageFromPImage (QR); // see Utils.pde
println("* Extracted pixels.");
// 2. Some jpgs have compression artifacts that produce "near-black" or "near-white"; enforce pure colors.
// See Utils.pde for implementation.
binarizeTheImage (blackAndWhiteImage, QR.width, QR.height); // see Utils.pde
println("* Input image binarized.");
// 3. Thicken the corners of adjacent grid units, creating a stronger and more effective stencil.
// See Bridger.pde for implementation.
bridgeCorners (blackAndWhiteImage, QR.width, QR.height);
println("* Stencil interior corners bridged.");
// 4. Deal with white-painted QR stenciling, if requested.
// Involves adding a margin and inversion.
// See Utils.pde for implementation.
handleInverseStencil();
// 5. Uniquely label (with individual colors) each of the blobs; this identifies "islands".
// See: http://en.wikipedia.org/wiki/Connected-component_labeling
// See: http://en.wikipedia.org/wiki/Stencil
// See ConnectedComponentLabeler.pde for implementation.
coloredLabeledImage = CCL.doLabel(blackAndWhiteImage, QR.width, QR.height);
println("* Stencil islands identified.");
// 6. Create bridges from the main stencil body to all floaters... so they don't fall out!
// See Bridger.pde for implementation.
// bridgeIslands (blackAndWhiteImage, QR.width, QR.height);
bridgeIslands (blackAndWhiteImage, QR.width, QR.height);
println("* Stencil islands bridged.");
// 7. Invert the QR image, so that we can find its *holes* with the contour tracer.
// See Utils.pde for implementation.
computeBlackAndWhiteInverseBuffer (blackAndWhiteImage, blackAndWhiteImageInverse, nPixels);
println("* Stencil inverted, for hole-finding.");
// 8. Uniquely label all of the holes in the stencil.
// See ConnectedComponentLabeler.pde for implementation.
coloredLabeledImage = CCL.doLabel(blackAndWhiteImageInverse, QR.width, QR.height);
println("* Stencil holes identified.");
// 9. Trace all of the holes, producing vector-based 8-connected chain codes. See:
// http://imageprocessingplace.com/downloads_V3/root_downloads/tutorials/contour_tracing_Abeer_George_Ghuneim/alg.html
// See ContourExtraction.pde for implementation.
CT.traceBlobContours (coloredLabeledImage, QR.width, QR.height);
println("* Stencil holes traced.");
// 10. Draw the contours (chain codes) of the holes, and export a PDF of the result.
// This PDF can now be loaded into Illustrator, etc. and used for laser-cutting.
String QrPdfFileName = drawAndExportPDF(); // See below for implementation.
println("* Stencil PDF exported to the 'data' folder of this sketch:\n " + QrPdfFileName);
// 11. Draw the QR to the screen, as it will appear and with the exported stencil contour lines.
drawPrettyResultsToScreen();
println (" Done creating QR stencil at " + hour() + ":" + minute() + ":" + second() + " \n");
println (" ********************************************************");
}
//===============================================================
void drawPrettyResultsToScreen() {
background ((DO_WHITE_PAINT_STENCIL) ? black : white);
fill (100);
rect(0, 0, controlPanelWidth, height);
boolean bCenterVersusScale = true;
pushMatrix();
float drawMargin = 50;
float scaleFactor = (float)(height - drawMargin*2) / (float)(max(QR.height, QR.width));
translate(controlPanelWidth, 0);
translate(drawMargin, drawMargin);
scale (scaleFactor, scaleFactor);
stroke(255, 0, 128);
strokeWeight(1.0/scaleFactor);
fill ((DO_WHITE_PAINT_STENCIL) ? white : black);
if (DO_ROUNDED_CORNERS) {
CT.drawAllChainsWithFilletedCorners();
}
else {
CT.drawAllChains();
}
popMatrix();
}
//===============================================================
String drawAndExportPDF() {
// generate the filename for the stencil PDF.
int QRImageFilenameLen = QRImageFilename.length();
String QR_PDFFilename = QRImageFilename.substring(0, QRImageFilename.lastIndexOf('.'));
String QR_PdfFullFilename = QR_PDFFilename;
if (DO_WHITE_PAINT_STENCIL) {
QR_PdfFullFilename += "_inverse";
}
QR_PdfFullFilename += ".pdf";
QRStencilPDFFilename = QR_PdfFullFilename;
beginRecord(PDF, QR_PdfFullFilename);
// Generate the text written on the QR code stencil
boolean bDrawTitleText = true;
if (bDrawTitleText) {
String QR_StencilText = QRImageFilename.substring(QRImageFilename.lastIndexOf('/')+1, QRImageFilename.lastIndexOf('.'));
if (DO_WHITE_PAINT_STENCIL) {
QR_StencilText += " (for LIGHT/WHITE marking) ";
}
else {
QR_StencilText += " (for DARK/BLACK marking) ";
}
QR_StencilText += " --- Generated by QR_STENCILER, http://fffff.at/qr-stenciler-and-qr-hobo-codes/";
fill(0, 0, 0);
textFont(tinyPdfFont, 6);
text(QR_StencilText, 10, 10);
}
pushMatrix();
translate((width - QR.width)/2.0, (height - QR.height)/2.0);
strokeWeight (PDF_LINE_THICKNESS);
stroke(0, 0, 0);
noFill();
if (DO_ROUNDED_CORNERS) {
CT.drawAllChainsWithFilletedCorners();
}
else {
CT.drawAllChains();
}
popMatrix();
endRecord();
bComputedStencilPDF = true;
if (DO_OPEN_PDF_WHEN_DONE) {
open (QR_PdfFullFilename);
}
return QR_PdfFullFilename;
}