forked from antimatter15/splat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
2577 lines (2336 loc) · 97.8 KB
/
main.js
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
const PACKED_SPLAT_LENGTH = (
3*4 + // XYZ - Position (Float32)
3*4 + // XYZ - Scale (Float32)
4 + // RGBA - colors (uint8)
4 + // IJKL - quaternion/rot (uint8)
3*4 + // XYZ - Normal (Float32)
3 + // RGB - PBR base colors (uint8)
1 + // ... padding out to 4-byte alignment
2*4 // RM - PBR materials (Float32)
// ... padding
);
const PACKED_RENDERABLE_SPLAT_LENGTH = (
3*4 + // XYZ - Position (Float32)
4 + // ... padding out to BYTES_PER_TEXEL
6*2 + // 6 parameters of covariance matrix (Float16)
4 + // RGBA - colors (uint8)
3*4 + // XYZ - Normal (Float32)
3 + // RGB - PBR base colors (uint8)
1 + // ... padding out to 4-byte alignment
2*4 // RM - PBR materials (Float32)
// ... padding
);
const BYTES_PER_TEXEL = 16; // RGBA32UI = 32 bits per channel * 4 channels = 4*4 bytes
const TEXELS_PER_PACKED_SPLAT = Math.ceil(PACKED_RENDERABLE_SPLAT_LENGTH / BYTES_PER_TEXEL);
const PADDED_RENDERABLE_SPLAT_LENGTH = TEXELS_PER_PACKED_SPLAT * BYTES_PER_TEXEL;
const PADDED_SPLAT_LENGTH = 4 * Math.ceil(PACKED_SPLAT_LENGTH / 4);
const PLY_MAGIC_HEADER = new Uint8Array([112, 108, 121, 10]); // "ply\n"
const LSPLAT_MAGIC_HEADER = new Uint8Array([108, 115, 112, 108, 97, 116, 10]); // "lsplat\n"
let cameras = [
{
id: 0,
img_name: "00001",
width: 1959,
height: 1090,
position: [
-3.0089893469241797, -0.11086489695181866, -3.7527640949141428,
],
rotation: [
[0.876134201218856, 0.06925962026449776, 0.47706599800804744],
[-0.04747421839895102, 0.9972110940209488, -0.057586739349882114],
[-0.4797239414934443, 0.027805376500959853, 0.8769787916452908],
],
fy: 1164.6601287484507,
fx: 1159.5880733038064,
},
{
id: 1,
img_name: "00009",
width: 1959,
height: 1090,
position: [
-2.5199776022057296, -0.09704735754873686, -3.6247725540304545,
],
rotation: [
[0.9982731285632193, -0.011928707708098955, -0.05751927260507243],
[0.0065061360949636325, 0.9955928229282383, -0.09355533724430458],
[0.058381769258182864, 0.09301955098900708, 0.9939511719154457],
],
fy: 1164.6601287484507,
fx: 1159.5880733038064,
},
{
id: 2,
img_name: "00017",
width: 1959,
height: 1090,
position: [
-0.7737533667465242, -0.3364271945329695, -2.9358969417573753,
],
rotation: [
[0.9998813418672372, 0.013742375651625236, -0.0069605529394208224],
[-0.014268370388586709, 0.996512943252834, -0.08220929105659476],
[0.00580653013657589, 0.08229885200307129, 0.9965907801935302],
],
fy: 1164.6601287484507,
fx: 1159.5880733038064,
},
{
id: 3,
img_name: "00025",
width: 1959,
height: 1090,
position: [
1.2198221749590001, -0.2196687861401182, -2.3183162007028453,
],
rotation: [
[0.9208648867765482, 0.0012010625395201253, 0.389880004297208],
[-0.06298204172269357, 0.987319521752825, 0.14571693239364383],
[-0.3847611242348369, -0.1587410451475895, 0.9092635249821667],
],
fy: 1164.6601287484507,
fx: 1159.5880733038064,
},
{
id: 4,
img_name: "00033",
width: 1959,
height: 1090,
position: [
1.742387858893817, -0.13848225198886954, -2.0566370113193146,
],
rotation: [
[0.24669889292141334, -0.08370189346592856, -0.9654706879349405],
[0.11343747891376445, 0.9919082664242816, -0.05700815184573074],
[0.9624300466054861, -0.09545671285663988, 0.2541976029815521],
],
fy: 1164.6601287484507,
fx: 1159.5880733038064,
},
{
id: 5,
img_name: "00041",
width: 1959,
height: 1090,
position: [
3.6567309419223935, -0.16470990600750707, -1.3458085590422042,
],
rotation: [
[0.2341293058324528, -0.02968330457755884, -0.9717522161434825],
[0.10270823606832301, 0.99469554638321, -0.005638106875665722],
[0.9667649592295676, -0.09848690996657204, 0.2359360976431732],
],
fy: 1164.6601287484507,
fx: 1159.5880733038064,
},
{
id: 6,
img_name: "00049",
width: 1959,
height: 1090,
position: [
3.9013554243203497, -0.2597500978038105, -0.8106154188297828,
],
rotation: [
[0.6717235545638952, -0.015718162115524837, -0.7406351366386528],
[0.055627354673906296, 0.9980224478387622, 0.029270992841185218],
[0.7387104058127439, -0.060861588786650656, 0.6712695459756353],
],
fy: 1164.6601287484507,
fx: 1159.5880733038064,
},
{
id: 7,
img_name: "00057",
width: 1959,
height: 1090,
position: [4.742994605467533, -0.05591660945412069, 0.9500365976084458],
rotation: [
[-0.17042655709210375, 0.01207080756938, -0.9852964448542146],
[0.1165090336695526, 0.9931575292530063, -0.00798543433078162],
[0.9784581921120181, -0.1161568667478904, -0.1706667764862097],
],
fy: 1164.6601287484507,
fx: 1159.5880733038064,
},
{
id: 8,
img_name: "00065",
width: 1959,
height: 1090,
position: [4.34676307626522, 0.08168160516967145, 1.0876221470355405],
rotation: [
[-0.003575447631888379, -0.044792503246552894, -0.9989899137764799],
[0.10770152645126597, 0.9931680875192705, -0.04491693593046672],
[0.9941768441149182, -0.10775333677534978, 0.0012732004866391048],
],
fy: 1164.6601287484507,
fx: 1159.5880733038064,
},
{
id: 9,
img_name: "00073",
width: 1959,
height: 1090,
position: [3.264984351114202, 0.078974937336732, 1.0117200284114904],
rotation: [
[-0.026919994628162257, -0.1565891128261527, -0.9872968974090509],
[0.08444552208239385, 0.983768234577625, -0.1583319754069128],
[0.9960643893290491, -0.0876350978794554, -0.013259786205163005],
],
fy: 1164.6601287484507,
fx: 1159.5880733038064,
},
];
let camera = cameras[0];
function getProjectionMatrix(fx, fy, width, height) {
// Returns a matrix in column-major order.
// TODO: Why does this look so different from the OpenGL projection matrix?
const znear = 0.2;
const zfar = 200;
return [
[(2 * fx) / width, 0, 0, 0],
[0, -(2 * fy) / height, 0, 0],
[0, 0, zfar / (zfar - znear), 1],
[0, 0, -(zfar * znear) / (zfar - znear), 0],
].flat();
}
function getViewMatrix(camera) {
// Returns a 4x4 matrix in column-major order.
const R = camera.rotation.flat();
const t = camera.position;
const camToWorld = [
[R[0], R[1], R[2], 0],
[R[3], R[4], R[5], 0],
[R[6], R[7], R[8], 0],
[
-t[0] * R[0] - t[1] * R[3] - t[2] * R[6],
-t[0] * R[1] - t[1] * R[4] - t[2] * R[7],
-t[0] * R[2] - t[1] * R[5] - t[2] * R[8],
1,
],
].flat();
return camToWorld;
}
function add3(a, b) {
return [a[0] + b[0], a[1] + b[1], a[2] + b[2]];
}
function sub3(a, b) {
return [a[0] - b[0], a[1] - b[1], a[2] - b[2]];
}
function normalize3(v) {
const len = Math.max(Math.hypot(v[0], v[1], v[2]), 1e-7);
return [v[0] / len, v[1] / len, v[2] / len];
}
function cross3(a, b) {
return [
a[1] * b[2] - a[2] * b[1],
a[2] * b[0] - a[0] * b[2],
a[0] * b[1] - a[1] * b[0],
];
}
function lookAt(eye, center, up) {
// Returns a 4x4 matrix in column-major order.
const forward = normalize3(sub3(center, eye));
const side = normalize3(cross3(forward, up));
up = normalize3(cross3(side, forward));
return multiply4(
[
side[0], up[0], -forward[0], 0,
side[1], up[1], -forward[1], 0,
side[2], up[2], -forward[2], 0,
0, 0, 0, 1,
],
translate4(identity4(), -eye[0], -eye[1], -eye[2])
);
}
function multiply4(a, b) {
return [
b[0] * a[0] + b[1] * a[4] + b[2] * a[8] + b[3] * a[12],
b[0] * a[1] + b[1] * a[5] + b[2] * a[9] + b[3] * a[13],
b[0] * a[2] + b[1] * a[6] + b[2] * a[10] + b[3] * a[14],
b[0] * a[3] + b[1] * a[7] + b[2] * a[11] + b[3] * a[15],
b[4] * a[0] + b[5] * a[4] + b[6] * a[8] + b[7] * a[12],
b[4] * a[1] + b[5] * a[5] + b[6] * a[9] + b[7] * a[13],
b[4] * a[2] + b[5] * a[6] + b[6] * a[10] + b[7] * a[14],
b[4] * a[3] + b[5] * a[7] + b[6] * a[11] + b[7] * a[15],
b[8] * a[0] + b[9] * a[4] + b[10] * a[8] + b[11] * a[12],
b[8] * a[1] + b[9] * a[5] + b[10] * a[9] + b[11] * a[13],
b[8] * a[2] + b[9] * a[6] + b[10] * a[10] + b[11] * a[14],
b[8] * a[3] + b[9] * a[7] + b[10] * a[11] + b[11] * a[15],
b[12] * a[0] + b[13] * a[4] + b[14] * a[8] + b[15] * a[12],
b[12] * a[1] + b[13] * a[5] + b[14] * a[9] + b[15] * a[13],
b[12] * a[2] + b[13] * a[6] + b[14] * a[10] + b[15] * a[14],
b[12] * a[3] + b[13] * a[7] + b[14] * a[11] + b[15] * a[15],
];
}
function transform4(T, v) {
return [
T[0] * v[0] + T[4] * v[1] + T[8] * v[2] + T[12] * v[3],
T[1] * v[0] + T[5] * v[1] + T[9] * v[2] + T[13] * v[3],
T[2] * v[0] + T[6] * v[1] + T[10] * v[2] + T[14] * v[3],
T[3] * v[0] + T[7] * v[1] + T[11] * v[2] + T[15] * v[3],
];
}
function identity4() {
return [
1, 0, 0, 0,
0, 1, 0, 0,
0, 0, 1, 0,
0, 0, 0, 1,
];
}
function mat3From4(a) {
return [
a[0], a[1], a[2],
a[4], a[5], a[6],
a[8], a[9], a[10],
];
}
function invert4(a) {
let b00 = a[0] * a[5] - a[1] * a[4];
let b01 = a[0] * a[6] - a[2] * a[4];
let b02 = a[0] * a[7] - a[3] * a[4];
let b03 = a[1] * a[6] - a[2] * a[5];
let b04 = a[1] * a[7] - a[3] * a[5];
let b05 = a[2] * a[7] - a[3] * a[6];
let b06 = a[8] * a[13] - a[9] * a[12];
let b07 = a[8] * a[14] - a[10] * a[12];
let b08 = a[8] * a[15] - a[11] * a[12];
let b09 = a[9] * a[14] - a[10] * a[13];
let b10 = a[9] * a[15] - a[11] * a[13];
let b11 = a[10] * a[15] - a[11] * a[14];
let det =
b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06;
if (!det) return null;
return [
(a[5] * b11 - a[6] * b10 + a[7] * b09) / det,
(a[2] * b10 - a[1] * b11 - a[3] * b09) / det,
(a[13] * b05 - a[14] * b04 + a[15] * b03) / det,
(a[10] * b04 - a[9] * b05 - a[11] * b03) / det,
(a[6] * b08 - a[4] * b11 - a[7] * b07) / det,
(a[0] * b11 - a[2] * b08 + a[3] * b07) / det,
(a[14] * b02 - a[12] * b05 - a[15] * b01) / det,
(a[8] * b05 - a[10] * b02 + a[11] * b01) / det,
(a[4] * b10 - a[5] * b08 + a[7] * b06) / det,
(a[1] * b08 - a[0] * b10 - a[3] * b06) / det,
(a[12] * b04 - a[13] * b02 + a[15] * b00) / det,
(a[9] * b02 - a[8] * b04 - a[11] * b00) / det,
(a[5] * b07 - a[4] * b09 - a[6] * b06) / det,
(a[0] * b09 - a[1] * b07 + a[2] * b06) / det,
(a[13] * b01 - a[12] * b03 - a[14] * b00) / det,
(a[8] * b03 - a[9] * b01 + a[10] * b00) / det,
];
}
function rotate4(a, rad, x, y, z) {
let len = Math.hypot(x, y, z);
x /= len;
y /= len;
z /= len;
let s = Math.sin(rad);
let c = Math.cos(rad);
let t = 1 - c;
let b00 = x * x * t + c;
let b01 = y * x * t + z * s;
let b02 = z * x * t - y * s;
let b10 = x * y * t - z * s;
let b11 = y * y * t + c;
let b12 = z * y * t + x * s;
let b20 = x * z * t + y * s;
let b21 = y * z * t - x * s;
let b22 = z * z * t + c;
return [
a[0] * b00 + a[4] * b01 + a[8] * b02,
a[1] * b00 + a[5] * b01 + a[9] * b02,
a[2] * b00 + a[6] * b01 + a[10] * b02,
a[3] * b00 + a[7] * b01 + a[11] * b02,
a[0] * b10 + a[4] * b11 + a[8] * b12,
a[1] * b10 + a[5] * b11 + a[9] * b12,
a[2] * b10 + a[6] * b11 + a[10] * b12,
a[3] * b10 + a[7] * b11 + a[11] * b12,
a[0] * b20 + a[4] * b21 + a[8] * b22,
a[1] * b20 + a[5] * b21 + a[9] * b22,
a[2] * b20 + a[6] * b21 + a[10] * b22,
a[3] * b20 + a[7] * b21 + a[11] * b22,
...a.slice(12, 16),
];
}
function translate4(a, x, y, z) {
return [
...a.slice(0, 12),
a[0] * x + a[4] * y + a[8] * z + a[12],
a[1] * x + a[5] * y + a[9] * z + a[13],
a[2] * x + a[6] * y + a[10] * z + a[14],
a[3] * x + a[7] * y + a[11] * z + a[15],
];
}
function createWorker(self) {
// These constants all need to be redefined because of how the worker is created
const PACKED_SPLAT_LENGTH = (
3*4 + // XYZ - Position (Float32)
3*4 + // XYZ - Scale (Float32)
4 + // RGBA - colors (uint8)
4 + // IJKL - quaternion/rot (uint8)
3*4 + // XYZ - Normal (Float32)
3 + // RGB - PBR base colors (uint8)
1 + // ... padding out to 4-byte alignment
2*4 // RM - PBR materials (Float32)
// ... padding
);
const PACKED_RENDERABLE_SPLAT_LENGTH = (
3*4 + // XYZ - Position (Float32)
4 + // ... padding out to BYTES_PER_TEXEL
6*2 + // 6 parameters of covariance matrix (Float16)
4 + // RGBA - colors (uint8)
3*4 + // XYZ - Normal (Float32)
3 + // RGB - PBR base colors (uint8)
1 + // ... padding out to 4-byte alignment
2*4 // RM - PBR materials (Float32)
// ... padding
);
const BYTES_PER_TEXEL = 16; // RGBA32UI = 32 bits per channel * 4 channels = 4*4 bytes
const TEXELS_PER_PACKED_SPLAT = Math.ceil(PACKED_RENDERABLE_SPLAT_LENGTH / BYTES_PER_TEXEL);
const PADDED_RENDERABLE_SPLAT_LENGTH = TEXELS_PER_PACKED_SPLAT * BYTES_PER_TEXEL;
const PADDED_SPLAT_LENGTH = 4 * Math.ceil(PACKED_SPLAT_LENGTH / 4);
const FLOAT32_PER_PADDED_RENDERABLE_SPLAT = PADDED_RENDERABLE_SPLAT_LENGTH / 4;
const UINT32_PER_PADDED_RENDERABLE_SPLAT = FLOAT32_PER_PADDED_RENDERABLE_SPLAT;
const FLOAT32_PER_PADDED_SPLAT = PADDED_SPLAT_LENGTH / 4;
let buffer;
let gaussianCount = 0;
let lastProj = [];
let depthIndex = new Uint32Array();
let lastGaussianCount = 0;
var _floatView = new Float32Array(1);
var _int32View = new Int32Array(_floatView.buffer);
function floatToHalf(float) {
_floatView[0] = float;
var f = _int32View[0];
var sign = (f >> 31) & 0x0001;
var exp = (f >> 23) & 0x00ff;
var frac = f & 0x007fffff;
var newExp;
if (exp == 0) {
newExp = 0;
} else if (exp < 113) {
newExp = 0;
frac |= 0x00800000;
frac = frac >> (113 - exp);
if (frac & 0x01000000) {
newExp = 1;
frac = 0;
}
} else if (exp < 142) {
newExp = exp - 112;
} else {
newExp = 31;
frac = 0;
}
return (sign << 15) | (newExp << 10) | (frac >> 13);
}
function packHalf2x16(x, y) {
return (floatToHalf(x) | (floatToHalf(y) << 16)) >>> 0;
}
function generateTexture() {
if (!buffer) return;
const f_buffer = new Float32Array(buffer);
const u_buffer = new Uint8Array(buffer);
var texwidth = 1024 * TEXELS_PER_PACKED_SPLAT; // Set to your desired width
var texheight = Math.ceil((TEXELS_PER_PACKED_SPLAT * gaussianCount) / texwidth); // Set to your desired height
var texdata = new Uint32Array(texwidth * texheight * 4); // 4 Uint32 components per pixel in RGBAUI
var texdata_c = new Uint8Array(texdata.buffer);
var texdata_f = new Float32Array(texdata.buffer);
var hasNormals = false;
// Here we convert from a .splat file buffer into a texture
// With a little bit more foresight perhaps this texture file
// should have been the native format as it'd be very easy to
// load it into webgl.
for (let i = 0; i < gaussianCount; i++) {
// position x, y, z
texdata_f[FLOAT32_PER_PADDED_RENDERABLE_SPLAT * i + 0] = f_buffer[FLOAT32_PER_PADDED_SPLAT * i + 0];
texdata_f[FLOAT32_PER_PADDED_RENDERABLE_SPLAT * i + 1] = f_buffer[FLOAT32_PER_PADDED_SPLAT * i + 1];
texdata_f[FLOAT32_PER_PADDED_RENDERABLE_SPLAT * i + 2] = f_buffer[FLOAT32_PER_PADDED_SPLAT * i + 2];
// r, g, b, a
texdata_c[4 * (FLOAT32_PER_PADDED_RENDERABLE_SPLAT * i + 7) + 0] = u_buffer[PADDED_SPLAT_LENGTH * i + 24 + 0];
texdata_c[4 * (FLOAT32_PER_PADDED_RENDERABLE_SPLAT * i + 7) + 1] = u_buffer[PADDED_SPLAT_LENGTH * i + 24 + 1];
texdata_c[4 * (FLOAT32_PER_PADDED_RENDERABLE_SPLAT * i + 7) + 2] = u_buffer[PADDED_SPLAT_LENGTH * i + 24 + 2];
texdata_c[4 * (FLOAT32_PER_PADDED_RENDERABLE_SPLAT * i + 7) + 3] = u_buffer[PADDED_SPLAT_LENGTH * i + 24 + 3];
// quaternions
let scale = [
f_buffer[FLOAT32_PER_PADDED_SPLAT * i + 3 + 0],
f_buffer[FLOAT32_PER_PADDED_SPLAT * i + 3 + 1],
f_buffer[FLOAT32_PER_PADDED_SPLAT * i + 3 + 2],
];
let rot = [
(u_buffer[PADDED_SPLAT_LENGTH * i + 28 + 0] - 128) / 128,
(u_buffer[PADDED_SPLAT_LENGTH * i + 28 + 1] - 128) / 128,
(u_buffer[PADDED_SPLAT_LENGTH * i + 28 + 2] - 128) / 128,
(u_buffer[PADDED_SPLAT_LENGTH * i + 28 + 3] - 128) / 128,
];
// Compute the matrix product of S and R (M = S * R)
const M = [
1.0 - 2.0 * (rot[2] * rot[2] + rot[3] * rot[3]),
2.0 * (rot[1] * rot[2] + rot[0] * rot[3]),
2.0 * (rot[1] * rot[3] - rot[0] * rot[2]),
2.0 * (rot[1] * rot[2] - rot[0] * rot[3]),
1.0 - 2.0 * (rot[1] * rot[1] + rot[3] * rot[3]),
2.0 * (rot[2] * rot[3] + rot[0] * rot[1]),
2.0 * (rot[1] * rot[3] + rot[0] * rot[2]),
2.0 * (rot[2] * rot[3] - rot[0] * rot[1]),
1.0 - 2.0 * (rot[1] * rot[1] + rot[2] * rot[2]),
].map((k, i) => k * scale[Math.floor(i / 3)]);
const sigma = [
M[0] * M[0] + M[3] * M[3] + M[6] * M[6],
M[0] * M[1] + M[3] * M[4] + M[6] * M[7],
M[0] * M[2] + M[3] * M[5] + M[6] * M[8],
M[1] * M[1] + M[4] * M[4] + M[7] * M[7],
M[1] * M[2] + M[4] * M[5] + M[7] * M[8],
M[2] * M[2] + M[5] * M[5] + M[8] * M[8],
];
texdata[UINT32_PER_PADDED_RENDERABLE_SPLAT * i + 4] = packHalf2x16(4 * sigma[0], 4 * sigma[1]);
texdata[UINT32_PER_PADDED_RENDERABLE_SPLAT * i + 5] = packHalf2x16(4 * sigma[2], 4 * sigma[3]);
texdata[UINT32_PER_PADDED_RENDERABLE_SPLAT * i + 6] = packHalf2x16(4 * sigma[4], 4 * sigma[5]);
// normal x, y, z
var n_x = f_buffer[FLOAT32_PER_PADDED_SPLAT * i + 8 + 0];
var n_y = f_buffer[FLOAT32_PER_PADDED_SPLAT * i + 8 + 1];
var n_z = f_buffer[FLOAT32_PER_PADDED_SPLAT * i + 8 + 2];
texdata_f[FLOAT32_PER_PADDED_RENDERABLE_SPLAT * i + 8 + 0] = n_x;
texdata_f[FLOAT32_PER_PADDED_RENDERABLE_SPLAT * i + 8 + 1] = n_y;
texdata_f[FLOAT32_PER_PADDED_RENDERABLE_SPLAT * i + 8 + 2] = n_z;
if (n_x != 0 || n_y != 0 || n_z != 0) {
hasNormals = true;
}
// PBR base colors r, g, b
texdata_c[4 * (FLOAT32_PER_PADDED_RENDERABLE_SPLAT * i + 11) + 0] = u_buffer[PADDED_SPLAT_LENGTH * i + 4*11 + 0];
texdata_c[4 * (FLOAT32_PER_PADDED_RENDERABLE_SPLAT * i + 11) + 1] = u_buffer[PADDED_SPLAT_LENGTH * i + 4*11 + 1];
texdata_c[4 * (FLOAT32_PER_PADDED_RENDERABLE_SPLAT * i + 11) + 2] = u_buffer[PADDED_SPLAT_LENGTH * i + 4*11 + 2];
// PBR roughness, metallic
texdata_f[FLOAT32_PER_PADDED_RENDERABLE_SPLAT * i + 12 + 0] = f_buffer[FLOAT32_PER_PADDED_SPLAT * i + 12 + 0];
texdata_f[FLOAT32_PER_PADDED_RENDERABLE_SPLAT * i + 12 + 1] = f_buffer[FLOAT32_PER_PADDED_SPLAT * i + 12 + 1];
}
self.postMessage({ texdata, texwidth, texheight, hasNormals }, [texdata.buffer]);
}
function runSort(viewProj, label) {
if (!buffer) return;
const f_buffer = new Float32Array(buffer);
if (lastGaussianCount == gaussianCount) {
let dot =
lastProj[2] * viewProj[2] +
lastProj[6] * viewProj[6] +
lastProj[10] * viewProj[10];
if (Math.abs(dot - 1) < 0.01) {
return;
}
} else {
generateTexture();
lastGaussianCount = gaussianCount;
}
// console.time("sort");
let maxDepth = -Infinity;
let minDepth = Infinity;
let sizeList = new Int32Array(gaussianCount);
for (let i = 0; i < gaussianCount; i++) {
let depth =
((viewProj[2] * f_buffer[FLOAT32_PER_PADDED_SPLAT * i + 0] +
viewProj[6] * f_buffer[FLOAT32_PER_PADDED_SPLAT * i + 1] +
viewProj[10] * f_buffer[FLOAT32_PER_PADDED_SPLAT * i + 2]) *
4096) |
0;
sizeList[i] = depth;
if (depth > maxDepth) maxDepth = depth;
if (depth < minDepth) minDepth = depth;
}
// This is a 16 bit single-pass counting sort
let depthInv = (256 * 256) / (maxDepth - minDepth);
let counts0 = new Uint32Array(256 * 256);
for (let i = 0; i < gaussianCount; i++) {
sizeList[i] = ((sizeList[i] - minDepth) * depthInv) | 0;
counts0[sizeList[i]]++;
}
let starts0 = new Uint32Array(256 * 256);
for (let i = 1; i < 256 * 256; i++)
starts0[i] = starts0[i - 1] + counts0[i - 1];
depthIndex = new Uint32Array(gaussianCount);
for (let i = 0; i < gaussianCount; i++)
depthIndex[starts0[sizeList[i]]++] = i;
// console.timeEnd("sort");
lastProj = viewProj;
self.postMessage({ depthIndex, viewProj, gaussianCount, label }, [
depthIndex.buffer,
]);
}
function processPlyBuffer(inputBuffer) {
const ubuf = new Uint8Array(inputBuffer);
// 10KB ought to be enough for a header...
const header = new TextDecoder().decode(ubuf.slice(0, 1024 * 10));
const header_end = "end_header\n";
const header_end_index = header.indexOf(header_end);
if (header_end_index < 0)
throw new Error("Unable to read .ply file header");
const gaussianCount = parseInt(/element vertex (\d+)\n/.exec(header)[1]);
console.log("Gaussian Count", gaussianCount);
let row_offset = 0,
offsets = {},
types = {};
const TYPE_MAP = {
double: "getFloat64",
int: "getInt32",
uint: "getUint32",
float: "getFloat32",
short: "getInt16",
ushort: "getUint16",
uchar: "getUint8",
};
for (let prop of header
.slice(0, header_end_index)
.split("\n")
.filter((k) => k.startsWith("property "))) {
const [p, type, name] = prop.split(" ");
const arrayType = TYPE_MAP[type] || "getInt8";
types[name] = arrayType;
offsets[name] = row_offset;
row_offset += parseInt(arrayType.replace(/[^\d]/g, "")) / 8;
}
let dataView = new DataView(
inputBuffer,
header_end_index + header_end.length,
);
let row = 0;
const attrs = new Proxy(
{},
{
get(target, prop) {
if (!types[prop]) throw new Error(prop + " not found");
return dataView[types[prop]](
row * row_offset + offsets[prop],
true,
);
},
},
);
console.time("calculate importance");
let sizeList = new Float32Array(gaussianCount);
let sizeIndex = new Uint32Array(gaussianCount);
for (row = 0; row < gaussianCount; row++) {
sizeIndex[row] = row;
if (!types["scale_0"]) continue;
const size =
Math.exp(attrs.scale_0) *
Math.exp(attrs.scale_1) *
Math.exp(attrs.scale_2);
const opacity = 1 / (1 + Math.exp(-attrs.opacity));
sizeList[row] = size * opacity;
}
console.timeEnd("calculate importance");
console.time("sort");
sizeIndex.sort((b, a) => sizeList[a] - sizeList[b]);
console.timeEnd("sort");
const buffer = new ArrayBuffer(PADDED_SPLAT_LENGTH * gaussianCount);
console.time("build buffer");
for (let j = 0; j < gaussianCount; j++) {
row = sizeIndex[j];
const position = new Float32Array(buffer, j * PADDED_SPLAT_LENGTH, 3);
const scales = new Float32Array(buffer, j * PADDED_SPLAT_LENGTH + 4 * 3, 3);
const rgba = new Uint8ClampedArray(
buffer,
j*PADDED_SPLAT_LENGTH + 3*4 + 3*4,
4,
);
const rot = new Uint8ClampedArray(
buffer,
j*PADDED_SPLAT_LENGTH + 3*4 + 3*4 + 4,
4,
);
const normal = new Float32Array(
buffer,
j*PADDED_SPLAT_LENGTH + 3*4 + 3*4 + 4 + 4,
3,
);
const pbrRGB = new Uint8ClampedArray(
buffer,
j*PADDED_SPLAT_LENGTH + 3*4 + 3*4 + 4 + 4 + 3*4,
3,
);
const pbrRM = new Float32Array(
buffer,
j*PADDED_SPLAT_LENGTH + 3*4 + 3*4 + 4 + 4 + 3*4 + 3 + 1,
2,
);
if (types["scale_0"]) {
const qlen = Math.sqrt(
attrs.rot_0 ** 2 +
attrs.rot_1 ** 2 +
attrs.rot_2 ** 2 +
attrs.rot_3 ** 2,
);
rot[0] = (attrs.rot_0 / qlen) * 128 + 128;
rot[1] = (attrs.rot_1 / qlen) * 128 + 128;
rot[2] = (attrs.rot_2 / qlen) * 128 + 128;
rot[3] = (attrs.rot_3 / qlen) * 128 + 128;
scales[0] = Math.exp(attrs.scale_0);
scales[1] = Math.exp(attrs.scale_1);
scales[2] = Math.exp(attrs.scale_2);
} else {
scales[0] = 0.01;
scales[1] = 0.01;
scales[2] = 0.01;
rot[0] = 255;
rot[1] = 0;
rot[2] = 0;
rot[3] = 0;
}
position[0] = attrs.x;
position[1] = attrs.y;
position[2] = attrs.z;
if (types["f_dc_0"]) {
const SH_C0 = 0.28209479177387814;
rgba[0] = (0.5 + SH_C0 * attrs.f_dc_0) * 255;
rgba[1] = (0.5 + SH_C0 * attrs.f_dc_1) * 255;
rgba[2] = (0.5 + SH_C0 * attrs.f_dc_2) * 255;
} else {
rgba[0] = attrs.red;
rgba[1] = attrs.green;
rgba[2] = attrs.blue;
}
if (types["opacity"]) {
rgba[3] = (1 / (1 + Math.exp(-attrs.opacity))) * 255;
} else {
rgba[3] = 255;
}
if (types["nx"] && types["ny"] && types["nz"]) {
normal[0] = attrs.nx;
normal[1] = attrs.ny;
normal[2] = attrs.nz;
}
if (types["base_color_0"] && types["base_color_1"] && types["base_color_2"]) {
pbrRGB[0] = attrs.base_color_0 * 255;
pbrRGB[1] = attrs.base_color_1 * 255;
pbrRGB[2] = attrs.base_color_2 * 255;
}
if (types["roughness"] && types["metallic"]) {
pbrRM[0] = attrs.roughness;
pbrRM[1] = attrs.metallic;
}
}
console.timeEnd("build buffer");
return buffer;
}
const labelsToSorters = {};
const getOrCreateThrottledSorter = (label) => {
if (!labelsToSorters[label]) {
var currViewProj = null;
var sortRunning = false;
const self = {
resortCurrent: () => {
// Call this when something invalidates the current positions or gaussian count,
// e.g. progressively loading another chunk of gaussians
if (currViewProj) {
self.throttledSort(currViewProj);
}
},
throttledSort: (viewProj) => {
currViewProj = viewProj;
if (!sortRunning) {
sortRunning = true;
let lastView = viewProj;
runSort(lastView, label);
setTimeout(() => {
sortRunning = false;
if (lastView !== currViewProj) {
self.throttledSort(currViewProj);
}
}, 0);
}
},
};
labelsToSorters[label] = self;
}
return labelsToSorters[label];
};
self.onmessage = (e) => {
if (e.data.ply) {
gaussianCount = 0;
buffer = processPlyBuffer(e.data.ply);
gaussianCount = Math.floor(buffer.byteLength / PADDED_SPLAT_LENGTH);
postMessage({ buffer: buffer });
} else if (e.data.buffer) {
buffer = e.data.buffer;
gaussianCount = e.data.gaussianCount;
Object.keys(labelsToSorters).forEach((k) => {
labelsToSorters[k].resortCurrent();
});
} else if (e.data.gaussianCount) {
gaussianCount = e.data.gaussianCount;
} else if (e.data.view) {
if (!e.data.label) {
console.error("Expected label for sort");
} else {
getOrCreateThrottledSorter(e.data.label).throttledSort(e.data.view);
}
}
};
}
const gaussianVertexSource = `
#version 300 es
precision highp float;
precision highp int;
uniform highp usampler2D u_texture;
uniform mat4 projection, view;
uniform vec2 focal;
uniform vec2 viewport;
uniform int mode;
in vec2 position;
in int index;
out vec4 vColor;
out vec3 vPBRColor;
out vec2 vPosition;
out vec3 vNormal;
out float vRoughness;
out float vMetallic;
void main () {
uvec4 bytes_00_15 = texelFetch(u_texture, ivec2((uint(index) & 0x3ffu) * uint(${TEXELS_PER_PACKED_SPLAT}), uint(index) >> 10), 0);
vec4 cam = view * vec4(uintBitsToFloat(bytes_00_15.xyz), 1);
vec4 pos2d = projection * cam;
float clip = 1.2 * pos2d.w;
if (pos2d.z < -clip || pos2d.x < -clip || pos2d.x > clip || pos2d.y < -clip || pos2d.y > clip) {
gl_Position = vec4(0.0, 0.0, 2.0, 1.0);
return;
}
uvec4 bytes_16_31 = texelFetch(u_texture, ivec2(((uint(index) & 0x3ffu) * uint(${TEXELS_PER_PACKED_SPLAT})) | 1u, uint(index) >> 10), 0);
vec2 u1 = unpackHalf2x16(bytes_16_31.x),
u2 = unpackHalf2x16(bytes_16_31.y),
u3 = unpackHalf2x16(bytes_16_31.z);
mat3 Vrk = mat3(u1.x, u1.y, u2.x,
u1.y, u2.y, u3.x,
u2.x, u3.x, u3.y);
mat3 J = mat3(
focal.x / cam.z, 0., -(focal.x * cam.x) / (cam.z * cam.z),
0., -focal.y / cam.z, (focal.y * cam.y) / (cam.z * cam.z),
0., 0., 0.
);
mat3 T = transpose(mat3(view)) * J;
mat3 cov2d = transpose(T) * Vrk * T;
float mid = (cov2d[0][0] + cov2d[1][1]) / 2.0;
float radius = length(
vec2(
(cov2d[0][0] - cov2d[1][1]) / 2.0,
cov2d[0][1]
)
);
float lambda1 = mid + radius, lambda2 = mid - radius;
if(lambda2 < 0.0) return;
vec2 diagonalVector = normalize(vec2(cov2d[0][1], lambda1 - cov2d[0][0]));
vec2 majorAxis = min(sqrt(2.0 * lambda1), 1024.0) * diagonalVector;
vec2 minorAxis = min(sqrt(2.0 * lambda2), 1024.0) * vec2(diagonalVector.y, -diagonalVector.x);
uvec4 bytes_32_47 = texelFetch(u_texture, ivec2(((uint(index) & 0x3ffu) * uint(${TEXELS_PER_PACKED_SPLAT})) | 2u, uint(index) >> 10), 0);
uvec4 bytes_48_63 = texelFetch(u_texture, ivec2(((uint(index) & 0x3ffu) * uint(${TEXELS_PER_PACKED_SPLAT})) | 3u, uint(index) >> 10), 0);
// TODO handle splat data without normals
vNormal = normalize(vec3(uintBitsToFloat(bytes_32_47.xyz)));
uint opacity255 = (bytes_16_31.w >> 24) & 0xffu;
if (mode == 0) {
// Color mode
vColor =
clamp(pos2d.z/pos2d.w+1.0, 0.0, 1.0) *
vec4(
(bytes_16_31.w) & 0xffu,
(bytes_16_31.w >> 8) & 0xffu,
(bytes_16_31.w >> 16) & 0xffu,
opacity255
) / 255.0;
vPBRColor =
clamp(pos2d.z/pos2d.w+1.0, 0.0, 1.0) *
vec3(
(bytes_32_47.w) & 0xffu,
(bytes_32_47.w >> 8) & 0xffu,
(bytes_32_47.w >> 16) & 0xffu
) / 255.0;
vRoughness = uintBitsToFloat(bytes_48_63.x);
vMetallic = uintBitsToFloat(bytes_48_63.y);
} else {
// Depth mode
// TODO(achan): We should compute the depth for each individual fragment based
// on its position within the rasterized Gaussian quad, rather than pretend all
// fragments of the quad have the depth of the center.
//
// This seems important for getting the correct world-space point of a fragment
// for accurate lighting.
float depth = pos2d.w;
vColor = vec4(
depth,
0.,
length(cam.xyz),
float(opacity255) / 255.0
);
}
vPosition = position;
vec2 vCenter = vec2(pos2d) / pos2d.w;
gl_Position = vec4(
vCenter
+ position.x * majorAxis / viewport
+ position.y * minorAxis / viewport, 0.0, 1.0);
}
`.trim();
const overlayVertexSource = `
#version 300 es
precision highp float;
uniform mat4 projection, view;
uniform vec3 worldCameraPosition;
uniform vec3 worldCameraUp;
uniform vec2 size;
in vec2 uv;
in vec3 worldCenter;
out vec2 vUv;
void main () {
vec3 worldP = worldCenter;
// Overlay quad should always face the camera
vec3 dirToCamera = normalize(worldCameraPosition - worldP);
vec3 up = worldCameraUp;
vec3 right = normalize(cross(up, dirToCamera));
vec4 world_p = vec4(worldP, 1.) + vec4(size.x * right * (uv.x-0.5) + size.y * up * (uv.y-0.5), 0);
vec4 eye_p = view * world_p;
vec4 clip_p = projection * eye_p;
vUv = uv;
gl_Position = clip_p;
}
`.trim();
const cubeMapDebugFragmentSource = `
#version 300 es
precision highp float;
uniform samplerCube overlayTexture;
in vec2 vUv;
out vec4 fragColor;
void main () {
fragColor.rgb = vec3(0.0, 0.0, 0.2);
vec3 samplePos = vec3(0.0f);
// Crude statement to visualize different cube map faces based on UV coordinates
int x = int(floor(vUv.x / 0.25f));
int y = int(floor(vUv.y / (1.0 / 3.0)));
if (y == 1) {
vec2 uv = vec2(vUv.x * 4.0f, (vUv.y - 1.0/3.0) * 3.0);
uv = 2.0 * vec2(uv.x - float(x) * 1.0, uv.y) - 1.0;
switch (x) {
case 0: // NEGATIVE_X
samplePos = vec3(-1.0f, uv.y, uv.x);
break;
case 1: // POSITIVE_Z
samplePos = vec3(uv.x, uv.y, 1.0f);
break;
case 2: // POSITIVE_X