-
Notifications
You must be signed in to change notification settings - Fork 1
/
index_.html
1039 lines (758 loc) · 38.3 KB
/
index_.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Favicon -->
<!--
<link rel="shortcut icon" href="./assets/favicon/favicon.ico" type="image/x-icon" />
-->
<link rel="shortcut icon" href="./photo.ico" type="image/x-icon" />
<!-- Map CSS -->
<link rel="stylesheet" href="https://api.mapbox.com/mapbox-gl-js/v0.53.0/mapbox-gl.css" />
<!-- Libs CSS -->
<link rel="stylesheet" href="./assets/css/libs.bundle.css" />
<!-- Theme CSS -->
<link rel="stylesheet" href="./assets/css/theme.bundle.css" />
<!-- Title -->
<title>Photo Reality AR - Photo Editor for Augmented Reality</title>
<meta content="Photo Editor for Augmented Reality (AR)"
name="description">
<meta content="photo editor, augmented reality, ar photo, photo filters, photo effects"
name="keywords">
</head>
<body>
<!-- NAVBAR -->
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container-fluid">
<!-- Brand -->
<a class="navbar-brand" href="./index.html">
<!--
<img src="./assets/img/brand.svg" class="navbar-brand-img" alt="...">
<img src="./images/sigmanode.png" class="navbar-brand-img" />
-->
Photo Reality Cut
</a>
<!-- Toggler -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Collapse -->
<div class="collapse navbar-collapse" id="navbarCollapse">
<!-- Toggler -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<i class="fe fe-x"></i>
</button>
<!-- Navigation -->
<ul class="navbar-nav ms-auto">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarPages" data-bs-toggle="dropdown" href="#" aria-haspopup="true" aria-expanded="false">
Photo
</a>
<div class="dropdown-menu dropdown-menu-lg" aria-labelledby="navbarPages">
<div class="row gx-0">
<div class="col-6">
<div class="row gx-0">
<div class="col-12 col-lg-6">
<!-- Heading -->
<h6 class="dropdown-header">
Photo
</h6>
<a class="dropdown-item" href="./photocurves.html">
Photo Curves
</a>
<a class="dropdown-item" href="./photoshaders.html">
Photo Shaders
</a>
<a class="dropdown-item mb-5" href="./photodraw.html">
Photo Draw
</a>
</div>
</div>
</div>
<div class="col-6">
<div class="row gx-0">
<div class="col-12 col-lg-6">
<h6 class="dropdown-header">
Digital Compositing
</h6>
<a class="dropdown-item mb-5" href="./digitalcompositing.html">
100 Days of Photo Editing
</a>
</div>
</div>
</div>
</div>
</div> <!-- / .row -->
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarPages" data-bs-toggle="dropdown" href="#" aria-haspopup="true" aria-expanded="false">
Video
</a>
<div class="dropdown-menu dropdown-menu-lg" aria-labelledby="navbarPages">
<div class="row gx-0">
<div class="col-6">
<div class="row gx-0">
<div class="col-12 col-lg-6">
<h6 class="dropdown-header">
Video Editing
</h6>
<a class="dropdown-item" href="./videoeditorsdk.html">
Video Editor
</a>
<a class="dropdown-item" href="./spatialvideos.html">
Spatial Videos
</a>
<a class="dropdown-item" href="./spatialcatvideos.html">
Spatial Cat Videos
</a>
<a class="dropdown-item mb-5" href="./spatialanimalvideos.html">
Spatial Animal Videos
</a>
</div>
</div>
</div>
<div class="col-6">
<div class="row gx-0">
<div class="col-12 col-lg-6">
<!-- Heading -->
<h6 class="dropdown-header">
Artificial Intelligence
</h6>
<a class="dropdown-item" href="./stablediffusioncatanimator.html">
Stable Diffusion Cat Animator
</a>
</div>
</div>
</div>
</div>
</div> <!-- / .row -->
</li>
<!--
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarDocumentation" data-bs-toggle="dropdown" href="#" aria-haspopup="true" aria-expanded="false">
Video
</a>
<div class="dropdown-menu dropdown-menu-md" aria-labelledby="navbarDocumentation">
<div class="list-group list-group-flush">
<a class="list-group-item" href="./videoeditorsdk.html">
<div class="icon icon-sm text-primary">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"></path><path fill="#335EEA" opacity=".3" d="M6 4h12l2 2.5H4z"></path><path d="M5 6h14a2 2 0 012 2v9a2 2 0 01-2 2h-3c-1 0-1.5-2-4-2s-2.5 2-4 2H5a2 2 0 01-2-2V8a2 2 0 012-2zm3 8a2 2 0 100-4 2 2 0 000 4zm8 0a2 2 0 100-4 2 2 0 000 4z" fill="#335EEA"></path></g></svg>
</div>
<div class="ms-4">
<h6 class="fw-bold text-uppercase text-primary mb-0">
Video Editor
</h6>
<p class="fs-sm text-gray-700 mb-0">
Trim, Cut, Composite, and Add
</p>
</div>
</a>
</div>
</div>
</li>
-->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarDocumentation" data-bs-toggle="dropdown" href="#" aria-haspopup="true" aria-expanded="false">
Augmented Reality
</a>
<div class="dropdown-menu dropdown-menu-lg" aria-labelledby="navbarPages">
<div class="row gx-0">
<div class="col-6">
<div class="row gx-0">
<div class="col-12 col-lg-6">
<h6 class="dropdown-header">
Filmmaking AR Props
</h6>
<a class="dropdown-item mb-5" href="./publicdomainusdz.html">
Public Domain USDZ
</a>
<a class="dropdown-item mb-5" href="./spatialcats.html">
Spatial Cats USDZ
</a>
</div>
</div>
</div>
<div class="col-6">
<div class="row gx-0">
<div class="col-12 col-lg-6">
<!-- Heading -->
<h6 class="dropdown-header">
Augmented Reality
</h6>
<a class="dropdown-item" href="./realitykit_terrainshader_surfaceshader_geometrymodifier.html">
RealityKit Terrain Shader
</a>
</div>
</div>
</div>
<!--
<div class="dropdown-menu dropdown-menu-md" aria-labelledby="navbarDocumentation">
<div class="list-group list-group-flush">
<a class="list-group-item" href="./realitykit_terrainshader_surfaceshader_geometrymodifier.html">
<div class="icon icon-sm text-primary">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"></path><path fill="#335EEA" opacity=".3" d="M6 4h12l2 2.5H4z"></path><path d="M5 6h14a2 2 0 012 2v9a2 2 0 01-2 2h-3c-1 0-1.5-2-4-2s-2.5 2-4 2H5a2 2 0 01-2-2V8a2 2 0 012-2zm3 8a2 2 0 100-4 2 2 0 000 4zm8 0a2 2 0 100-4 2 2 0 000 4z" fill="#335EEA"></path></g></svg>
</div>
<div class="ms-4">
<h6 class="fw-bold text-uppercase text-primary mb-0">
Spatial Computing
</h6>
<p class="fs-sm text-gray-700 mb-0">
RealityKit Terrain Shader
</p>
</div>
</a>
</div>
</div>
-->
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarDocumentation" data-bs-toggle="dropdown" href="#" aria-haspopup="true" aria-expanded="false">
Filters & Effects
</a>
<div class="dropdown-menu dropdown-menu-md" aria-labelledby="navbarDocumentation">
<div class="list-group list-group-flush">
<a class="list-group-item" href="./photofilters.html">
<div class="icon icon-sm text-primary">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"/><rect fill="#335EEA" x="4" y="4" width="7" height="7" rx="1.5"/><path d="M5.5 13h4a1.5 1.5 0 011.5 1.5v4A1.5 1.5 0 019.5 20h-4A1.5 1.5 0 014 18.5v-4A1.5 1.5 0 015.5 13zm9-9h4A1.5 1.5 0 0120 5.5v4a1.5 1.5 0 01-1.5 1.5h-4A1.5 1.5 0 0113 9.5v-4A1.5 1.5 0 0114.5 4zm0 9h4a1.5 1.5 0 011.5 1.5v4a1.5 1.5 0 01-1.5 1.5h-4a1.5 1.5 0 01-1.5-1.5v-4a1.5 1.5 0 011.5-1.5z" fill="#335EEA" opacity=".3"/></g></svg> </div>
<!-- Content -->
<div class="ms-4">
<!-- Heading -->
<h6 class="fw-bold text-uppercase text-primary mb-0">
Photo Filters
</h6>
<!-- Text -->
<p class="fs-sm text-gray-700 mb-0">
Full list of Filters
</p>
</div>
</a>
<a class="list-group-item" href="./photoeffects.html">
<!-- Icon -->
<div class="icon icon-sm text-primary">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"></path><path d="M11 10.417V4a1 1 0 012 0v6.317l5.385-3.109a1 1 0 011 1.732l-5.47 3.16 5.385 3.108a1 1 0 01-1 1.732L13 13.88V20a1 1 0 01-2 0v-6.218L5.529 16.94a1 1 0 11-1-1.732L9.914 12.1 4.444 8.94a1 1 0 011-1.732L11 10.417z" fill="#335EEA" opacity=".3"></path><path d="M7.858 9.78a1 1 0 01-.666 1.348l-1.931.517a1 1 0 01-.518-1.932l1.932-.517a1.01 1.01 0 01.128-.026 1.01 1.01 0 01-.042-.123l-.518-1.932a1 1 0 111.932-.517l.518 1.931a1 1 0 01-.835 1.25zm9.168 5.293c.016.04.03.08.041.123l.518 1.931a1 1 0 01-1.932.518l-.517-1.932a1 1 0 01.834-1.25 1 1 0 01.666-1.348l1.931-.517a1 1 0 11.518 1.931l-1.932.518a1.01 1.01 0 01-.127.026zM15.97 9.78a1 1 0 01-.834-1.25l.517-1.932a1 1 0 011.932.517l-.518 1.932a1.01 1.01 0 01-.041.123c.042.006.085.014.127.026l1.932.517a1 1 0 01-.518 1.932l-1.931-.518a1 1 0 01-.666-1.347zm-9.167 5.293a1.01 1.01 0 01-.128-.026l-1.932-.518a1 1 0 11.518-1.931l1.932.517a1 1 0 01.665 1.348 1 1 0 01.834 1.25l-.517 1.932a1 1 0 11-1.932-.518l.518-1.931a1.01 1.01 0 01.042-.123zm5.111-7.635a1 1 0 01-1.5.098L9 6.12a1 1 0 111.414-1.414l1.414 1.414c.031.031.06.064.086.098A1.01 1.01 0 0112 6.12l1.414-1.414a1 1 0 111.414 1.414l-1.414 1.415a1 1 0 01-1.5-.098zm0 10.586a1.01 1.01 0 01-.086.097l-1.414 1.415A1 1 0 019 18.12l1.414-1.414a1 1 0 011.5.098 1 1 0 011.5-.098l1.414 1.414a1 1 0 01-1.414 1.415L12 18.12a1.01 1.01 0 01-.086-.097z" fill="#335EEA" opacity=".3"></path></g></svg>
</div>
<div class="ms-4">
<!-- Heading -->
<h6 class="fw-bold text-uppercase text-primary mb-0">
Photo Effects
</h6>
<!-- Text -->
<p class="fs-sm text-gray-700 mb-0">
Full list of Shader Effects
</p>
</div>
</a>
</div>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarPages" data-bs-toggle="dropdown" href="#" aria-haspopup="true" aria-expanded="false">
Pipeline
</a>
<div class="dropdown-menu dropdown-menu-lg" aria-labelledby="navbarPages">
<div class="row gx-0">
<div class="col-6">
<div class="row gx-0">
<div class="col-12 col-lg-6">
<!--
<h6 class="dropdown-header">
Digital Compositing
</h6>
<a class="dropdown-item mb-5" href="./digitalcompositing.html">
Open ^Graphics Pipeline
</a>
-->
<h6 class="dropdown-header">
Open ^Graphics Pipeline
</h6>
<a class="dropdown-item mb-5" href="./Reduce-Cognitive-Overload-In-Graphics-Software.pdf">
Reduce Cognitive Overload (PDF)
</a>
<h6 class="dropdown-header">
Download
</h6>
<!-- List -->
<a class="dropdown-item" href="./download.html">
xrOS, MacOS, or iOS
</a>
</div>
</div>
</div>
</div>
</div> <!-- / .row -->
</li>
</ul>
<a class="navbar-btn btn btn-sm btn-info lift ms-auto" href="./gallery.html">
Gallery
</a>
</div>
</div>
</nav>
<!-- WELCOME -->
<section class="mt-n11 pt-12 pb-8 pt-md-14 pb-md-11 bg-black bg-pattern-2">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-lg-10 text-center">
<!-- Headin -->
<h1 class="display-1 fw-bold text-white" data-aos="fade-up" data-aos-delay="50">
Photo Reality
</h1>
<!-- Text -->
<p class="lead text-gray-500 mb-6 mx-auto" data-aos="fade-up" data-aos-delay="100" style="max-width: 500px;">
<!--
Photo Reality AR is an open-source Photo Editor with Augmented Reality capabilities that uses node-based digital compositing.
Photo Reality AR hosts the open-source repo that is building a new generation of graphics design software such as a Photo Editor with an Open Pipeline.
Photo Reality is a Social Movement hosting all the open-source nodes of Open ^Graphics Pipeline with the aim of building the backbone for a new generation of graphics design software such as a Photo Editor, Animator, Motion Graphics Creator, Video Editor, and Augmented Reality Editor.
-->
Photo Reality is a social movement using Open ^Graphics Pipeline to build a new generation of spatial graphics software: Photo Editor, MoCap, Animator, Video Cut VFX, Motion Graphics, and AR.
</p>
<!-- Button -->
<!--
<p class="mb-7 mb-md-9" data-aos="fade-up" data-aos-delay="150">
<a class="btn btn-info shadow lift" href="#!">
Get it now <i class="fe fe-arrow-right ms-3"></i>
</a>
</p>
-->
</div>
</div> <!-- / .row -->
<div class="row">
<!--
<div class="col-12" data-aos="fade-up" data-aos-delay="200">
<div class="position-relative pt-7 pb-7 ps-7 mb-7 mb-md-9 rounded-4 shadow-multicolor overflow-hidden">
<div class="position-absolute top-0 end-0 bottom-0 start-0 bg-gradient-multicolor"></div>
<img class="position-relative img-fluid rounded-start shadow-lg" src="images/augmented_reality_photo_ar_small.png" alt="..." />
</div>
</div>
-->
<figure class="figure mb-7">
<!-- Image -->
<img class="figure-img img-fluid rounded lift lift-lg" src="images/augmentedrealityphoto_ar.png" alt="...">
<!-- Caption -->
<figcaption class="figure-caption text-center">
Put on your Vision Pro now.
</figcaption>
</figure>
<!-- Image -->
<!--
<img src="images/augmentedrealityphoto_ar.png" alt="..." />
<img class="position-relative img-fluid rounded-start shadow-lg" src="assets/img/screenshots/desktop/dashkit-alt.jpg" alt="..." />
-->
<!--
<img class="position-relative img-fluid rounded-start shadow-lg" src="images/augmented_reality_photo_ar.png" alt="..." />
<img class="position-relative" src="images/augmented_reality_photo_ar.png" alt="..." />
-->
<!--
<img src="images/augmented_reality_photo_ar.png" alt="..." />
-->
</div> <!-- / .row -->
</div> <!-- / .container -->
</section>
<!-- SHAPE -->
<div class="position-relative">
<div class="shape shape-bottom shape-fluid-x text-dark">
<svg viewBox="0 0 2880 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 48h2880V0h-720C1442.5 52 720 0 720 0H0v48z" fill="currentColor"/></svg> </div>
</div>
<!-- ABOUT -->
<section class="pt-8 pt-md-11 bg-black">
<div class="container">
<div class="row align-items-center justify-content-between">
<div class="col-12 col-md-6 col-lg-5">
<!-- Heading -->
<h2 class="display-3 fw-bold text-white mb-6 mb-md-8">
Node-based
</h2>
<!-- Text -->
<p class="text-muted lead mb-6">
<span class="text-white fw-bold">Digital Compositing.</span> Photo Reality uses a digital compositing workflow, node-based instead of layer-based, to lay out the progression of combining multiple images to a final output image. Digital Compositing allows great flexibility, including the ability to modify an earlier image step while viewing the final composite.
</p>
<!-- Text -->
<!--
<p class="text-muted lead mb-6">
<span class="text-white fw-bold">Flexibility.</span> Digital Compositing allows great flexibility, including the ability to modify an earlier image step while viewing the final composite.
</p>
-->
<p class="text-muted lead mb-7 mb-md-0">
<span class="text-white fw-bold">Open Pipeline.</span> Photo Reality displays a digital compositing node graph as a list of instructional steps, the Open Pipeline, with modern concepts of Auto Chaining, Viewer Cycling, References, and Reverse Compositing.
</p>
</div>
<div class="col-12 col-md-6">
<!-- Media -->
<div class="position-relative vw-md-50 pt-7 ps-7 ps-md-9 overflow-hidden" style="max-width: 800px;">
<!-- Background -->
<div class="position-absolute top-0 end-0 bottom-0 start-0 bg-gradient-multicolor rounded-4"></div>
<!-- Image -->
<!--
<img class="position-relative w-100 w-md-150" src="assets/img/screenshots/desktop/dashkit-alt-mixed-cropped.png" alt="...">
-->
<img class="position-relative w-100 w-md-150" src="images/photoeditor.png" alt="...">
</div>
</div>
</div> <!-- / .row -->
</div>
</section>
<!-- ABOUT -->
<section class="pt-8 pt-md-11 bg-black">
<div class="container">
<div class="row align-items-center justify-content-between">
<div class="col-12 col-md-6 col-lg-5 order-md-1">
<!-- Heading -->
<h2 class="display-4 fw-bold text-white mb-6 mb-md-8">
Shader Effects
</h2>
<!-- Text -->
<p class="text-muted lead mb-6">
<span class="text-white fw-bold">GPU.</span> Photo Reality uses hardware-accelerated graphics running on the Graphics Processing Unit (GPU) whenever possible to render high-resolution graphics in less time using shaders.
</p>
<p class="text-muted lead mb-6">
<span class="text-white fw-bold">Effects.</span> Add shader effects such as smoke, water, fire, and particles to your photo; mix the shaders with over 100 of filters.
</p>
<!-- Text -->
<p class="text-muted lead mb-7 mb-md-0">
<span class="text-white fw-bold">Shaders.</span> A Shader is a set of computer instructions that is executed on the GPU that affects the light, darkness, and color etc. of an image.
</p>
</div>
<div class="col-12 col-md-6 col-lg-6 order-md-0">
<!-- Positioner -->
<div class="position-relative">
<!-- Media -->
<div class="position-relative vw-md-50 p-7 p-md-9 ps-0 overflow-hidden float-end" style="max-width: 800px;">
<!-- Background -->
<div class="position-absolute top-0 end-0 bottom-0 start-0 bg-gradient-multicolor rounded-4"></div>
<!-- Image -->
<!--
<img class="position-relative w-100 w-md-120 float-end" src="assets/img/screenshots/ui/landkit-figma.png" alt="...">
-->
<img class="position-relative w-100 w-md-120 float-end" src="images/SinusoidalNoise.gif" alt="...">
</div>
<!-- Icon -->
<!--
<img class="img-fluid position-absolute top-0 end-0 mt-n5 me-n5" src="assets/img/icons/figma-dark-circle.png" alt="...">
-->
</div>
</div>
</div>
<!-- / .row -->
</div>
</section>
<!-- IMAGE -->
<!--
<section class="py-14 py-lg-16 jarallax" data-jarallax data-speed=".8" style="background-image: url(assets/img/covers/cover-19.jpg);">
<div class="shape shape-top shape-fluid-x text-black">
<svg viewBox="0 0 2880 250" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h2880v125h-720L720 250H0V0z" fill="currentColor"/></svg> </div>
<div class="shape shape-bottom shape-fluid-x text-black">
<svg viewBox="0 0 2880 250" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M720 125L2160 0h720v250H0V125h720z" fill="currentColor"/></svg> </div>
</section>
-->
<!-- CTA -->
<section class="py-10 py-md-14 bg-black">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-md-10 col-lg-8 text-center">
<h6 class="text-uppercase text-info mb-6">
A Satire in Hackernoon
</h6>
<a href="https://hackernoon.com/revolutionary-user-interface-design-tackling-cognitive-overload-in-graphics-software" rel="nofollow">
<figure class="figure mb-7">
<img class="figure-img img-fluid rounded lift lift-lg" src="external/HackerNoon Rounded Horizontal.png" alt="hackernoon" width="50%" height=-"50%">
</figure>
<h1 class="display-1 fw-bold text-white">
Tackling Cognitive Overload in Graphics Software
</h1>
</a>
</p>
<p> </p>
<p> </p>
<!-- Pretitle -->
<h6 class="text-uppercase text-info mb-6">
It's the age of Augmented Reality
</h6>
<!-- Heading -->
<h1 class="display-1 fw-bold text-white">
Post-process your Photos with AR
</h1>
<!-- Text -->
<p class="fs-lg text-gray-500 mb-6 mb-md-8">
Focus on your photo and let us handle all your Photo Editing capabilities, including Augmented Reality.
</p>
<p class="mb-6 mb-md-8">
<figure class="figure mb-7">
<!-- Image -->
<img class="figure-img img-fluid rounded lift lift-lg" src="videos/surfaceshaders_geometrymodifiers.gif" alt="surface shaders">
<!-- Caption -->
<figcaption class="figure-caption text-center">
Reality Shaders - Surface Shaders & Geometry Modifiers
</figcaption>
</figure>
<!--
<video width="512" height="256" controls>
<source src="videos/surfaceshader.mp4" type=video/mp4>
</video>
-->
</p>
<h2 class="display-3 fw-bold text-white mb-6 mb-md-8">
Open-Source
</h2>
<!-- Button -->
<p>
<a href="download.html" class="btn btn-info lift">
Download Alpha<i class="fe fe-arrow-right ms-2"></i>
</a>
</p>
</div>
</div> <!-- / .row -->
</div> <!-- / .container -->
</section>
<!-- FEATURES -->
<section class="bg-gradient-dark-black py-8 py-md-11">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-lg-7 text-center">
<!-- Heading -->
<h2 class="display-3 fw-bold text-white">
Open-source photo editing capabilities.
</h2>
<!-- Text -->
<p class="lead text-muted mb-9">
We are building all the necessary photo editing and image post-processing capabilities you'll need by components.
Please check out our open-source projects in GitHub.
</p>
</div>
</div> <!-- / .row -->
<div class="row mt-n7">
<div class="col-12 col-sm-6 col-lg-4 mt-7">
<!-- Card -->
<div class="card h-100 bg-dark rounded-3">
<div class="card-body p-5 pb-0 my-auto">
<!-- Image -->
<!--
<img class="img-fluid" src="assets/img/illustrations/illustration-1-dark.png" alt="..." style="max-width: 150px;">
-->
<div class="icon d-inline-flex p-3 rounded-circle bg-info text-white">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"></path><path d="M13 9V6c-3.954 1.488-6.211 2.994-8 7h3c.743-.8 1.989-3 5-4z" fill="#335EEA" opacity=".3"></path><circle fill="#335EEA" cx="18" cy="7.5" r="3"></circle><circle fill="#335EEA" cx="6" cy="18" r="3"></circle></g></svg>
</div>
</div>
<div class="card-body p-5">
<!-- Heading -->
<a href="photocurves.html">
<h3 class="fw-bold text-white">
Photo Curves - new!
</h3>
</a>
<!-- Text -->
<p class="text-muted mb-0">
Adjust your photos with a RGB or HSV photo tone curve to lighten, or decrease the contrast of your image.
</p>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-lg-4 mt-7">
<!-- Card -->
<div class="card h-100 bg-dark rounded-3">
<div class="card-body p-5 pb-0 my-auto">
<div class="row gx-0" style="max-width: 150px;">
<div class="col-4">
<img class="w-150 rounded-1" src="assets/img/portfolio/portfolio-3.jpg" alt="...">
</div>
<div class="col-4">
<img class="w-150 mt-3 rounded-1" src="assets/img/portfolio/portfolio-2.jpg" alt="...">
</div>
<div class="col-4">
<img class="w-150 mt-5 rounded-1" src="assets/img/portfolio/portfolio-1.jpg" alt="...">
</div>
</div>
</div>
<div class="card-body p-5">
<a href="photofilters.html">
<h3 class="fw-bold text-white">
Photo Filters
</h3>
</a>
<p class="text-muted mb-0">
Apply, mix, and blend a huge collection of photo filters on your photo.
</p>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-lg-4 mt-7">
<div class="card h-100 bg-dark rounded-3">
<div class="card-body p-5 pb-0 my-auto">
<div class="icon d-inline-flex p-3 rounded-circle bg-info text-white">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"></path><path d="M18.5 8a2.5 2.5 0 110-5 2.5 2.5 0 010 5zm0 13a2.5 2.5 0 110-5 2.5 2.5 0 010 5zm-13 0a2.5 2.5 0 110-5 2.5 2.5 0 010 5z" fill="#335EEA" opacity=".3"></path><path d="M5.5 8a2.5 2.5 0 110-5 2.5 2.5 0 010 5zM11 4h2a1 1 0 010 2h-2a1 1 0 010-2zm0 14h2a1 1 0 010 2h-2a1 1 0 010-2zm-6-8a1 1 0 011 1v2a1 1 0 01-2 0v-2a1 1 0 011-1zm14 0a1 1 0 011 1v2a1 1 0 01-2 0v-2a1 1 0 011-1z" fill="#335EEA"></path></g></svg>
</div>
</div>
<div class="card-body p-5">
<a href="photodraw.html">
<h3 class="fw-bold text-white">
WYSIWYG Draw
</h3>
</a>
<p class="text-muted mb-0">
A What-You-See-Is-What-You-Get (WYSIWYG) designer to easily adjust the photo to your needs. <br /><br /><br />
</p>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-lg-4 mt-7">
<div class="card h-100 bg-dark rounded-3">
<div class="card-body p-5 pb-0 my-auto">
<div class="icon icon-xl">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"></path><path fill="#335EEA" opacity=".3" d="M5 3h14l4 5H1z"></path><path fill="#335EEA" d="M23 8L12 20 1 8z"></path></g></svg>
</div>
</div>
<div class="card-body p-5">
<a href="realitykit_terrainshader_surfaceshader_geometrymodifier.html">
<h3 class="fw-bold text-white">
RealityKit Terrain Shaders - new!
</h3>
</a>
<p class="text-muted mb-0">
Create an AR Terrain with RealityKit Surface Shader and Geometry Modifier.
</p>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-lg-4 mt-7">
<!-- Card -->
<div class="card h-100 bg-dark rounded-3">
<div class="card-body p-5 pb-0 my-auto">
<!-- Letter -->
<!--
<div class="lh-1 fw-bolder text-info" style="font-size: 100px;">Aa</div>
-->
<div class="card-body p-5 pb-0 my-auto">
<!-- Palette -->
<div class="d-inline-flex flex-row-reverse">
<div class="p-6 rounded-circle bg-gradient-multicolor ms-n3"></div>
<div class="p-6 rounded-circle bg-secondary ms-n3"></div>
<div class="p-6 rounded-circle bg-primary"></div>
</div>
</div>
</div>
<div class="card-body p-5">
<!-- Heading -->
<a href="photoeffects.html">
<h3 class="fw-bold text-white">
Photo Effects
</h3>
</a>
<!-- Text -->
<p class="text-muted mb-0">
Apply, mix, and blend a collection of photo shader effects such as smoke, water, and fire.
</p>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-lg-4 mt-7">
<!--
<div class="card h-100 bg-dark rounded-3">
<div class="card-body p-5 pb-0 my-auto">
<div class="icon d-inline-flex p-3 rounded-circle bg-info text-white">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"/><path d="M4.953 14.303l-1.906-.606C4.65 8.644 7.673 6 12 6c4.327 0 7.349 2.644 8.953 7.697l-1.906.606C17.688 10.023 15.377 8 12 8s-5.688 2.022-7.047 6.303zM12 8a1 1 0 100-2 1 1 0 000 2z" fill="#335EEA" opacity=".3"/><path d="M5.732 6h3.439a3.001 3.001 0 015.658 0h3.439a2 2 0 110 2h-3.439a3.001 3.001 0 01-5.658 0H5.732a2 2 0 110-2zM12 8a1 1 0 100-2 1 1 0 000 2zM4 19a3 3 0 110-6 3 3 0 010 6zm0-2a1 1 0 100-2 1 1 0 000 2zm16 2a3 3 0 110-6 3 3 0 010 6zm0-2a1 1 0 100-2 1 1 0 000 2z" fill="#335EEA"/></g></svg> </div>
</div>
<div class="card-body p-5">
<h3 class="fw-bold text-white">
WYSIWYG
</h3>
<p class="text-muted mb-0">
A What-You-See-Is-What-You-Get (WYSIWYG) designer to easily adjust the photo to your needs.
</p>
</div>
</div>
</div>
-->
</div> <!-- / .row -->
</div>
</section>
<!--
<section class="mt-n11 pt-12 pb-8 pt-md-14 pb-md-11 bg-black bg-pattern-2">
<section class="bg-gradient-dark-black py-8 py-md-11">
<div class="container">
<section class="pt-6 pt-md-8">
-->
<!--
<section class="pt-6 pt-md-8">
-->
<!-- BORDER -->
<div class="bg-black">
<div class="container border-top border-gray-900-50"></div>
</div>
<!-- FOOTER -->
<footer class="py-8 py-md-11 bg-black">
<div class="container">
<div class="row">
<div class="col-12 col-md-4 col-lg-3">
<!--
<img src="./assets/img/brand.svg" alt="..." class="footer-brand img-fluid mb-2">
<p class="text-gray-700 mb-2">
A better way to build.
</p>
-->
<!--
<ul class="list-unstyled list-inline list-social mb-6 mb-md-0">
<li class="list-inline-item list-social-item me-3">
<a href="#!" class="text-decoration-none">
<img src="./assets/img/icons/social/instagram.svg" class="list-social-icon" alt="...">
</a>
</li>
<li class="list-inline-item list-social-item me-3">
<a href="#!" class="text-decoration-none">
<img src="./assets/img/icons/social/facebook.svg" class="list-social-icon" alt="...">
</a>
</li>
<li class="list-inline-item list-social-item me-3">
<a href="#!" class="text-decoration-none">
<img src="./assets/img/icons/social/twitter.svg" class="list-social-icon" alt="...">
</a>
</li>
<li class="list-inline-item list-social-item">
<a href="#!" class="text-decoration-none">
<img src="./assets/img/icons/social/pinterest.svg" class="list-social-icon" alt="...">
</a>
</li>
</ul>
-->
</div>
<div class="col-6 col-md-4 col-lg-2">
</div>
<div class="col-6 col-md-4 col-lg-2">
</div>
<div class="col-6 col-md-4 offset-md-4 col-lg-2 offset-lg-0">
</div>
<div class="col-6 col-md-4 col-lg-2">
<!--
<h6 class="fw-bold text-uppercase text-gray-700">