This repository was archived by the owner on Apr 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathAppDelegate.cs
2212 lines (1894 loc) · 61.1 KB
/
AppDelegate.cs
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
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using System;
using Foundation;
using UIKit;
using CoreImage;
using ObjCRuntime;
using System.Collections.Generic;
using MonoTouch.Dialog;
using System.Linq;
using System.Reflection;
using System.Runtime.InteropServices;
using CoreGraphics;
using System.IO;
using System.Threading.Tasks;
namespace coreimage {
[Register ("AppDelegate")]
public partial class AppDelegate : UIApplicationDelegate {
/// <summary>
/// "Flower" © 2012 Milica Sekulic, used under a Creative Commons Attribution-ShareAlike license: http://creativecommons.org/licenses/by-sa/3.0/
/// </summary>
CIImage flower = CIImage.FromCGImage (UIImage.FromFile ("flower.png").CGImage);
/// <summary>
/// "Sunrise near Atkeison Plateau" © 2012 Charles Atkeison, used under a Creative Commons Attribution-ShareAlike license: http://creativecommons.org/licenses/by-sa/3.0/
/// </summary>
CIImage clouds = CIImage.FromCGImage (UIImage.FromFile ("clouds.jpg").CGImage);
/// <summary>
/// "canon" © 2012 cuatrok77 hernandez, used under a Creative Commons Attribution-ShareAlike license: http://creativecommons.org/licenses/by-sa/3.0/
/// </summary>
CIImage heron = CIImage.FromCGImage (UIImage.FromFile ("heron.jpg").CGImage);
CIImage xamarin = CIImage.FromCGImage (UIImage.FromFile ("Xamarin.png").CGImage);
CIImage xamarinAlpha = CIImage.FromCGImage (UIImage.FromFile ("XamarinAlpha.png").CGImage);
CIImage xamarinCheck = CIImage.FromCGImage (UIImage.FromFile ("XamarinCheck.png").CGImage);
UIWindow window;
#region UIApplicationDelegate Methods
void AddVersionRoot (Section byIOSSection, string versionString, byte majorVersion)
{
RootElement iOSRoot = null;
foreach (string section in sectionList) {
var query = masterList.Where (fi => fi.MajorVersion == majorVersion && fi.SectionName == section);
if (query.Any ()) {
if (iOSRoot == null) {
iOSRoot = new RootElement (versionString);
byIOSSection.Add (iOSRoot);
}
var catSection = new Section (section);
iOSRoot.Add (catSection);
var elementList = query.Select (fi => (Element) new RootElement (fi.Name, (x) => {
var viewCtrl = Demo (fi.Callback);
viewCtrl.Title = fi.Name;
return viewCtrl;
}));
catSection.AddAll (elementList);
}
}
}
public override bool FinishedLaunching (UIApplication app, NSDictionary options)
{
app.StatusBarHidden = true;
InitList ();
var root = new RootElement ("Effects");
var byIOSSection = new Section ("By iOS Version");
root.Add (byIOSSection);
AddVersionRoot (byIOSSection, "iOS 7", 7);
AddVersionRoot (byIOSSection, "iOS 6", 6);
AddVersionRoot (byIOSSection, "iOS 5", 5);
var byCategorySection = new Section ("By Category");
root.Add (byCategorySection);
foreach (string section in sectionList) {
var query = masterList.Where (fi => fi.SectionName == section);
if (query.Any ()) {
var catRoot = new RootElement (section);
byCategorySection.Add (catRoot);
var catSection = new Section ();
catRoot.Add (catSection);
var elementList = query.Select (fi => (Element) new RootElement (fi.Name, (x) => {
var viewCtrl = Demo (fi.Callback);
viewCtrl.Title = fi.Name;
return viewCtrl;
}));
catSection.AddAll (elementList);
}
}
var testingSection = new Section ("Testing");
root.Add (testingSection);
testingSection.Add (new RootElement ("Show All Filters", (x) => new VisitFilterViewController (masterList)));
window = new UIWindow (UIScreen.MainScreen.Bounds) {
RootViewController = new UINavigationController (new DialogViewController (root))
};
window.MakeKeyAndVisible ();
return true;
}
#endregion
string [] sectionList = new [] {
"Blur",
"Color Adjustment",
"Color Effect",
"Composite Operation",
"Distortions",
"Generators",
"Geometry Adjust",
"Gradients",
"Halftone Effect",
"Sharpen",
"Stylize",
"Tile Effect",
"Transition",
};
FilterHolder [] masterList;
void InitList ()
{
masterList = new [] {
// Blur
new FilterHolder ("GaussianBlur", sectionList [0], 6, typeof(CIGaussianBlur), GaussianBlur),
// Color Adjustment
new FilterHolder ("ColorClamp", sectionList [1], 7, typeof(CIColorClamp), ColorClamp),
new FilterHolder ("ColorControls", sectionList [1], 5, typeof(CIColorControls), ColorControls),
new FilterHolder ("ColorMatrix", sectionList [1], 5, typeof(CIColorMatrix), ColorMatrix),
new FilterHolder ("ColorPolynomial", sectionList [1], 7, typeof(CIColorPolynomial), ColorPolynomial),
new FilterHolder ("ExposureAdjust", sectionList [1], 5, typeof(CIExposureAdjust), ExposureAdjust),
new FilterHolder ("GammaAdjust", sectionList [1], 5, typeof(CIGammaAdjust), GammaAdjust),
new FilterHolder ("HueAdjust", sectionList [1], 5, typeof(CIHueAdjust), HueAdjust),
new FilterHolder ("LinearToSRGBToneCurve", sectionList [1], 7, typeof(CILinearToSRGBToneCurve), LinearToSRGBToneCurve),
new FilterHolder ("SRGBToneCurveToLinear", sectionList [1], 7, typeof(CISRGBToneCurveToLinear), SRGBToneCurveToLinear),
new FilterHolder ("TemperatureAndTint", sectionList [1], 5, typeof(CITemperatureAndTint), TemperatureAndTint),
new FilterHolder ("ToneCurve", sectionList [1], 5, typeof(CIToneCurve), ToneCurve),
new FilterHolder ("Vibrance", sectionList [1], 5, typeof(CIVibrance), Vibrance),
new FilterHolder ("WhitePointAdjust", sectionList [1], 5, typeof(CIWhitePointAdjust), WhitePointAdjust),
// Color Effect
new FilterHolder ("ColorCrossPolynomial", sectionList [2], 7, typeof(CIColorCrossPolynomial), ColorCrossPolynomial),
new FilterHolder ("ColorCube", sectionList [2], 5, typeof(CIColorCube), ColorCube),
new FilterHolder ("ColorCubeWithColorSpace", sectionList [2], 7, typeof(CIColorCubeWithColorSpace), ColorCubeWithColorSpace),
new FilterHolder ("ColorInvert", sectionList [2], 5, typeof(CIColorInvert), ColorInvert),
new FilterHolder ("ColorMap", sectionList [2], 6, typeof(CIColorMap), ColorMap),
new FilterHolder ("ColorMonochrome", sectionList [2], 5, typeof(CIColorMonochrome), ColorMonochrome),
new FilterHolder ("ColorPosterize", sectionList [2], 6, typeof(CIColorPosterize), ColorPosterize),
new FilterHolder ("FalseColor", sectionList [2], 5, typeof(CIFalseColor), FalseColor),
new FilterHolder ("MaskToAlpha", sectionList [2], 6, typeof(CIMaskToAlpha), MaskToAlpha),
new FilterHolder ("MaximumComponent", sectionList [2], 6, typeof(CIMaximumComponent), MaximumComponent),
new FilterHolder ("MinimumComponent", sectionList [2], 6, typeof(CIMinimumComponent), MinimumComponent),
new FilterHolder ("PhotoEffectChrome", sectionList [2], 7, typeof(CIPhotoEffectChrome), PhotoEffectChrome),
new FilterHolder ("PhotoEffectFade", sectionList [2], 7, typeof(CIPhotoEffectFade), PhotoEffectFade),
new FilterHolder ("PhotoEffectInstant", sectionList [2], 7, typeof(CIPhotoEffectInstant), PhotoEffectInstant),
new FilterHolder ("PhotoEffectMono", sectionList [2], 7, typeof(CIPhotoEffectMono), PhotoEffectMono),
new FilterHolder ("PhotoEffectNoir", sectionList [2], 7, typeof(CIPhotoEffectNoir), PhotoEffectNoir),
new FilterHolder ("PhotoEffectProcess", sectionList [2], 7, typeof(CIPhotoEffectProcess), PhotoEffectProcess),
new FilterHolder ("PhotoEffectTonal", sectionList [2], 7, typeof(CIPhotoEffectTonal), PhotoEffectTonal),
new FilterHolder ("PhotoEffectTransfer", sectionList [2], 7, typeof(CIPhotoEffectTransfer), PhotoEffectTransfer),
new FilterHolder ("SepiaTone", sectionList [2], 5, typeof(CISepiaTone), SepiaTone),
new FilterHolder ("Vignette", sectionList [2], 5, typeof(CIVignette), Vignette),
new FilterHolder ("VignetteEffect", sectionList [2], 7, typeof(CIVignetteEffect), VignetteEffect),
// Composite Operation
new FilterHolder ("AdditionCompositing", sectionList [3], 5, typeof(CIAdditionCompositing), AdditionCompositing),
new FilterHolder ("ColorBlendMode", sectionList [3], 5, typeof(CIColorBlendMode), ColorBlendMode),
new FilterHolder ("ColorBurnBlendMode", sectionList [3], 5, typeof(CIColorBurnBlendMode), ColorBurnBlendMode),
new FilterHolder ("ColorDodgeBlendMode", sectionList [3], 5, typeof(CIColorDodgeBlendMode), ColorDodgeBlendMode),
new FilterHolder ("DarkenBlendMode", sectionList [3], 5, typeof(CIDarkenBlendMode), DarkenBlendMode),
new FilterHolder ("DifferenceBlendMode", sectionList [3], 5, typeof(CIDifferenceBlendMode), DifferenceBlendMode),
new FilterHolder ("ExclusionBlendMode", sectionList [3], 5, typeof(CIExclusionBlendMode), ExclusionBlendMode),
new FilterHolder ("HardLightBlendMode", sectionList [3], 5, typeof(CIHardLightBlendMode), HardLightBlendMode),
new FilterHolder ("HueBlendMode", sectionList [3], 5, typeof(CIHueBlendMode), HueBlendMode),
new FilterHolder ("LightenBlendMode", sectionList [3], 5, typeof(CILightenBlendMode), LightenBlendMode),
new FilterHolder ("LuminosityBlendMode", sectionList [3], 5, typeof(CILuminosityBlendMode), LuminosityBlendMode),
new FilterHolder ("MaximumCompositing", sectionList [3], 5, typeof(CIMaximumCompositing), MaximumCompositing),
new FilterHolder ("MinimumCompositing", sectionList [3], 5, typeof(CIMinimumCompositing), MinimumCompositing),
new FilterHolder ("MultiplyBlendMode", sectionList [3], 5, typeof(CIMultiplyBlendMode), MultiplyBlendMode),
new FilterHolder ("MultiplyCompositing", sectionList [3], 5, typeof(CIMultiplyCompositing), MultiplyCompositing),
new FilterHolder ("OverlayBlendMode", sectionList [3], 5, typeof(CIOverlayBlendMode), OverlayBlendMode),
new FilterHolder ("SaturationBlendMode", sectionList [3], 5, typeof(CISaturationBlendMode), SaturationBlendMode),
new FilterHolder ("ScreenBlendMode", sectionList [3], 5, typeof(CIScreenBlendMode), ScreenBlendMode),
new FilterHolder ("SoftLightBlendMode", sectionList [3], 5, typeof(CISoftLightBlendMode), SoftLightBlendMode),
new FilterHolder ("SourceAtopCompositing", sectionList [3], 5, typeof(CISourceAtopCompositing), SourceAtopCompositing),
new FilterHolder ("SourceInCompositing", sectionList [3], 5, typeof(CISourceInCompositing), SourceInCompositing),
new FilterHolder ("SourceOutCompositing", sectionList [3], 5, typeof(CISourceOutCompositing), SourceOutCompositing),
new FilterHolder ("SourceOverCompositing", sectionList [3], 5, typeof(CISourceOverCompositing), SourceOverCompositing),
// Distortions
new FilterHolder ("BumpDistortion", sectionList [4], 6, typeof(CIBumpDistortion), BumpDistortion),
new FilterHolder ("BumpDistortionLinear", sectionList [4], 6, typeof(CIBumpDistortionLinear), BumpDistortionLinear),
new FilterHolder ("CircleSplashDistortion", sectionList [4], 6, typeof(CICircleSplashDistortion), CircleSplashDistortion),
new FilterHolder ("HoleDistortion", sectionList [4], 6, typeof(CIHoleDistortion), HoleDistortion),
new FilterHolder ("LightTunnel", sectionList [4], 6, typeof(CILightTunnel), LightTunnel),
new FilterHolder ("PinchDistortion", sectionList [4], 6, typeof(CIPinchDistortion), PinchDistortion),
new FilterHolder ("TwirlDistortion", sectionList [4], 6, typeof(CITwirlDistortion), TwirlDistortion),
new FilterHolder ("VortexDistortion", sectionList [4], 6, typeof(CIVortexDistortion), VortexDistortion),
// Generators
new FilterHolder ("CheckerboardGenerator", sectionList [5], 5, typeof(CICheckerboardGenerator), CheckerboardGenerator),
new FilterHolder ("ConstantColorGenerator", sectionList [5], 5, typeof(CIConstantColorGenerator), ConstantColorGenerator),
new FilterHolder ("QRCodeGenerator", sectionList [5], 7, typeof(CIQRCodeGenerator), QRCodeGenerator),
new FilterHolder ("RandomGenerator", sectionList [5], 6, typeof(CIRandomGenerator), RandomGenerator),
new FilterHolder ("StarShineGenerator", sectionList [5], 6, typeof(CIStarShineGenerator), StarShineGenerator),
new FilterHolder ("StripesGenerator", sectionList [5], 5, typeof(CIStripesGenerator), StripesGenerator),
// Geometry Adjust
new FilterHolder ("AffineTransform", sectionList [6], 5, typeof(CIAffineTransform), AffineTransform),
new FilterHolder ("Crop", sectionList [6], 5, typeof(CICrop), Crop),
new FilterHolder ("LanczosScaleTransform", sectionList [6], 6, typeof(CILanczosScaleTransform), LanczosScaleTransform),
new FilterHolder ("PerspectiveTransform", sectionList [6], 6, typeof(CIPerspectiveTransform), PerspectiveTransform),
new FilterHolder ("PerspectiveTransformWithExtent", sectionList [6], 6, typeof(CIPerspectiveTransformWithExtent), PerspectiveTransformWithExtent),
new FilterHolder ("StraightenFilter", sectionList [6], 5, typeof(CIStraightenFilter), StraightenFilter),
// Gradients
new FilterHolder ("GaussianGradient", sectionList [7], 5, typeof(CIGaussianGradient), GaussianGradient),
new FilterHolder ("LinearGradient", sectionList [7], 5, typeof(CILinearGradient), LinearGradient),
new FilterHolder ("RadialGradient", sectionList [7], 5, typeof(CIRadialGradient), RadialGradient),
new FilterHolder ("SmoothLinearGradient", sectionList [7], 6, typeof(CISmoothLinearGradient), SmoothLinearGradient),
// Halftone Effect
new FilterHolder ("CircularScreen", sectionList [8], 6, typeof(CICircularScreen), CircularScreen),
new FilterHolder ("DotScreen", sectionList [8], 6, typeof(CIDotScreen), DotScreen),
new FilterHolder ("HatchedScreen", sectionList [8], 6, typeof(CIHatchedScreen), HatchedScreen),
new FilterHolder ("LineScreen", sectionList [8], 6, typeof(CILineScreen), LineScreen),
// Sharpen
new FilterHolder ("SharpenLuminance", sectionList [9], 6, typeof(CISharpenLuminance), SharpenLuminance),
new FilterHolder ("UnsharpMask", sectionList [9], 6, typeof(CIUnsharpMask), UnsharpMask),
// Stylize
new FilterHolder ("BlendWithAlphaMask", sectionList [10], 7, typeof(CIBlendWithAlphaMask), BlendWithAlphaMask),
new FilterHolder ("BlendWithMask", sectionList [10], 6, typeof(CIBlendWithMask), BlendWithMask),
new FilterHolder ("Bloom", sectionList [10], 6, typeof(CIBloom), Bloom),
new FilterHolder ("Convolution3X3", sectionList [10], 7, typeof(CIConvolution3X3), Convolution3X3),
new FilterHolder ("Convolution5X5", sectionList [10], 7, typeof(CIConvolution5X5), Convolution5X5),
new FilterHolder ("Convolution9Horizontal", sectionList [10], 7, typeof(CIConvolution9Horizontal), Convolution9Horizontal),
new FilterHolder ("Convolution9Vertical", sectionList [10], 7, typeof(CIConvolution9Vertical), Convolution9Vertical),
new FilterHolder ("Gloom", sectionList [10], 6, typeof(CIGloom), Gloom),
new FilterHolder ("HighlightShadowAdjust", sectionList [10], 5, typeof(CIHighlightShadowAdjust), HighlightShadowAdjust),
new FilterHolder ("Pixellate", sectionList [10], 6, typeof(CIPixellate), Pixellate),
// Tile Effect
new FilterHolder ("AffineClamp", sectionList [11], 6, typeof(CIAffineClamp), AffineClamp),
new FilterHolder ("AffineTile", sectionList [11], 6, typeof(CIAffineTile), AffineTile),
new FilterHolder ("EightfoldReflectedTile", sectionList [11], 6, typeof(CIEightfoldReflectedTile), EightfoldReflectedTile),
new FilterHolder ("FourfoldReflectedTile", sectionList [11], 6, typeof(CIFourfoldReflectedTile), FourfoldReflectedTile),
new FilterHolder ("FourfoldRotatedTile", sectionList [11], 6, typeof(CIFourfoldRotatedTile), FourfoldRotatedTile),
new FilterHolder ("FourfoldTranslatedTile", sectionList [11], 6, typeof(CIFourfoldTranslatedTile), FourfoldTranslatedTile),
new FilterHolder ("GlideReflectedTile", sectionList [11], 6, typeof(CIGlideReflectedTile), GlideReflectedTile),
new FilterHolder ("PerspectiveTile", sectionList [11], 6, typeof(CIPerspectiveTile), PerspectiveTile),
new FilterHolder ("SixfoldReflectedTile", sectionList [11], 6, typeof(CISixfoldReflectedTile), SixfoldReflectedTile),
new FilterHolder ("SixfoldRotatedTile", sectionList [11], 6, typeof(CISixfoldRotatedTile), SixfoldRotatedTile),
new FilterHolder ("TriangleKaleidoscope", sectionList [11], 6, typeof(CITriangleKaleidoscope), TriangleKaleidoscope),
new FilterHolder ("TwelvefoldReflectedTile", sectionList [11], 6, typeof(CITwelvefoldReflectedTile), TwelvefoldReflectedTile),
// Transition
new FilterHolder ("BarsSwipeTransition", sectionList [12], 6, typeof(CIBarsSwipeTransition), BarsSwipeTransition),
new FilterHolder ("CopyMachineTransition", sectionList [12], 6, typeof(CICopyMachineTransition), CopyMachineTransition),
new FilterHolder ("DisintegrateWithMaskTransition", sectionList [12], 6, typeof(CIDisintegrateWithMaskTransition), DisintegrateWithMaskTransition),
new FilterHolder ("DissolveTransition", sectionList [12], 6, typeof(CIDissolveTransition), DissolveTransition),
new FilterHolder ("FlashTransition", sectionList [12], 6, typeof(CIFlashTransition), FlashTransition),
new FilterHolder ("ModTransition", sectionList [12], 6, typeof(CIModTransition), ModTransition),
new FilterHolder ("SwipeTransition", sectionList [12], 6, typeof(CISwipeTransition), SwipeTransition),
};
int maxVer = 5;
while (UIDevice.CurrentDevice.CheckSystemVersion (++maxVer, 0))
;
masterList = masterList.Where (l => l.MajorVersion < maxVer).ToArray ();
}
#region Helper Methods
//
// Utility function used by pure-output generation filters
//
public CIImage Crop (CIFilter input)
{
return new CICrop () {
Image = input.OutputImage,
Rectangle = new CIVector (0, 0, window.Bounds.Width, window.Bounds.Height)
}.OutputImage;
}
public UIViewController Demo (Func<CIImage> makeDemo)
{
var v = new UIViewController ();
if (UIDevice.CurrentDevice.CheckSystemVersion (7, 0))
v.EdgesForExtendedLayout = UIRectEdge.None;
var imageView = new UIImageView (v.View.Bounds);
imageView.AutoresizingMask = UIViewAutoresizing.FlexibleDimensions;
v.View.AutosizesSubviews = true;
v.View.AddSubview (imageView);
var output = makeDemo ();
var context = CIContext.FromOptions (null);
var result = context.CreateCGImage (output, output.Extent);
var resultImage = UIImage.FromImage (result);
imageView.ContentMode = UIViewContentMode.ScaleAspectFit;
imageView.Image = resultImage;
return v;
}
#endregion
#region Filter Methods
#region CICategoryBlur
/// <summary>
/// Applies a Gaussian blur.
/// </summary>
/// <returns>The altered image.</returns>
CIImage GaussianBlur ()
{
var gaussian_blur = new CIGaussianBlur () {
Image = clouds,
Radius = 3f,
};
return gaussian_blur.OutputImage;
}
#endregion
#region CICategoryColorAdjustment
/// <summary>
/// Multiplies source color values and adds a bias factor to each color component.
/// </summary>
/// <returns>
/// The altered Image
/// </returns>
public CIImage ColorMatrix ()
{
var rVector = new CIVector (.5F, 0F, 0F); // Multiple the Red Values by .5 (s.r = dot(s, rVector))
var gVector = new CIVector (0F, 1.5F, 0F); // Multiple the Green Vector by 1.5 (s.g = dot(s, gVector))
var bVector = new CIVector (0F, 0F, .75F); // Multiple the Blue Vectoer by .75 (s.b = dot(s, bVector))
var aVector = new CIVector (0F, 0F, 0F, 1.25F); // Multiple the Alpha values by 1.25 (s.a = dot(s, bVector))
var biasVector = new CIVector (0, 1, 0, 0); // A Bias to be Added to each Color Vector (s = s + bias)
var colorMatrix = new CIColorMatrix () {
Image = flower,
RVector = rVector,
GVector = gVector,
BVector = bVector,
AVector = aVector,
BiasVector = biasVector
};
return colorMatrix.OutputImage;
}
/// <summary>
/// Applies a Color Polynomial to each pixel of of an image.
/// </summary>
/// <returns>The altered image.</returns>
public CIImage ColorPolynomial ()
{
var color_polynomial = new CIColorPolynomial () {
Image = flower,
RedCoefficients = new CIVector (0, 0, 0, .4f),
GreenCoefficients = new CIVector (0, 0, .5f, .8f),
BlueCoefficients = new CIVector (0, 0, .5f, 1),
AlphaCoefficients = new CIVector (0, 1, 1, 1),
};
return color_polynomial.OutputImage;
}
/// <summary>
/// Constrains the color values between the range specified.
/// </summary>
/// <returns>The altered image.</returns>
CIImage ColorClamp ()
{
var color_clamp = new CIColorClamp () {
Image = flower,
InputMinComponents = new CIVector (.1f, 0f, .1f, 0),
InputMaxComponents = new CIVector (.6f, 1f, .6f, 1),
};
return color_clamp.OutputImage;
}
/// <summary>
/// Adjusts saturation, brightness, and contrast values.
/// </summary>
/// <returns>
/// Altered Image
/// </returns>
public CIImage ColorControls ()
{
var colorCtrls = new CIColorControls () {
Image = flower,
Brightness = .5F, // Min: 0 Max: 2
Saturation = 1.2F, // Min: -1 Max: 1
Contrast = 3.1F // Min: 0 Max: 4
};
return colorCtrls.OutputImage;
}
/// <summary>
/// Changes the overall hue, or tint, of the source pixels.
/// </summary>
/// <returns>
/// The Altered Image.
/// </returns>
public CIImage HueAdjust ()
{
var hueAdjust = new CIHueAdjust () {
Image = flower,
Angle = 1F // Default is 0
};
return hueAdjust.OutputImage;
}
/// <summary>
/// Adapts the reference white point for an image.
/// </summary>
/// <returns>
/// The Color Adjusted Image
/// </returns>
public CIImage TemperatureAndTint ()
{
var temperatureAdjust = new CITemperatureAndTint () {
Image = flower,
Neutral = new CIVector (6500, 0), // Default [6500, 0]
TargetNeutral = new CIVector (4000, 0), // Default [6500, 0]
};
return temperatureAdjust.OutputImage;
}
/// <summary>
/// Adjusts tone response of the R, G, and B channels of an image.
/// </summary>
/// <returns>
/// The adjusted image
/// </returns>
public CIImage ToneCurve ()
{
var point0 = new CIVector (0, 0); // Default [0 0]
var point1 = new CIVector (.1F, .5F); // Default [.25 .25]
var point2 = new CIVector (.3F, .15F); // Default [.3 .15]
var point3 = new CIVector (.6F, .6F); // Default [.75 .75]
var point4 = new CIVector (1.1F, 1F); // Default [1 1]
var toneCurve = new CIToneCurve () {
Image = flower,
Point0 = point0,
Point1 = point1,
Point2 = point2,
Point3 = point3,
Point4 = point4,
};
return toneCurve.OutputImage;
}
/// <summary>
/// Adjusts the saturation of an image while keeping pleasing skin tones.
/// </summary>
public CIImage Vibrance ()
{
var vibrance = new CIVibrance () {
Image = flower,
Amount = -1.0F // Default 0
};
return vibrance.OutputImage;
}
/// <summary>
/// Add a reduction of an image's brightness or saturation at the periphery compared to the image center.
/// </summary>
public CIImage Vignette ()
{
var vignette = new CIVignette () {
Image = flower,
Intensity = 2F,
Radius = 10F,
};
return vignette.OutputImage;
}
/// <summary>
/// Reduces the brightness around the specified point.
/// </summary>
/// <returns>The adjusted image.</returns>
public CIImage VignetteEffect ()
{
var vignette_effect = new CIVignetteEffect () {
Image = flower,
Center = new CIVector (flower.Extent.Width * .3f, flower.Extent.Width * .35f),
Intensity = .6f,
Radius = (float) flower.Extent.Width * .20f,
};
return vignette_effect.OutputImage;
}
/// <summary>
/// Adjusts the reference white point for an image and maps all colors in the source using the new reference.
/// </summary>
/// <returns>
/// The Color Adjusted Image
/// </returns>
public CIImage WhitePointAdjust ()
{
var whitePointAdjust = new CIWhitePointAdjust () {
Image = flower,
Color = new CIColor (new CGColor (255F, 0, 187F)) // A Magenta Color
};
return whitePointAdjust.OutputImage;
}
#endregion
#region CICategoryColorEffect
/// <summary>
/// Applies a Sepia Filter to an Image.
/// </summary>
/// <returns>
/// Image with Sepia Filter
/// </returns>
public CIImage SepiaTone ()
{
var sepia = new CISepiaTone () {
Image = flower,
Intensity = .8f
};
return sepia.OutputImage;
}
/// <summary>
/// Modifies the source pixels by applying a set of polynomial cross-products.
/// </summary>
/// <returns>The cross polynomial.</returns>
public CIImage ColorCrossPolynomial ()
{
var color_cross_polynomial = new CIColorCrossPolynomial () {
Image = flower,
RedCoefficients = new CIVector (new nfloat [] { 1, 0, 0, 0, 0, 0, 0, 0, 0, 0 }),
GreenCoefficients = new CIVector (new nfloat [] { 0, 1, 0, 0, 0, 0, 0, 0, 0, 0 }),
BlueCoefficients = new CIVector (new nfloat [] { 1, 0, 1, 0, -20, 0, 0, 0, 0, 0 }),
};
return color_cross_polynomial.OutputImage;
}
/// <summary>
/// Uses a three-dimensional color table to transform the source image pixels.
/// </summary>
/// <returns>
/// The Altered Image
/// </returns>
public unsafe CIImage ColorCube ()
{
float [] color_cube_data = {
0, 0, 0, 1,
.1f, 0, 1, 1,
0, 1, 0, 1,
1, 1, 0, 1,
0, 0, 1, 1,
1, 0, 1, 1,
0, 1, 1, 1,
1, 1, 1, 1
};
var byteArray = new byte [color_cube_data.Length * 4];
Buffer.BlockCopy (color_cube_data, 0, byteArray, 0, byteArray.Length);
var data = NSData.FromArray (byteArray);
var color_cube = new CIColorCube () {
Image = flower,
CubeDimension = 2,
CubeData = data
};
return color_cube.OutputImage;
}
/// <summary>
/// Modifies the source pixels using a 3D color-table and then maps the result to a color space.
/// </summary>
/// <returns>The altered image.</returns>
public CIImage ColorCubeWithColorSpace ()
{
float [] color_cube_data = {
0, 0, 0, 1,
.1f, 0, 1, 1,
0, 1, 0, 1,
1, 1, 0, 1,
0, 0, 1, 1,
1, 0, 1, 1,
0, 1, 1, 1,
1, 1, 1, 1
};
var byteArray = new byte [color_cube_data.Length * 4];
Buffer.BlockCopy (color_cube_data, 0, byteArray, 0, byteArray.Length);
var data = NSData.FromArray (byteArray);
using (var cs = CGColorSpace.CreateDeviceRGB ()) {
var cube = new CIColorCubeWithColorSpace () {
Image = flower,
CubeDimension = 2,
CubeData = data,
ColorSpace = cs
};
return cube.OutputImage;
}
}
/// <summary>
/// Inverts the colors in an image.
/// </summary>
/// <returns>
/// The Altered Image
/// </returns>
public CIImage ColorInvert ()
{
var invert = new CIColorInvert () {
Image = flower
};
return invert.OutputImage;
}
/// <summary>
/// Changes colors based on an input gradient image's mapping.
/// </summary>
/// <returns>The altered image.</returns>
CIImage ColorMap ()
{
var color_map = new CIColorMap () {
Image = flower,
GradientImage = flower
};
return color_map.OutputImage;
}
/// <summary>
/// Remaps colors so they fall within shades of a single color.
/// </summary>
/// <returns>
/// The Altered Image
/// </returns>
public CIImage ColorMonochrome ()
{
var inputColor = new CIColor (new CGColor (100F, 0F, 100F)); // Make it Purple R + B = Purple
var monoChrome = new CIColorMonochrome () {
Image = flower,
Color = inputColor,
Intensity = 1F, // Default 1
};
return monoChrome.OutputImage;
}
/// <summary>
/// Reduces the number of levels for each color component.
/// </summary>
/// <returns>The altered image.</returns>
CIImage ColorPosterize ()
{
var posterize = new CIColorPosterize () {
Image = flower,
Levels = 8
};
return posterize.OutputImage;
}
/// <summary>
/// Maps luminance to a color ramp of two colors.
/// </summary>
/// <returns>
/// The altered Image
/// </returns>
public CIImage FalseColor ()
{
var color0 = new CIColor (new CGColor (255F, 251F, 0F)); // A Yellowish Color
var color1 = new CIColor (new CGColor (51F, 0F, 255F)); // A Purplish Color
var falseColor = new CIFalseColor () {
Image = flower,
Color0 = color0,
Color1 = color1
};
return falseColor.OutputImage;
}
/// <summary>
/// Converts a grayscale image to an alpha mask.
/// </summary>
/// <returns>The altered image.</returns>
CIImage MaskToAlpha ()
{
var masktoalpha = new CIMaskToAlpha () {
Image = heron
};
return masktoalpha.OutputImage;
}
/// <summary>
/// Creates a grayscale image from the maximum value of the RGB color values.
/// </summary>
/// <returns>The altered image.</returns>
CIImage MaximumComponent ()
{
var maximumcomponent = new CIMaximumComponent () {
Image = flower
};
return maximumcomponent.OutputImage;
}
/// <summary>
/// Creates a grayscale image from the minimum component of the RGB values.
/// </summary>
/// <returns>The altered image.</returns>
CIImage MinimumComponent ()
{
var minimumcomponent = new CIMinimumComponent () {
Image = flower
};
return minimumcomponent.OutputImage;
}
/// <summary>
/// Exaggerates color of the image producing a vintage look.
/// </summary>
/// <returns>The altered inmage.</returns>
CIImage PhotoEffectChrome ()
{
var photo_effect_chrome = new CIPhotoEffectChrome () {
Image = flower
};
return photo_effect_chrome.OutputImage;
}
/// <summary>
/// Reduces color of the image producing a vintage look.
/// </summary>
/// <returns>The altered image.</returns>
CIImage PhotoEffectFade ()
{
var photo_effect_fade = new CIPhotoEffectFade () {
Image = flower
};
return photo_effect_fade.OutputImage;
}
/// <summary>
/// Distorts colors in a style reminiscent of instant film.
/// </summary>
/// <returns>The altered image.</returns>
CIImage PhotoEffectInstant ()
{
var photo_effect_instant = new CIPhotoEffectInstant () {
Image = flower
};
return photo_effect_instant.OutputImage;
}
/// <summary>
/// Produces a low-contrast black-and-white image.
/// </summary>
/// <returns>The altered image.</returns>
CIImage PhotoEffectMono ()
{
var photo_effect_mono = new CIPhotoEffectMono () {
Image = flower
};
return photo_effect_mono.OutputImage;
}
/// <summary>
/// Produces a high-contrast black-and-white image.
/// </summary>
/// <returns>The altered image.</returns>
CIImage PhotoEffectNoir ()
{
var photo_effect_noir = new CIPhotoEffectNoir () {
Image = flower
};
return photo_effect_noir.OutputImage;
}
/// <summary>
/// Produces a vintage look with exagerrated cool colors.
/// </summary>
/// <returns>The altered image.</returns>
CIImage PhotoEffectProcess ()
{
var photo_effect_process = new CIPhotoEffectProcess () {
Image = flower
};
return photo_effect_process.OutputImage;
}
/// <summary>
/// Produces a black-and-white image with minimal contrast changes.
/// </summary>
/// <returns>The altered image.</returns>
CIImage PhotoEffectTonal ()
{
var photo_effect_tonal = new CIPhotoEffectTonal () {
Image = flower
};
return photo_effect_tonal.OutputImage;
}
/// <summary>
/// Produces a vintage look with exagerrated warm colors.
/// </summary>
/// <returns>The altered image.</returns>
CIImage PhotoEffectTransfer ()
{
var photo_effect_transfer = new CIPhotoEffectTransfer () {
Image = flower
};
return photo_effect_transfer.OutputImage;
}
/// <summary>
/// Adjusts midtone brightness.
/// </summary>
/// <returns>
/// Alters the image
/// </returns>
public CIImage GammaAdjust ()
{
var gammaAdjust = new CIGammaAdjust () {
Image = flower,
Power = 3F, // Default value: 0.75
};
return gammaAdjust.OutputImage;
}
#endregion
#region CategoryGradient
/// <summary>
/// Generates a gradient that varies from one color to another using a Gaussian distribution.
/// </summary>
/// <returns>
/// The gradient.
/// </returns>
public CIImage GaussianGradient ()
{
var centerVector = new CIVector (100, 100); // Default is [150 150]
var color1 = CIColor.FromRgba (1, 0, 1, 1);
var color0 = CIColor.FromRgba (0, 1, 1, 1);
var gaussGradient = new CIGaussianGradient () {
Center = centerVector,
Color0 = color0,
Color1 = color1,
Radius = 280f // Default is 300
};
return Crop (gaussGradient);
}
/// <summary>
/// Generates a gradient that varies along a linear axis between two defined endpoints.
/// </summary>
/// <returns>
/// The gradient.
/// </returns>
public CIImage LinearGradient ()
{
var point0 = new CIVector (0, 0); // Default [0 0]
var point1 = new CIVector (250, 250); // Default [200 200]
var linearGrad = new CILinearGradient () {
Point0 = point0,
Point1 = point1,
Color0 = new CIColor (UIColor.Red),
Color1 = new CIColor (UIColor.Blue)
};
return Crop (linearGrad);
}
/// <summary>
/// Generates a gradient that varies radially between two circles having the same center.
/// </summary>
/// <returns>
/// The gradient.
/// </returns>
public CIImage RadialGradient ()
{
var center = new CIVector (100, 100); // Default [150 150]
var radGradient = new CIRadialGradient () {
Center = center,
Radius0 = 10F, // Default 5
Radius1 = 150F, // Default 100
Color0 = new CIColor (new CGColor (0, 255F, 0)), // Green
Color1 = new CIColor (new CGColor (0, 0, 0)) // Black
};
return Crop (radGradient);
}
/// <summary>
/// Produces a gradient along a linear axis between two endpoints.
/// </summary>
/// <returns>The altered image.</returns>
CIImage SmoothLinearGradient ()
{
var point0 = new CIVector (0, 0); // Default [0 0]
var point1 = new CIVector (250, 250); // Default [200 200]
var linearGrad = new CISmoothLinearGradient () {
Point0 = point0,
Point1 = point1,
Color0 = new CIColor (UIColor.Red),
Color1 = new CIColor (UIColor.Blue)
};
return Crop (linearGrad);
}
#endregion
#region CICategoryHalftoneEffect
/// <summary>
/// Creates a circular bulls-eye-style halftone screen.
/// </summary>
/// <returns>The altered image.</returns>
CIImage CircularScreen ()
{
var cilcular_screen = new CICircularScreen () {
Image = flower
};
return cilcular_screen.OutputImage;
}
/// <summary>
/// Creates a halftone dot pattern screen.
/// </summary>
/// <returns>The altered image.</returns>
CIImage DotScreen ()
{
var dot_screen = new CIDotScreen () {
Image = flower
};
return dot_screen.OutputImage;
}
/// <summary>
/// Creates a hatched halftone pattern screen.
/// </summary>
/// <returns>The altered image.</returns>
CIImage HatchedScreen ()
{
var hatched_screen = new CIHatchedScreen () {
Image = flower
};