-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSpoutSort.pde
More file actions
690 lines (530 loc) · 13.3 KB
/
SpoutSort.pde
File metadata and controls
690 lines (530 loc) · 13.3 KB
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
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
/*
SpoutSort
xj | 2018 | @try_miga
based on:
ASDF Pixel Sort
Kim Asendorf | 2010 | kimasendorf.com
many thanks to folks at spout.zeal.co for being nice
*/
String brag = "(ɔ) xj 2019 all rights reversed et caetera";
import spout.*;
import processing.video.*;
import processing.sound.*;
//DECLARING ALL THE SPOUT STUFF HERE
Spout spout;
String senderName = "SpoutSort";
String[] controlName = new String[3];
int[] controlType = new int[3];
float[] controlValue = new float[3];
String[] controlText = new String[3];
//FILE OPENING STUFF HERE
boolean fileSelected;
String filename;
Movie movie;
float playbackSpeed;
boolean imageRendered;
//processing image stuff
PGraphics pgr;
PImage img;
// sorting modes: 0 = RED 1 = brightness 2 = GREEN 3 = KURWA HEX :DDDDD TODO: zrobi sie potem
int mode = 1;
int TOTAL_NUM_OF_MODES = 4; //this is used for Spout controls
// 0 = vertical 1 = horizontal 2 = both?! TODO: change to Left, Right, Up, Down
int direction = 0;
int threshold = 80;
int maxThreshold = 100; //this is used for Spout controls
int blackValue;
int whiteValue;
int brightnessValue;
int row;
int column;
boolean displayWords;
boolean looping = true;
long currTime, prevTime;
long elapsedTime;
//SOUND CONTROL
//we don't want no sound to play, right?
Sound s;
void setup() {
// use only numbers (not variables) for the size() command, Processing 3
size(1280, 720, P3D);
colorMode(RGB);
noSmooth(); //who the korva needs anti-aliasing
// allow resize and update surface to image dimensions
surface.setResizable(true);
textureMode(NORMAL);
background(0);
pgr = createGraphics(width,height, PConstants.P2D);
img = createImage(width, height, ARGB);
displayWords = true;
//file opening stuff
fileSelected = false;
playbackSpeed = 1;
//SPOUT STUFF NOW
spout = new Spout(this);
spout.createSender(senderName, width, height);
spout.createSpoutControl("Sorting mode", "float", 0, 2, 1);
spout.createSpoutControl("Threshold value", "float", 0, 255, 127);
spout.createSpoutControl("Direction", "float", 0, 2, 0);
spout.openSpoutControls(senderName);
//frameRate(30); // :)
//sound control:
s = new Sound(this);
s.volume(0);
}
void draw() {
// get inputs from spout controls
int nControls = spout.checkSpoutControls(controlName, controlType, controlValue, controlText);
//print("nControls = " + nControls + "\n");
//print();
if (nControls > 0) {
for (int i = 0; i < nControls; i++) {
//print("(" + i + ") : [" + controlName[i] + "] : Type [" + controlType[i] + "] : Value [" + controlValue[i] + "] : Text [" + controlText[i] + "]" + "\n");
if (controlName[i].equals("Sorting mode")) {
mode = (int)controlValue[i];
}
if (controlName[i].equals("Threshold value")) {
threshold = (int)controlValue[i];
}
if(controlName[i].equals("Direction")){
direction = (int)controlValue[i];
}
}
}
//file opening
if(!fileSelected){
selectInput("Select a file to process:", "selectFile");
while(!fileSelected){
delay(200);
}
movie = new Movie(this, filename);
movie.volume(0);
movie.loop();
movie.frameRate(30);
}
String trueWords = "current file: "+filename ;
if(!imageRendered){
if(movie.available())
movie.read();
img.resize(movie.width, movie.height);
img.copy(movie, 0,0, movie.width, movie.height, 0,0, movie.width, movie.height);
// background(0, 100);
// img = spout.receivePixels(img);
row = 0;
column = 0;
//change tresholds:
//brightnessValue = brightnessStartV + int(sin(radians(frameCount)) * brightnessValueFlux);
//blackValue = blackStartV + int(sin(radians(frameCount)) * blackValueFlux);
//whiteValue = whiteStartV + int(sin(radians(frameCount)) * whiteValueFlux);
brightnessValue = threshold;
blackValue = threshold;
whiteValue = threshold;
trueWords += "\ncurrent mode: ";
img.loadPixels();
switch(mode) {
case 0:
trueWords += " black.\n current threshold: "+blackValue;
blackSort();
break;
case 1:
trueWords += "brightness.\n current threshold: "+brightnessValue;
brightSort();
break;
case 2:
trueWords += "white.\n current threshold: "+whiteValue;
whiteSort();
break;
default:
break;
}
trueWords +=" ";
trueWords += direction == 0 ? "|||" : direction == 1 ? "===" : "///";
img.updatePixels();
//background(0);
if(img.width != width || img.height != height){
PImage newimage = img.copy();
float ratio = img.width/img.height;
int newheight = img.height > height ? height : img.height;
int newidth = (int)(ratio*newheight);
//newimage.resize(newidth, newheight);
image(newimage, width - newidth, 0, newidth, newheight);
}else
image(img, 0,0);
if(displayWords){
trueWords += "\n\nprocessed frames: "+frameCount;
trueWords += "\nfps: "+frameRate;
trueWords += "\nplayback speed multiplier: "+playbackSpeed;
textSize(20);
fill(0, 64);
rect(10, 10, 400, 440);
fill(255, 255, 0);
text(trueWords, 10, 10, 400, 440);
text(brag.subSequence(0,6).toString()+brag.substring(7).toUpperCase(), width - 444, height - 25, width, height);
}
if(isItAnImage(filename)){
imageRendered = true;
}
}
spout.resizeFrame();
spout.sendTexture(img);
}
void blackSort(){
// loop through columns
if(direction % 2 ==0){
while(column < img.width-1) {
//println("Sorting Column " + column);
sortBlackColumn();
column++;
}
}
// loop through rows
if(direction >= 1){
while(row < img.height-1) {
//println("Sorting Row " + column);
sortBlackRow();
row++;
}
}
}
void brightSort(){
// loop through columns
if(direction % 2 ==0){
while(column < img.width-1) {
//println("Sorting Column " + column);
sortBrightColumn();
column++;
}
}
if(direction >= 1){
// loop through rows
while(row < img.height-1) {
//println("Sorting Row " + column);
sortBrightRow();
row++;
}
}
}
void whiteSort(){
if(direction % 2 == 0){
// loop through columns
while(column < img.width-1) {
//println("Sorting Column " + column);
sortWhiteColumn();
column++;
}
}
// loop through rows
if(direction >= 1){
while(row < img.height-1) {
//println("Sorting Row " + column);
sortWhiteRow();
row++;
}
}
}
void sortThisRow(int x, int xend, int y){
int sortLength = xend-x;
color[] unsorted = new color[sortLength];
color[] sorted = new color[sortLength];
for(int i=0; i<sortLength; i++) {
unsorted[i] = img.pixels[x + i + y * img.width];
}
sorted = sort(unsorted);
for(int i=0; i<sortLength; i++) {
img.pixels[x + i + y * img.width] = sorted[i];
}
}
void sortThisColumn(int x, int y, int yend){
int sortLength = yend-y;
color[] unsorted = new color[sortLength];
color[] sorted = new color[sortLength];
for(int i=0; i<sortLength; i++) {
unsorted[i] = img.pixels[x + (y+i) * img.width];
}
sorted = sort(unsorted);
for(int i=0; i<sortLength; i++) {
img.pixels[x + (y+i) * img.width] = sorted[i];
}
}
void sortBlackRow() {
// current row
int y = row;
// where to start sorting
int x = 0;
// where to stop sorting
int xend = 0;
while(xend < img.width-1) {
x = getFirstNotBlackX(x, y);
xend = getNextBlackX(x, y);
if(x < 0) break;
sortThisRow(x, xend, y);
x = xend+1;
}
}
void sortBlackColumn() {
// current column
int x = column;
// where to start sorting
int y = 0;
// where to stop sorting
int yend = 0;
while(yend < img.height-1) {
y = getFirstNotBlackY(x, y);
yend = getNextBlackY(x, y);
if(y < 0) break;
sortThisColumn(x, y, yend);
y = yend+1;
}
}
void sortBrightRow() {
// current row
int y = row;
// where to start sorting
int x = 0;
// where to stop sorting
int xend = 0;
while(xend < img.width-1) {
x = getFirstBrightX(x, y);
xend = getNextDarkX(x, y);
if(x < 0) break;
sortThisRow(x, xend, y);
x = xend + 1;
}
}
void sortBrightColumn() {
// current column
int x = column;
// where to start sorting
int y = 0;
// where to stop sorting
int yend = 0;
while(yend < img.height-1) {
y = getFirstBrightY(x, y);
yend = getNextDarkY(x, y);
if(y < 0) break;
sortThisColumn(x, y, yend);
y = yend+1;
}
}
void sortWhiteRow() {
// current row
int y = row;
// where to start sorting
int x = 0;
// where to stop sorting
int xend = 0;
while(xend < img.width-1) {
x = getFirstNotWhiteX(x, y);
xend = getNextWhiteX(x, y);
if(x < 0) break;
sortThisRow(x, xend, y);
x = xend+1;
}
}
void sortWhiteColumn() {
// current column
int x = column;
// where to start sorting
int y = 0;
// where to stop sorting
int yend = 0;
while(yend < img.height-1) {
y = getFirstNotWhiteY(x, y);
yend = getNextWhiteY(x, y);
if(y < 0) break;
sortThisColumn(x, y, yend);
y = yend+1;
}
}
// black x
int getFirstNotBlackX(int x, int y) {
while(img.pixels[x + y * img.width] < blackValue) {
x++;
if(x >= img.width)
return -1;
}
return x;
}
int getNextBlackX(int x, int y) {
x++;
while(img.pixels[x + y * img.width] > blackValue) {
x++;
if(x >= img.width)
return img.width-1;
}
return x-1;
}
// brightness x
int getFirstBrightX(int x, int y) {
while(brightness(img.pixels[x + y * img.width]) < threshold) {
x++;
if(x >= img.width)
return -1;
}
return x;
}
int getNextDarkX(int _x, int _y) {
int x = _x+1;
int y = _y;
while(brightness(img.pixels[x + y * img.width]) > threshold) {
x++;
if(x >= img.width) return img.width-1;
}
return x-1;
}
// white x
int getFirstNotWhiteX(int x, int y) {
while(img.pixels[x + y * img.width] > threshold) {
x++;
if(x >= img.width)
return -1;
}
return x;
}
int getNextWhiteX(int x, int y) {
x++;
while(img.pixels[x + y * img.width] < threshold) {
x++;
if(x >= img.width)
return img.width-1;
}
return x-1;
}
// black y
int getFirstNotBlackY(int x, int y) {
if(y < img.height) {
while(img.pixels[x + y * img.width] < threshold) {
y++;
if(y >= img.height)
return -1;
}
}
return y;
}
int getNextBlackY(int x, int y) {
y++;
if(y < img.height) {
while(img.pixels[x + y * img.width] > threshold) {
y++;
if(y >= img.height)
return img.height-1;
}
}
return y-1;
}
// brightness y
int getFirstBrightY(int x, int y) {
if(y < img.height) {
while(brightness(img.pixels[x + y * img.width]) < threshold) {
y++;
if(y >= img.height)
return -1;
}
}
return y;
}
int getNextDarkY(int x, int y) {
y++;
if(y < img.height) {
while(brightness(img.pixels[x + y * img.width]) > threshold) {
y++;
if(y >= img.height)
return img.height-1;
}
}
return y-1;
}
// white y
int getFirstNotWhiteY(int x, int y) {
if(y < img.height) {
while(img.pixels[x + y * img.width] > threshold) {
y++;
if(y >= img.height)
return -1;
}
}
return y;
}
int getNextWhiteY(int x, int y) {
y++;
if(y < img.height) {
while(img.pixels[x + y * img.width] < threshold) {
y++;
if(y >= img.height)
return img.height-1;
}
}
return y-1;
}
void selectFile(File selection) {
if (selection == null) {
println("Window was closed or the user hit cancel.");
} else {
println("User selected " + selection.getAbsolutePath());
filename = selection.getAbsolutePath();
fileSelected = true;
}
}
boolean isItAnImage(String path) {
return (
path.endsWith(".jpg") ||
path.endsWith(".jpeg") ||
path.endsWith(".png") ) ;
}
// SELECT A SPOUT SENDER
// void mousePressed() {
// // RH click to select a sender
// if (mouseButton == RIGHT) {
// // Bring up a dialog to select a sender.
// // Spout installation required
// spout.selectSender();
// }
// }
//CHANGE VIDEO:
void mousePressed(){
//RH click to change video
if(mouseButton == RIGHT)
fileSelected = false;
}
//CHANGE MODE:
void keyPressed(){
imageRendered = false;
if(key == '1')
mode = 1;
if(key == '2')
mode = 2;
if(key == '3')
mode = 0;
if(key == '4')
direction = 0;
if(key == '5')
direction = 1;
if(key == '6')
direction = 2;
if(key == '0')
displayWords = !displayWords;
if(key=='['){
playbackSpeed -= 0.1;
movie.speed(playbackSpeed);
}
if(key==']'){
playbackSpeed += 0.1;
movie.speed(playbackSpeed);
}
if(key == '-')
threshold -= 1;
if(key == '=')
threshold += 1;
if(key == '_')
threshold -= 10;
if(key == '+')
threshold += 10;
if(key == ' ' && looping){
looping = false;
noLoop();
}
else if(key == ' ' && !looping){
looping = true;
loop();
}
}