-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHistory.txt
982 lines (813 loc) · 31.1 KB
/
History.txt
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
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
Update 0.3.4943 (18-Nov-2024)
[Modules]
- NEW: xDrops: Expermiental Drops Art Effect (WIP)
[Other]
- WebPage(Index.html); added Windows11Downloads.com
Update 0.3.4867 (15-May-2024)
[Modules]
- xPAINTER3: Changed algorithm for Colorspace RYB(Equations) + 2 New: RYB Trained1 and RYB Trained2.
Options to display work in progress.
- STIPPLING2: Various Algorithm improvements. (Dots start positions and other things)
- Voronoi: Bug Fix. +"Triangulate" option.
[Other]
Update 0.3.4686 (24-jan-2024)
[Modules]
- NEW: xPainter3: 3rd version of painter effect.
- RGB>XYZ; XYZ>RGB: Added RyB Colorspace.
- RGB>YUV; YUV>RGB: Added YCoCg Colorspace.
- RGB>Lab; Lab>RGB: Added Bjorn Ottosson "OKLab" Colorspace.(WIP)
[Other]
- Nodes progressbar left to right.
- Basis for Unicode Aware Folders/Files.
- Show Project File Save Date when project Loaded.
Update 0.3.4350 (03-Jul-2023)
[Modules]
- STIPPLING2: Reviewed algorithm. + Option to use dots of fixed radii. + SVG and TXT export.
- Kuwahara: Minor algorithm tweak.
- MeanShift3: Bug fix Extra iterations.
- Vignette; Vignette3: Bug fix white mode.
[Other]
- Sobel Kernels adjustment.
- vbRichClient: Newest Version 6.0.0.14 (RC6)
Update 0.3.3960 (20-Apr-2023)
[Modules]
- NEW: QUANTIZE3: 3 Channels quantization; NeuQuant; GNG.
- FASTEPS; FASTEPS3: Added new Range Difference: Smoothstep.
- MeanShift; MeanShift3: Added new option: Scaled Radius.
- QUANTIZE: Added New mode: NeuQuant.
[Other]
- Increased overall speed performance.
- MeanShift; MeanShift3: Types change and smaller NBins. (Fix error on large Radius. Now limited to 100 pixels)
- BLUR3; Bug fix on radius cents.
- LocalMap; Improved algorithm.
- ProgressBar: Avoid useless refreshes.
- vbRichClient: Newest Version 6.0.0.12 (RC6)
Update 0.3.3844 (22-Jun-2022)
[Modules]
- NEW: MeanShift; MeanShift3: Edge preserve smothing. Similar to ThrBlur but a lot faster.
- FlowPaint; FlowPaint3: Better quality and algorithm performance.
- SoftThr;SoftThr3: Added 'Integral SmoothStep' Algo.
- RGB>HSL; HSL>RGB: Added HSI colorspace.
- MUL; MUL3: Added 'mean base'.
- NEW: Mean-Var: Compute mean and Variance using Disk kernel.
[Other]
- Added Projects toggle sort mode: By Creation Time.
- Bug Fix: Create link click & Drag.
Update 0.3.3610 (10-jan-2022)
[Modules]
- NEW: FLATspace: Simplify RGB pixels cloud to a plane. (experimental)
- NEW: Pointillism: Simple Pointillism effect.
- NEW: DXtestNode: Perform effect via DX-Shader.
- Mosaic: Added New Algorithm.
- QuantGNG: Rewritten Algorithm.
- QUANTIZE: Added New mode: GNG (Growing neural Gas)
- Dices: Added GNG mode.
- Canny;Edges;HmapD;PlasticWrap;Mosaic;SandArt: minor changes.
- ShapeBlur;ShapeBlur3: Re-center Shapes (E.G.:Moon)
- ThrBlur;ThrBlur3: New Poisson-Disk Algorithm.
[Other]
- Settings Menu Basis.
- New theme: Neumorphism.
- New Option: Enable/Disable Node AutoConnect.
- Main Panel: Now moveable with click and drag.
- Manage missing d3dx9_43.dll error.
- vbRichClient: Newest Version 6.0.0.9 (RC6)
Update 0.3.3420 (14-jul-2021)
[Modules]
- MAP3: Bug fix on 'Global MinMax' option.
- Dices: Save Text file with the name of input picture.
[Other]
- Updater: removed vbRichClient dependency.
- vbRichClient: Newest Version 6.0.0.8 (RC6)
Update 0.3.3403 (11-apr-2021)
[Modules]
- NEW: Dices: Fill with dices according to grayscale.
- NEW: SandArt: Experimental SandArt effect. Very Slow! (WIP).
- CannyEdge: New 'Thinning' option.
- Quantize: Bugs fixes.
- OTSU: added 6 levels option.
- MAP3: added 'Global MinMax' option.
[Other]
- Basis for the effects implementation via DX-Shader.
- vbRichClient: Newest Version 6.0.0.7 (RC6)
Update 0.3.3265 (09-feb-2021)
[Modules]
- FlowPaint; FlowPaint3: Default and 'Spiky' Algorithms performance improvement.
- HUE-Harm: Minimal Revision.
- SmoothMM: From Quadratic to Cubic polynomial Smooth.
- NOISE; NOISER: High performance improvements.
- DCT; IDCT: Some performance improvements.
- MIX4: Bug fix on SUM.
- Yxy2RGB: Bug Fix.
[Other]
- Select and Move a Group of Modules at once. (by holding shift)
- Basis for Managing Modules-Groups.
- Bugs Fix.
Update 0.3.3180 (11-Nov-2020)
[Modules]
- NEW: FakeHDR2: Completely New algorithm.
- NEW: Resize2X_3; ResizeHALF3: Resize 2X and HALF for 3 channels.
- Size2X; SizeHalf: Added new algorithm and options.
- FlowPaint; FlowPaint3: Small performance improvement.
- LocalNorm: Slight improvement.
- xBiro: Completely New algorithm.
[Other]
- Small Fix: Correctly show Show App Path on Update messages.
- Small Fix: Custom MsgBox Height.
- Nicer Modules tooltip.
- Small graphic embellishment of the module currently being processed.
- Changed Watermark text.
- vbRichClient: Newest Version 6.0.0.1 (RC6)
NOTE: This automatic update may fail. Do it manually: Extract the ZIP
Update 0.3.3042 (10-Sep-2020)
[Modules]
- FlowPain and FlowPaint3: Added "Kernel Mode" options.
- VRLC and VRLC3: Slight performance improvement.
- FallOff and FallOff3: Added "0-1 Input clamp" option.
[Other]
- (barely noticeable) background image of the app removed.
- Minor change on Modules-progess graphic.
- Modules error handlers: (temporarily) removed.
Update 0.3.3000 (12-Jul-2020)
[Modules]
- New: MIX4: Mix 4 channels by wheighted sum and other ways.
[Other]
- Copy output image to the Clipboard using CNTRL-W.
- Basis setup for "no user manual operations" for update.
- vbRichClient: Newest Version 5.0.78
Update 0.3.2980 (27-May-2020)
[Modules]
- NEW: VRLC : Variable Radius Local Contrast (Replaced LCv2 Module).
- NEW: VRLC3: Variable Radius Local Contrast (3 Channels).
- NEW: Cartoonize: Miorsoft CartoonizeMe V2 Effect. (Replaced CartV2 Module).
- NEW: Rotate: Basic Rotate and Zoom.
- NEW: SMH: Shadows Midtones and Highlights Tweak.
- NEW: SMH3: Shadows Midtones and Highlights Tweak (3 Channels)
- NrmlzdVec: Added "Low Values Desaturation" Option
- Borders: Renamed to Vignette.
[Other]
- Added "Lock Image Zoom" to Lock Image size when Zooming UI with CNTRL-MouseWheel.
- vbRichClient: Newest Version 5.0.76
- Minor Improvements on Custom-MsgBox and Auto-Arrange.
Update 0.3.2850 (12-Apr-2020)
[Modules]
- New: xBrio: Experimental Biro effect.
- FLOWPaint; FLOWPaint3: Added 'Spiky' option.
- PNGout: Now works with "Save Before and After" option.
[Other]
- Added "online-Help" button on Form FX selector.
- Small changes to Kmeans modules.
Update 0.3.2795 (21-Feb-2020)
[Modules]
- New: FLOWPaint: Compute ETF and paint along it (Similar to BilaOA)
- New: FLOWPaint3: Compute ETF for each of the 3 channels and paint along them. (Similar to BilaOA3)
- New: TinyPlanet: Simple TinyPlanet effect.
- New: Script11: Experimental VB6-Script processing for 1 inp 1 out channel.
- New: Script33: Experimental VB6-Script processing for 3 inps 3 outs channels.
- stdDEV: Added "Scaled Radius" and "Circle Shaped" options.
- DoG: Bug fix (R-Ratio) update 0.3.1264 (28-Sep-2018)
[Other]
- vbRichClient: Newest Version 5.0.74.
- Cleanup unused Module Output Memory.
- Increased max Photo Size.
- Backend UI optimizations.
Update 0.3.2726 (03-Feb-2020)
[Modules]
- FastEPS; FastEPS3: Added Gaussian Range Weight
[Other]
- Small fixes (CenterOn)
Update 0.3.2705 (05-Dec-2019)
[Modules]
- New: Falloff: Nice Curve (can be S-Shaped).
- New: Falloff3: Nice Curve (can be S-Shaped) (3 channels).
- BLUR; BLUR3: Added 'Scaled Radius' option.
- MIX3; Added 'global mean' and 'Glb Gray BT601'
- KuwANISO: Improved.
[Other]
- Faster Startup: Avoid writing (icons) contents to Disk.
- UI: blinking disconnected inputs.
Update 0.3.2671 (22-Nov-2019)
[Modules]
- New: Drawtext: Basic text on image.
- New: Nrmlzd.vec: Vector Normalization.
- New: Kuwahara3: 3 Channels Kuwahara.
- New: BilaOA3: Orientation Aligned Bilateral Filter on 3 channels.
- Kuwahara: Added various Sectors-Modes.
- KuwANISO: New algorithm. (WIP)
- DoGbyF and BilaOA: faster.
- Mix2; Mix2x3 added Vivid Light.
- Quantize: Added various Uniform Soft Staircase.
- PNGout: renamed to PNGoutA.
- New: PNGOut: Save as PNG without the Alpha input Channel.
[Other]
- Internal Changes: SaveProject function.
- Modules and other minimal UI changes.
- Lock UI while filtering projects List.
- Slight change on Lab2RGB color space conversion.
- Implemented Stretch Project-flow to Window Size (Not applied).
Update 0.3.2553 (20-oct-2019)
[Modules]
- New: xPencil2: Artistic pencil draw.
- TiltShift: Added Circular and elliptical Shapes.
- xBiro: Renamed to xScribble
[Other]
- Added Category Filter to FX-selector.
- ReStyle of Activation Form.
- Small performance improvements for BilaOA and GUI
Update 0.3.2500 (18-Sep-2019)
[Modules]
- Stippling2: Speed and aesthetic improvements.
- NEW: WhiteBal.: WhiteBalance using GrayWorld assumption.
[Other]
- Improved "Auto Arrange" algorithm.
- Added some CueBannerText(s)
- Fix watermark error on demo version.
Update 0.3.2255 (20-Aug-2019)
[Modules]
- New: Stippling2: Voronoi based stippling. Good but slow.
- New: xPainter2: Painter Effect V2.
- New: JigSaw Puzzle (thanks to Olaf Schmidt)
- New: Saturation: Saturation separately in R G B channels.
- New: Skin: Skin tone adjust (WIP)
- New: Straighten: Auto Straighten
- New: Droste: Experimental Droste Effect (WIP).
- New: SoftThrsh3: Soft Thresholding (3 Channels)
- Q-Bertify: Added "just hexagon" option (Hexagonal pixelate)
- Voronoi: Modified algorithm (similar to Stippling2)
[Other]
- Vertical Scrollbars sizes DPI aware.
- vbRichClient: Newest Version 5.0.69
Update 0.3.2000 (28-May-2019)
[Modules]
- New: MarchingS: Marching Squares abstraction.
- New: Median3: Median Filter on 3 channels.
- New: Sphere: From flat to sphere effect (thanks to Olaf Schmidt).
- Median: Faster Algorithm.
- xChord: Extended output text filename.
- LocalHEii: revisited
[Other]
- Restyle of a parameter setting widget.
Update 0.3.1805 (30-Mar-2019)
[Modules]
- New: Abs3: Absolute values (3 channels).
- BlurCirc;BlurCirc3 renamed to ShapeBlur(3) and extended with quite fast implementation of
other shapes like Triangle Square Pentagon Hexagon Line Star Moon Heart Eye.
- Suppress-Node renamed to SoftThrsh.
[Other]
- Downloading Project-Thumbs from https://raw.githubusercontent.com/miorsoft/Site/master/Projects/PhotoModularFX/HTML/Thumbs
+Optimization
Update 0.3.1780 (19-Mar-2019)
[Modules]
[Other]
- Fixed possible crash on program exit while downloading Project-Thumbs.
Update 0.3.1777 (18-Mar-2019)
[Modules]
- NEW: Gain;Gain3: Inigo Quilez gain function
- NEW: LocalGain;LocalGain3: Local Inigo Quilez gain function
- NEW: BlurCirc;BlurCirc3: Circle Blur
- NEW: Clamp3: Clamp values between a range (3 channels)
- NEW: vSplit: Video split before-after (WIP)
- FLOW: Revisited.
- BLUR;BLUR3: Implementation of 'moving-average' Algorithm (Thanks TheTrick & Mikle)
- FastEPS;FastEPS3: New Parameter: Range Difference Mode (Linear;Squared)
- FastEPS;FastEPS3: Small speed gain.
- Normalize3: Option new mean as source (New mean = -1) now is per channel instead of global.
- Mix2x3: Added clamp outputs 0-1 Option.
- Mean: Added Alpha Trimmed Mean.
[Other]
- Save about 50MBytes ZIP file by downloading project-thumbs preview on Project-mouse-over.
- Speed gain thanks to Jacob Roman's "Faux"DoEvents. (by using GetQueueStatus)
- Use of Pade Approximant for Cos and Sin functions.
- On first run ask for desktop-shortcut creation.
- Changes on Widget FileList
- vbRC5BaseDlls folder merged to BIN folder.
Update 0.3.1600 (20-Dec-2018)
[Modules]
- NEW: FastEPS: Fast edge preserve smoothing filter.
- NEW: FastEPS3: 3 channles Fast edge preserve smoothing filter.
- NEW: Stippling: Poission Disc Distribution Stippling effect.
- NEW: Fractalize: Experimental Picture to fractal effect
- NEW: Stipple2: New video Stipple algorithm.
- NEW: Mix2W: Mix 2 channels by 2 weights (same way as Mix3w)
- NEW: Clamp: Clamp Values between a custom Range.
- NEW: ABS: Absoulte Value.
- NEW: FLOW2: New Edge tangent Flow algorithm.
- NEW: Q-Bertify: Q-Bert blocks
- NEW: DCT and IDCT: Pure Discrete cosine transform (and inverse).
- NEW: Corner: SUSAN Corners Detection.
- NEW: RGB>LCH;LCH>RGB: Added Cie Lch colorspace conversion.
- RGB>HSL;HSL>RGB: Added HCL colorspace conversion.(experimental)
- ToneMap; ToneMap3: Added NoHalo(FastEPS) Option.
- Bilateral: New FAST algorithm option.
- BilaOAEX: 'Per level-Bilateral' option with fast algorithm.
- DogByF: (Flow Based Difference of Gaussian) Faster algorithm.
- Stipple: Faster algorithm.
- xChord: Improvements.
- Mosaic: New Algorithm (still incomplete)
- Sauvola: Bug Fix.
[Other]
- Added toggle Projects-Sorting-Mode by Clicking 'Load Project'-Label.
- Faster Tanh and Exp function. (approximated)
- Removed Displayed TXT file extension from Project List Names.
- Removed toggle Fullscreen.
Update 0.3.1264 (28-Sep-2018)
[Modules]
- NEW: Lens: Camera lens distorsion
- NEW: Magnifiers: Magnifier Glass (Hotspot)
- xChord: Improved algorithm.
- Bilateral: Polynomial: Experimental fast algorithm.
- Normalize; Normalize3: Added New Variance proportionality option.
- DoG: Added "Ratio" parameter.
- xChord: Improved algorithm.
[Other]
- Filter-Project-Checkbox caption and tooltip update after closing the module-selection-window.
Update 0.3.1153 (01-ago-2018)
[Modules]
- Blur; Blur3; Fast Mode
- ToneMap; ToneMap3; LocalMap; DoG; Noise2; PlasticWrap; -Faster (because of Internal faster Blur)
- PlastWrap: Changed 'Details' parameter (Now proportional to image size)
- RGB2HCY and HCY2RGB: reviewed colorspaces conversion algorithm
- EDGES: Reviewed algorithm
[Other]
- Added 'Add FX-Node Selector' Window
- Added Projects-Thumbs Preview. +50 MBytes
- Renaming 'Node' to 'Module'
Update 0.3.1114 (03-jul-2018)
[Modules]
[Other]
-Mousewheel support on Picker Valueinput and Slider
-Mousewheel fix on "Add FX-Node"
-Second Click's issue solved on "Add FX-Node"
-Load Project on FileList Keyboard up/down Arrows (ScrollIndexChange)
Update 0.3.1102 (25-jun-2018)
[Modules]
-NEW: SmoothMM: Smooth Min/Max
[Other]
-Bug fix on check for updates
Update 0.3.1100 (24-jun-2018)
[Modules]
-NEW: ColorContrast: Make Lighter choosen hue and darker complementary hue (inspired by Luminar)
[Other]
-Auto Adapt screen zoom to current screen DPI
-Animated connections on Module click
-Icon minor change
Update 0.3.1073 (06-jun-2018)
[Modules]
-New: Mix3W: Mix 3 channels by 3 weights
-New: Technicolor: 2-Strip & 3-Strip Techincolor effect.
-MIX2: New option to clamp output between 0-1
-Pow; Pow3: Option to manage negative input this way: out = Sgn(in)*Abs(in)^Pow
-SNN; SNN3: Algorithm review.
[Other]
-vbRichClient: Newest Version 5.0.66
-Bug Fix: Crash on DropDownList Click
Update 0.3.1040 (20-Apr-2018)
[Modules]
-New: FormulaRGB: 3 Output Formulas having 3 inputs.
-New: NNart: Experimental Neural Network Reconstruction.
-New: QuantGNG3: Experimental Growing Neural Gas Quantizer.
-Formula; Formula2; Formula3: A lot faster performance and new inputbox.
-RGBscreen: Revisited to look more like a CRT Screen.
[Other]
-Bug fix on Save Project with "Project Filter" Activated
Update 0.3.910 (26-Mar-2018)
[Modules]
-New: Mean : Arithmetic Harmonic Contraharmonic and Geometric mean
-New: Mean3: Arithmetic Harmonic Contraharmonic and Geometric mean (3 channel)
-New: Invert3: Invert 3 channels out=(1-In)
-New: vMotion: Video Motion Blur
-Mix3: Added Gray HSP and PS-like
-ADD & ADD3 added clamp 0-1 option
-Ramp: Small bug fix
-POW: Small bug fix
[Other]
-Auto check for Updates.
-Save "Resize mode" on Settings.ini
-Custom message box
-Module Setting's Auto Apply (Removed "Apply" button)
-Dark gray GUI
Update 0.3.834 (01-Mar-2018)
[Modules]
[Other]
-Removed update (download latest version)
-New "Flat" faster GUI
Update 0.3.783 (21-Feb-2018)
[Modules]
-NEW: CAIR: Content Aware Image Resize.
-NEW: Plastic: Plastic Wrap Effect.
-NEW: Crop: Crop Top-Bottom Left-Right
-NEW: xPainter: experimental 'Painter effect'
-NEW: xBiro: experimental 'curve effect'
-NEW: xChord: experimental 'chord effect'
-NEW: Sauvola: Sauvola thresholding
-Render3: Allow different sizes between input triplets.
-RGBtweak Renamed to ADD3
-xPOIS: Added 'Source' background
[Other]
-Download latest version if available (click "u" button)
-Import project from Picture: Small bug fix (getProjectAsString)
-Custom Checkbox and DropDown: Right click for Default Value
-Project Description: Allowed all chars but ","
Update 0.3.580 (18-Dec-2017)
[Modules]
-NEW: Stretch;Stretch3: Histogram Stretch.
-NEW: ToneMap,ToneMap3: Tone Mapping for 1 and 3 channels.
-Blur;Blur3: Added BOX blur Algo.
-StdDEV;stdDEV3 (Standard Deviation): Really a lot Faster
-LocalHEii: Little faster
-VRCLAHE: Algo retouch
-BilaOAEX: Pyramids without cairo
-Normalize;Normalize3: Now output range can be not clamped 0-1
-MtBlur;MtBlur3: small bug fix
-Ramp: Bug fix on RepatMode:Standard (Left-Right;Up-Down)
-RGB>HSL;HSL>RGB: Added HSV colorspace conversion.
[Other]
-Sound: Added checkbox to turn "ready output" sound on/off.
-GUI: Little restyles, lighter Modules and draw speedup.
Update 0.3.462 (15-Sep-2017)
[Modules]
-New: CubicBezier: Cubic Bezier through 2 given points transform.
-New: LocalHE3: Local Histogram Equalization (CLAHE) on 3 channels at one time.
-ThrBlur; ThrBlur3: Optimization (Do not recreate Poisson Disks)
-VRLCN: New variance computation algo.
[Other]
-FLOW: Improved Smooth Algo
-CannyEdge: Little improvement
-Kmean123D: New algorithm for initial centroids selection: (Kmean++)
-Updated vbRichClient's vbRC5BaseDlls
-PoissonDisk: Applyed Box Muller Transform Distribution
-PopUp Messages: Little Fix
-Fonts: some tweaks
-Modules tooltip: better (removed newlines)
-Zoom: Smoother
Update 0.3.400 (05-Apr-2017)
[Modules]
-INPUT2 added Alpha-Channel Module output.
-New INPUTA: Main Input Photo RGB+Alpha Channel
-New PowEx3: Extended Pow (3 channels)
-New DCTEqu: Discrete Cosine Transform Equalizer
-New Normalize: Reset Mean and Variance
-New Normalize3: Reset Mean and Variance
-New LocalNorm.: Local Reset Mean and Variance
-New ClrMatrix: 3x3 Color Matrix
-New RGB>CMYK Colorspace conversion
-New CMYK>RGB Colorspace conversion
-New Palettize: Single Channel to RGB palette using Cosine function.
-New Suppress: Cut values between a threshold
-New Voronoi: Voronoi Tassellation
-New Extent Extent3 & Extent4: Extent/Matting Canvas
-Kmean123D: Optimization (Damping)
-KuwAniso: Fixing and speed Improvement.
-StdDEV & StdDEV3: Improvements
-Faster ThrBLUR ThrBLUR3 and Bilateral:added Uniform Poisson Disk space-kernel (for big radii)
-Mix3: New Mixmodes: Min;Max;Gray Desaturation;Gray BT.601;Gray BT.709; Gray BT.2020;Abs Greater;Abs Smaller
-Mix2: New mixmodes: SmoothMin;SmoothMax;Abs Greater;Abs Smaller
-xPois: Improvements
[Other]
-Some Icons restyles
-Bug fix of autoconnect (on no-connections project)
-Bug fix on 5x5 sobel kernel (FLOW)
-Small Bug fix on ProgressBar (1../20)
-Faster Startup (Delay "CC" creation to when it's needed)
-Widget TextUpDown little restyle
-Updated vbRichClient's vbWidgets
-Added Load GIF and SVG formats
-DoubleClick Editor to Switch FullScreen mode (On/Off)
-Modules tooltips: Added Input/Output Pins description.
-Added WindowHandle to LoadImage Dialog (Form.hWnd)
Update 0.3.226 (14-Nov-2016)
[Modules]
-New Split: Split Channel in 2 halfs (useful for stereo images)
-New Split3: Split 3channels image in 2 halfs (useful for stereo images)
-New POW3: Power of 3 Channels (Like Pow)
-New SpinBLUR: Spin Blur
-New SpinBLUR3: Spin Blur 3 channels
-New RGB>Yxy: RGB to Yxy colorspace conversion
-New Yxy>RGB: Yxy to RGB colorspace conversion
-New HeatMap: Grayscale to HeatMap(rgb)
-New Sorting: Pixel Sorting effect.
-New Solarize: Classic Solarization Filter
-New Solarize3: Classic Solarization Filter
-New OilPaint: Classic OilPainting
-New OilPaint3: Classic OilPainting (RGB)
-New Chroma: Chromaticty colorspace conversion
-New LocalTHR: Local Threshold Binarization
-New LocalOTSU: Experimental Local Otsu
-New Noise2: 3 Levels noise
-DoG: Picture borders fix (Call 2 Blurs instead of in-built blurs)
-HSL: Colorspace conversion added: Darel Rex Finley "HSP"
-StdDEV; TODO StdDEV3: Revisited
[Other]
-Small bug fix of "Keep same Zoom factor at Program Restart" in some systems.
-Allow more than 3 outputs for Modules (max 6)
-Fix missing "Background" Folder in Package(s)
-New PopUp-Message Widget.
-Small Interface restyles
Update 0.3.60 (12-Sept-2016)
[Modules]
- New RENDER: Draw 2nd channel (Foreground) to the 1st Input (Background) at a given position and size
- New RENDER3: Draw 2nd triplet of inputs (Foreground) to the 1st triplet (Background) at a given position and size
- New RENDERex: Draw 2nd channel (Foreground) to the 1st Input (Background) at given 4 Corners position
- New RENDER3ex: Draw 2nd triplet of inputs (Foreground) to the 1st triplet (Background) at given 4 Corners position
- New MAP: Map input range to a new range given by NewMin and NewMax (Using Input Min & Max Values)
- New MAP3: Like Map for 3 Channels
- New THINNING: ZhangSuen Thinning
- New BLUR3: Gaussian Blur 3 Channles
- New CURVE9: Simple 9Points Spline Curve transformation (X at every 1/8)
- New MUL3: Multiply 3 Channels by 3 given values expressed as percentage
- New LocalMAP: Similar to Map but Locally. WIP!
- OTSU: from 2 Levels (Monochrome) to Multilevels (Max 5)
[Other]
-DPI-Aware GUI (to Zoom Use MouseWheel+CNTRL)
-While Zooming keep Module-Parameters-Container at same screen position
-Keep same Zoom factor at Program Restart (Settings.ini - File)
-Option to see every Module Output by clicking it
-Experimental auto-connect Modules on New Module MouseUp-event
-Auto Set Default Parameters Values when adding new Module
-Module Parameters tweaker: Diplay more than 6 parameters
-LocalHE2: Changes (Mainly ClipLevel parameter scale)
-BLUR: Bug fix (Picture Borders) and optimization
-ACE: Revisited
-VRACE: Revisited
-Portable Self-Extractor Executable Version (Full/Lite)
-Use of CopyMemory (Faster Inter-Modules Data transfer. Faster Module that have N of Iterations param.)
-UC TextUpDown allows negative values
-Use More Standard MousePointers
-New "Support" Folder
Update 0.2.1675 (18-Jul-2016)
[Modules]
- NEW ACE: Adaptive Contrast Enhancement
- NEW VRACE: Variable Radius Adaptive Contrast Enhancement
- NEW CannyEdge: Canny Edge Detector
- NEW OTSU: Otsu monochrome thresholder
- NEW EDGE: Edge by using magnituede of 5x5 Sobel operator
- NEW Stereo: Stereo Ananglyph (Create a Stereo Anaglyph image form 2 input images)
[Other]
- No more use of Cairo internal CalcArc function.
Update 0.2.1652 (05-Jul-2016)
[Modules]
- NEW LocalHE2: Local Histogram Equalization V2 (CLAHE): works on each pixel.
[Other]
- New DropDownList to select Output Filename Prefix/Postfix based on current used Project.
- Small Bug fix & optimization of HISTO Equ. HistoMATCH LocalHE VRCLAHE
Update 0.2.1615 (24-May-2016)
[Modules]
- NEW MIX2 x3: Mix 6 channels 2 by 2 same way as MIX2
- NEW VALUE3 : 3 Constant Values (in 1 Module)
- NEW BLEND : Mix the first-channel with the 2nd-channel by an amount given by 3th Input
- NEW BLEND3 : Mix the 3-first-channels with the 2nd-3-channels by an amount given by 7th Input
[Other]
- New Button: Delete Project.
- If Module N-Inputs is greater that 3 draw it with bigger height.
- Minor UI restyle
- Small Bug Fix (Removed Screenshot)
Update 0.2.1600 (01-May-2016)
[Modules]
- NEW Morpho: Morphological Erosion;Dialtion;Opening;Closing
- NEW Skeleton: Morphological Skeleton
[Other]
- Use MouseWheel to zoom in/out (Keep mouse Left-Button pressed)
- Use MouseWheel-Button Down to reset zoom to 1
- New Project Preview thumbnails.
- New Save Project Dialog.
- Small bug in Save Before & After
- Small bug of Progress Bars
- Small bug on Save Project
Update 0.2.1547 (01-Apr-2016)
[Modules]
- NEW TEMP.: Temperature
- NEW VIBRANCE: Vibrance
- NEW CHROMAK: Chromakey blend
- NEW HAZE: Fake Haze effect
[Other]
- Modules and Global ProgressBar
Update 0.2.1506 (07-Mar-2016)
[Modules]
- NEW "HUE Harm": HUE Harmonizer
[Other]
- "Save Before & After" Check Button; to save both INPUT and OUTPUT in the same Picture.
Update 0.2.1500 (21-Feb-2016)
[Modules]
- VRLCN: Changed weight of last Parameter (Radius Selection Sensitivity)
- BILAOA: Changed way of flow-Smooth ((2nd way))
- RGB>YUV: Added YIQ colorspace conversion.
- NEW "PNG out": Save Output as PNG.
[Other]
- New Program Icon
Update 0.2.1467 (07-Jan-2016)
[Modules]
- NEW BilaOA: Oriented-Aligned Bilateral Filter
- NEW ZMBLUR: Zoom Blur 1 channel
- NEW ZMBLUR3: Zoom Blur 3 channels
- NEW MTBLUR: Motion Blur 1 channel
- NEW MTBLUR3: Motion Blur 3 channels
- MIX2 (Blend): 6 New mix modes:
Linear Dodge
Linear Burn
Linear Light
Pin Light
Abs Diff.
Exclusion
and Swap Inputs option
- VRLCN: Improvements and more parameters
- FLOW: New 5x5 Dx/Dy Kernels
[Other]
- Bugs fix: StdDEV/StdDEV3
Update 0.2.1400 (21-Dec-2015)
[Modules]
- NEW ThrBLUR: - Threshold BLUR
- NEW ThrBLUR3: - Threshold BLUR 3 channels
- GLOW: New Algorithm
[Other]
- BugFix: RGB>HSL Bug fix (Quasimondo)
- BugFix: AutoArrange
- Basic Error-Handler implementation
Update 0.2.1354 (08-Dec-2015)
[Modules]
- NEW Mesh: Straight line draw by salient points.
- NEW STROKES: Art-Draw Strokes
- NEW POIS: Art-Draw Pois
- NEW STDDev: Standard Deviation
- NEW STDDev3: Standard Deviation (3 Channels)
- NEW LCN: Local contrast normalization (WIP)
- VRLCN: Little improvements
[Other]
- *** Bilateral: Bug fix on "fast-mode on" *** (Was Causin Crash!)
- Added "Activation-Key-Request Form".
- Added Projects-Filter by Constructor Selection.
- Overall speed improvement.
Update 0.2.1265 (09-NOV-2015)
[Modules]
- NEW Diffusion: Iso/Anisotropic Diffusion.
- VRLCN: Little improvements
[Other]
- Bilateral: Removed "orientation based"
- Improved Internal Memory Management
Update 0.2.1222 (27-Oct-2015)
[Modules]
- NEW VRLCN: Variable Radius Local Contrast Normalization (WIP)
- NEW RGB>YUV ; RGB>YCbCr Colorspace conversion
- NEW YUV>RGB ; YCbCr>RGB "
- GLOW: Improved (test it with Glow.txt Projects)
- FLOW: Step back to previous Smooth-algorithm [Before 0.2.1103 15-Sep-2015]
[Other]
- CheckBox; ComboList: Apparence
- Main BackGround: Dark Colored
- About 300Kbytes lighter EXE
Update 0.2.1162 (10-Oct-2015)
[Modules]
- NEW Gamma ;and Gamma3 : Forward Inverse Gamma Correction
- NEW Halftone : Oriented Round/Squared dots Half toning
- NEW RGB>XYZ Colorspace conversion
- NEW XYZ>RGB Colorspace conversion
- HSL : New Standard RGB<->HSL colorspace conversion
[Other]
- Smaller Watermark font-text
- Icons on Fx-Selector / Constructor
Update 0.2.1103 (15-Sep-2015)
[Modules]
- NEW BCS : Brightness Constrast Saturation (RGB)
- NEW DCT BP: Discrete Cosine Transform Band Pass (experimental)
- NEW DCT fx: Discrete Cosine Transform FX (experimental)
- NEW Formula2 : 2 Variables custom Formula
- NEW Formula3 : 3 Variables custom Formula
- NEW Offset : Horizontal-Verical Offset
- NEW ADD : New Module Add. so no need to use [Value]&[Mix2]
[Other]
- Cntrl-C and Cntrl-V to copy and paste Parameters value from one Module to another (of the same type)
- PAINT: Added Smoothed parameter
- RAMP: Added shape option
- FLOW: New Smooth algorithm
- GUI: Little Smaller Modules
- Bug Fix FLIP3 : Both
- Bug Fix RAMP
Update 0.2.998 (19-Aug-2015)
[Modules]
* NEW Formula - Editable Custom Formula
* NEW Sketch - Sketch style abstraction
* NEW HMD - Height Map Deformer. Deform by Input Height Map
* NEW WATERMAP - Simulation of raindrops (Experimental)
* NEW GLASS - Glass Tiles (1 ch and 3 ch)
* NEW QUANTIZE - Uniform and Histogram Based
[Other]
- New RAMP/gradient settings: Repeat and RepeatMode
- Invert - Added ByPass option.
- CheckBox - Fixed bug: Sometimes (old projects) unchangeable..
- Size2x and SizeHalf: Customizable Kernels : (15851)(0.2-5-9.6-5-0.2) (1.5-5-7-5-1.5)
Update 0.2.919 (31-jul-2015)
[Modules]
* NEW RGB>HSL - Colorspace conversion according to Quasimondo.com
* NEW HSL>RGB - "
* NEW SNN (1D) - Symmeric Nearest Neighour Smoothing filter
* NEW SNN (RGB) - "
* NEW FLIP - Verical Horizontal & Both Filp
* NEW FLIP3 - 3channels Verical Horizontal & Both Filp
* NEW RAMP - Gradient Ramp:Left-Right;Right-Left;Up-Down;Down-Up;Cone Up;Cone Down;Pyramid Up;Pyramid Down;Auger Right; Auger Left
- Little larger Font of "Fx Selector"
Update 0.2.890 (23-jul-2015)
[Modules]
* NEW HistoMATCH - Histogram Match (Histogram Match - Change Input1 to match Input2 Histogram)
* NEW Pixelate - Pixelate
- FLOW: changed Sobel weights
- Bug fixed when trying to add a new connection (MouseUp-Event)
- Faster Interface
Update 0.2.865 (20-jul-2015)
[Modules]
* NEW Input2 (Secondary Input Picture)
* NEW Tilt-Shift - Fake Miniature
* NEW Curve: Simple 5Points Spline Curve transformation (X at every 1/4)
* Improved Size2X; SizeHalf (15851)
[Other]
- Improved Histogram Eq. and Local HE.
Update 0.2.822 (21-jun-2015)
[Modules]
* NEW Sepia (from RGB)
* NEW Sepia (from GrayScale)
* NEW Scratches
* NEW 8-Colors
[Other]
- A lot faster "Local HE"
- Improved Noise-Module
- Improved Histogram Eq. and Local HE.
Update 0.2.770 (14-jun-2015)
[Modules]
* Changed Stipple
* Little change on LCDDisplay (color)
[Other:]
- New check-switch parameters look
- Added Mix2 (Blend) modes: Dissolve;Screen(Dodge);Overlay;Hard Light;Soft Light (Cairo);Color Dodge and Color Burn
- Little bug fix on Histogram Eq. and Local HE.
Update 0.2.669 (5-jun-2015)
[Modules]
*New Median
*New LCD-Display
*New Glow (Still developing)
*New Exp-Log functions
*New STIPPLE
[Other:]
-Distortion: Now Rotate without Skew
-Finished Local HE
Update 0.2.555 (28-may-2015)
[Modules]
* New RGBtweaker Module
* New Standard POW Module
* New Local HE (Histogram Equalization)
* New Anisotropic Kwuahara (Still developing)
* New "Pencil Drawing" (Still developing)
[Other:]
-Improved Kwuahara
-Bug Fix on MUL (base 0.5)
Update 0.2.471 (20-may-2015)
[New Module Effects:]
* Pyramid RGB (Pyramid Based Level-Details enhancement/reduction)
* Noise Deformer (Spatial deform by Noise)
* Kuwahara filter (Single channel)
[Other:]
- Click blackboard for screenshot (Saved on Screenshots Folder)
- a little faster FakeHDR
- Fixed a bug on "DoG Flow"
- Changed RGB wheights of HCY-colorspace (CCIR 601)
Update 0.2.399 (14-may-2015)
[New Module Effects:]
* FDoG (DoG along Flow)
* PYRAMID - Pyramid Based Level-Details enhancement/reduction
* Noise (Fractional Brownian Motion)
[Other:]
-Fine Blur Radius (cents)
-Improved DoG
Update 0.2.319 (6-may-2015)
[New Module Effects:]
* DoG (Difference of Gaussians) - Good for Countours
* DoG: Fine Radius Tuning: Now R Value can be floating point; Not only integer. (Usefull for small radius)
* Dithering - Error Diffusion Dithering Floyd-Steinberg; Sierra and others
* Distorsion - Fisheye ; Pinch; Lens; WideAngle and others
* Black Borders - Vignetting
* SmoothStep -
[Other:]
* Full Portable: No Dlls registration Needed
* Module Selector: -Sorted List; -Just click List to ADD new Module
* Performances
Update 0.2.161 (2-may-2015)
-Module parameters tweaking
-New Module parameter tweaker (custom vbwidgets-controls)
-Fixed Swapped Red and Blue in Input & Output Modules.
Update 0.2.140 (30-Apr-2015)
-"uninstaller"
-"Star Here" auto run with Administrator privileges
Update 0.2.132 (28-Apr-2015)
-Modules new Look
-Resizeable main Panel
-kernels creation: once per size when needed (instead of all sizes at startup)
-Fixed Error 67 (too many files)
-Mouse Icons (Expermiental)
Update 0.2.63 (20-Apr-2015)
-DOWNLOAD standard
Update 0.0.866 (15-Apr-2015)
- Dog Filter (Difference of Gaussian)
- Other improvements (LUTs)
Update 0.0.848 (5-Apr-2015)
- Links with Color
- Fixed Fx-Selector ComboBox (No more All highlighted)
- Various Fix in Gaussians Shape (Blur/USM/Bilateral)
- Bilateral with Range-LUT
- Dog Filter (Difference of Gaussian) (Still Developing)