-
Notifications
You must be signed in to change notification settings - Fork 26
/
processed_landscape.yml
13584 lines (13584 loc) · 564 KB
/
processed_landscape.yml
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
# THIS FILE IS GENERATED AUTOMATICALLY!
landscape:
- category:
name: Imaging and Color
subcategories:
- subcategory:
name: Color Science
items:
- item:
name: 'ACES: Academy Color Encoding System'
homepage_url: https://www.oscars.org/science-technology/sci-tech-projects/aces
repo_url: https://github.com/ampas/aces-dev
logo: aces.svg
crunchbase: https://www.crunchbase.com/organization/the-academy-of-motion-picture-arts-and-sciences
crunchbase_data:
name: Academy of Motion Picture Arts and Sciences
description: Academy of Motion Picture Arts and Sciences is a movie-related organization with a goal of advancing arts and sciences of motion pictures.
num_employees_min: 501
num_employees_max: 1000
homepage: https://www.oscars.org/
city: Beverly Hills
region: California
country: United States
twitter: https://twitter.com/theacademy
linkedin: https://www.linkedin.com/company/academy-of-motion-picture-arts-and-sciences/
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries:
- Association
github_data:
languages:
- name: Visual Basic 6.0
value: 79024
contributions: 0;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;14;6;11;14;0;1;0;0;0;0;0;0;0;0;0;0;1;12;0;0;10;0;8;3;0;0;0;0;0
firstWeek: 2023-10-22Z
stars: 765
license: Other
description: ACES Core Transforms
latest_commit_date: '2024-09-04T23:18:21Z'
latest_commit_link: /ampas/aces-core/commit/89a10fdcad5894553ec1c4cebd5b6cbca8c0b593
contributors_count: 10
contributors_link: https://github.com/ampas/aces-dev/graphs/contributors
repos:
- url: https://github.com/ampas/aces-dev
stars: 765
github_start_commit_data:
start_commit_link: /ampas/aces-dev/commit/1403f9cab19dbb65e6dbdb7e2c186303ec05a272
start_date: '2011-08-04T21:17:13Z'
image_data:
fileName: aces-academy-color-encoding-system.svg
hash: 33IqzuJgxtRZxYlA8dgf20kRIEj+48AFf7VWmXmD+Kw=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-20T20:30:08.000Z
- item:
name: Color Transformation Language (CTL)
homepage_url: https://www.oscars.org/science-technology/sci-tech-projects/color-transformation-language
repo_url: https://github.com/ampas/CTL
logo: ctl.svg
crunchbase: https://www.crunchbase.com/organization/the-academy-of-motion-picture-arts-and-sciences
crunchbase_data:
name: Academy of Motion Picture Arts and Sciences
description: Academy of Motion Picture Arts and Sciences is a movie-related organization with a goal of advancing arts and sciences of motion pictures.
num_employees_min: 501
num_employees_max: 1000
homepage: https://www.oscars.org/
city: Beverly Hills
region: California
country: United States
twitter: https://twitter.com/theacademy
linkedin: https://www.linkedin.com/company/academy-of-motion-picture-arts-and-sciences/
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries:
- Association
github_data:
languages:
- name: C
value: 2830840
color: '#555555'
- name: C++
value: 1415964
color: '#f34b7d'
- name: Visual Basic 6.0
value: 159937
- name: CMake
value: 84384
- name: Shell
value: 10867
color: '#89e051'
- name: Dockerfile
value: 857
color: '#384d54'
contributions: 0;0;0;0;0;1;0;0;1;0;0;2;0;0;0;0;0;0;0;0;0;0;0;0;2;1;2;0;0;0;0;0;1;4;0;0;4;0;1;0;0;0;0;0;0;0;0;0;0;0;4;0
firstWeek: 2023-10-22Z
stars: 220
license: Other
description: The Color Transformation Language (CTL)
latest_commit_date: '2024-10-03T16:00:54Z'
latest_commit_link: /ampas/CTL/commit/0af8d00c751621f71e0db6e9cb53d1d2a9020945
release_date: '2024-01-04T19:43:54Z'
release_link: https://github.com/ampas/CTL/releases
contributors_count: 22
contributors_link: https://github.com/ampas/CTL/graphs/contributors
repos:
- url: https://github.com/ampas/CTL
stars: 220
github_start_commit_data:
start_commit_link: /ampas/CTL/commit/2a82421fa9d9e0bb3f0c8ca8a7575aec6617f8d0
start_date: '2006-12-14T16:30:50Z'
image_data:
fileName: color-transformation-language-ctl.svg
hash: V5AnJ1Ym82QcLNvphl8obdm9Hxch640fmQXkW/KAmgc=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-20T20:30:08.000Z
- item:
name: Colour
homepage_url: https://www.colour-science.org/
repo_url: https://github.com/colour-science/colour
logo: colour.svg
crunchbase: https://www.crunchbase.com/organization/colour-science
crunchbase_data:
name: Colour Science
description: Colour Science for Python
num_employees_min: 1
num_employees_max: 10
homepage: https://www.colour-science.org/
city: Wellington
region: Wellington
country: New Zealand
twitter: https://twitter.com/colour_science
linkedin: https://www.linkedin.com/in/thomasmansencal/
acquisitions: []
parents: []
stockExchange: null
company_type: Non Profit
industries:
- Software
github_data:
languages:
- name: Python
value: 8308486
color: '#3572A5'
- name: TeX
value: 173464
color: '#3D6117'
- name: Visual Basic 6.0
value: 1176
contributions: 26;16;13;2;10;5;4;1;23;2;0;11;1;7;17;1;2;5;0;0;1;1;0;2;2;0;6;6;6;11;8;1;5;4;8;1;3;7;4;3;1;2;0;0;2;0;0;0;5;5;2;38
firstWeek: 2023-10-22Z
stars: 2104
license: BSD 3-Clause "New" or "Revised" License
description: Colour Science for Python
latest_commit_date: '2024-10-11T05:37:30Z'
latest_commit_link: /colour-science/colour/commit/9d743142ed97a5cfae347b559aca14c43464eb70
release_date: '2024-10-11T05:41:35Z'
release_link: https://github.com/colour-science/colour/releases
contributors_count: 51
contributors_link: https://github.com/colour-science/colour/graphs/contributors
repos:
- url: https://github.com/colour-science/colour
stars: 2104
github_start_commit_data:
start_commit_link: /colour-science/colour/commit/90bc42b9fedfc7291c7023247eab14b41d5c29af
start_date: '2014-04-05T12:07:48Z'
image_data:
fileName: colour.svg
hash: x0zIKkTfXMwB9KmztQtZ7BgMbPglA0rKIKOzEuWDw4A=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-20T08:05:16.000Z
- item:
name: PhysLight
homepage_url: https://github.com/wetadigital/physlight
repo_url: https://github.com/wetadigital/physlight
logo: PhysLight.svg
crunchbase: https://www.crunchbase.com/organization/weta-digital
crunchbase_data:
name: Weta Digital
description: Weta Digital is a film production company that offers visual effects and 3D animations.
num_employees_min: 501
num_employees_max: 1000
homepage: https://www.wetafx.co.nz/
city: Wellington
region: Wellington
country: New Zealand
twitter: https://twitter.com/wetafx
linkedin: https://in.linkedin.com/company/weta-digital
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries:
- Film
- Film Production
- TV
github_data:
languages:
- name: Jupyter Notebook
value: 1185383
color: '#DA5B0B'
- name: CMake
value: 44696
- name: Python
value: 93
color: '#3572A5'
contributions: 0;0;0;0;0;0;0;0;1;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;2;0
firstWeek: 2023-10-22Z
stars: 183
license: Apache License 2.0
description: null
latest_commit_date: '2024-10-14T05:19:44Z'
latest_commit_link: /wetadigital/physlight/commit/d9d975cbf5c6da5b0a4ee9a48a48413fb3819d63
contributors_count: 5
contributors_link: https://github.com/wetadigital/physlight/graphs/contributors
repos:
- url: https://github.com/wetadigital/physlight
stars: 183
github_start_commit_data:
start_commit_link: /wetadigital/physlight/commit/c74c372d41e6a5c8ef785f0da93895ad9ce7db28
start_date: '2020-07-09T04:44:28Z'
image_data:
fileName: phys-light.svg
hash: fQvwkyBuzU4ryCKvi6vYum655auUSgjFYAuqh34YyLc=
best_practice_data:
badge: false
percentage: null
- subcategory:
name: Image Formats, I/O, and Processing Libraries
items:
- item:
name: depix
homepage_url: https://github.com/guerilla-di/depix
repo_url: https://github.com/guerilla-di/depix
logo: depix.svg
crunchbase: https://www.crunchbase.com/organization/guerilla-di
crunchbase_data:
name: Guerilla-DI
description: A set of Ruby libraries and scripts which help in optimizing post-production workflow
num_employees_min: null
num_employees_max: null
homepage: http://guerilla-di.org/
city: Amsterdam
region: Noord-Holland
country: The Netherlands
twitter: https://twitter.com/guerilladi
linkedin: null
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries: []
github_data:
languages:
- name: Ruby
value: 74471
color: '#701516'
contributions: 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
firstWeek: 2023-10-22Z
stars: 10
license: Unknown License
description: Read and write DPX file headers
latest_commit_date: '2015-07-26T14:48:31Z'
latest_commit_link: /guerilla-di/depix/commit/39e6dd364ff19e76a8588187d178c336612f4df8
contributors_count: 3
contributors_link: https://github.com/guerilla-di/depix/graphs/contributors
repos:
- url: https://github.com/guerilla-di/depix
stars: 10
github_start_commit_data:
start_commit_link: /guerilla-di/depix/commit/b2431099b71d3d23d04e5b5cf66c18e2c118a0c3
start_date: '2008-12-18T06:08:51Z'
image_data:
fileName: depix.svg
hash: 4tPVmnnziK+Qf5BAVfE1g1+LL/Ch+9gI/8PXMfbS+QA=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2015-02-11T17:30:21.000Z
- item:
name: FFmpeg
homepage_url: https://ffmpeg.org/
repo_url: https://github.com/FFmpeg/FFmpeg
project_org: https://github.com/FFmpeg
url_for_bestpractices: https://git.ffmpeg.org/ffmpeg.git
logo: ffmpeg.svg
crunchbase: https://www.crunchbase.com/organization/ffmpeg
crunchbase_data:
name: FFmpeg
description: A complete, cross-platform solution to record, convert and stream audio and video.
num_employees_min: 11
num_employees_max: 50
homepage: http://ffmpeg.org
city: ' N/A'
region: ' N/A'
country: ' N/A'
twitter: http://twitter.com/ffmpeg
linkedin: https://www.linkedin.com/company/ffmpeg
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries:
- Communities
- Non Profit
- Video
github_data:
description: null
contributors_count: 338
contributions: >-
47;85;53;57;42;72;58;73;95;54;62;68;51;103;76;95;126;124;107;124;92;173;165;173;146;46;88;91;133;137;119;121;155;197;125;68;66;105;106;72;69;66;52;65;40;94;104;56;75;109;139;57
stars: 46319
languages:
- name: C
value: 65492553
color: '#555555'
- name: Assembly
value: 5658494
color: '#6E4C13'
- name: Makefile
value: 941678
color: '#427819'
- name: C++
value: 141194
color: '#f34b7d'
- name: Objective-C
value: 108023
color: '#438eff'
- name: Perl
value: 107227
color: '#0298c3'
- name: Cuda
value: 84917
color: '#3A4E3A'
- name: Shell
value: 68761
color: '#89e051'
- name: Less
value: 10925
- name: Metal
value: 7961
color: '#8f14e9'
- name: CSS
value: 6721
color: '#563d7c'
- name: Python
value: 5992
color: '#3572A5'
- name: Dockerfile
value: 5387
color: '#384d54'
- name: Awk
value: 1912
- name: HTML
value: 1631
color: '#e34c26'
- name: Ruby
value: 1462
color: '#701516'
- name: Verilog
value: 729
color: '#b2b7f8'
- name: JavaScript
value: 462
color: '#f1e05a'
- name: Roff
value: 132
color: '#ecdebe'
latest_commit_link: /FFmpeg/FFmpeg/commit/98f6d43146a0a7c7c42d33ed9deb54987508025c
latest_commit_date: '2024-10-15T15:45:20Z'
firstWeek: 2023-10-22Z
license: Other
contributors_link: https://github.com/FFmpeg/FFmpeg/graphs/contributors
repos:
- url: https://github.com/FFmpeg/FFmpeg
stars: 45433
- url: https://github.com/FFmpeg/nv-codec-headers
stars: 294
- url: https://github.com/FFmpeg/web
stars: 259
- url: https://github.com/FFmpeg/FFV1
stars: 155
- url: https://github.com/FFmpeg/fateserver
stars: 97
- url: https://github.com/FFmpeg/gas-preprocessor
stars: 71
- url: https://github.com/FFmpeg/FFmpeg-Coverity
stars: 10
github_start_commit_data:
start_commit_link: /FFmpeg/FFmpeg/commit/77bb6835ba752bb9335d208963a53227bbb1bc63
start_date: '2000-12-20T00:02:47Z'
image_data:
fileName: f-fmpeg.svg
hash: pjUF8Gm5fXgBOKkf5FwZzipKuxlxZMgl0Tzyh3BEijc=
best_practice_data:
badge: 235
percentage: 99
- item:
name: gatling
homepage_url: https://github.com/pablode/gatling
repo_url: https://github.com/pablode/gatling
logo: gatling.svg
organization:
name: Pablo Delgado Krämer
crunchbase_data:
name: Pablo Delgado Krämer
parents: []
github_data:
languages:
- name: C++
value: 617849
color: '#f34b7d'
- name: GLSL
value: 40694
- name: CMake
value: 12400
- name: C
value: 7587
color: '#555555'
contributions: 15;20;9;0;1;0;5;0;0;0;0;0;0;9;7;9;25;24;3;0;0;0;0;0;0;0;0;0;18;1;3;21;4;0;0;0;0;3;0;0;29;12;0;2;1;0;0;2;2;0;0;0
firstWeek: 2023-10-22Z
stars: 293
license: GNU General Public License v3.0
description: Hydra-enabled GPU path tracer that supports MaterialX and MDL
latest_commit_date: '2024-09-21T20:14:43Z'
latest_commit_link: /pablode/gatling/commit/221e8768990eac986af72df511b5c70d40b6c3a7
release_date: '2023-11-18T10:01:13Z'
release_link: https://github.com/pablode/gatling/releases
contributors_count: 2
contributors_link: https://github.com/pablode/gatling/graphs/contributors
repos:
- url: https://github.com/pablode/gatling
stars: 293
github_start_commit_data:
start_commit_link: /pablode/gatling/commit/7727e9acc9eaae228d35a88a3563bea5b1a19781
start_date: '2019-10-29T09:29:42Z'
image_data:
fileName: gatling.svg
hash: 1tMv3VlmFvryWfp6TgUrq4uosfQ+07kE/PR70wGZRfQ=
best_practice_data:
badge: false
percentage: null
- item:
name: Imagemagick
homepage_url: https://imagemagick.org/script/index.php
repo_url: https://github.com/ImageMagick/ImageMagick
logo: ImageMagick_logo.svg
crunchbase: https://www.crunchbase.com/organization/imagemagick-studio-llc
crunchbase_data:
name: ImageMagick Studio
description: Use ImageMagick® to create, edit, compose, or convert bitmap images.
num_employees_min: null
num_employees_max: null
homepage: https://imagemagick.org/
city: Mountain View
region: California
country: United States
twitter: https://twitter.com/imagemagick
linkedin: https://www.linkedin.com/company/imagemagick
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries: []
github_data:
languages:
- name: C
value: 18615970
color: '#555555'
- name: HTML
value: 13036745
color: '#e34c26'
- name: C++
value: 5026781
color: '#f34b7d'
- name: Makefile
value: 1385410
color: '#427819'
- name: XS
value: 502076
- name: Shell
value: 463952
color: '#89e051'
- name: Roff
value: 256259
color: '#ecdebe'
- name: M4
value: 255971
- name: Perl
value: 215385
color: '#0298c3'
- name: Tcl
value: 20737
color: '#e4cc98'
- name: DIGITAL Command Language
value: 13201
- name: CSS
value: 11396
color: '#563d7c'
- name: JavaScript
value: 2580
color: '#f1e05a'
- name: Dockerfile
value: 2434
color: '#384d54'
contributions: 27;23;6;8;16;37;21;23;15;39;33;19;3;14;10;10;14;14;11;7;8;2;8;38;36;18;46;27;27;15;16;34;4;8;3;12;6;9;13;17;11;9;3;7;7;15;4;10;5;6;7;8
firstWeek: 2023-10-22Z
stars: 12112
license: Other
description: 🧙♂️ ImageMagick 7
latest_commit_date: '2024-10-15T20:56:12Z'
latest_commit_link: /ImageMagick/ImageMagick/commit/8608c8bf0d03d78b9aa1decdb5bb63b2e30b9ac9
release_date: '2024-10-06T19:50:21Z'
release_link: https://github.com/ImageMagick/ImageMagick/releases
contributors_count: 186
contributors_link: https://github.com/ImageMagick/ImageMagick/graphs/contributors
repos:
- url: https://github.com/ImageMagick/ImageMagick
stars: 12112
github_start_commit_data:
start_commit_link: /ImageMagick/ImageMagick/commit/3ed852eea50f9d4cd633efb8c2b054b8e33c2530
start_date: '2009-09-05T21:47:34Z'
image_data:
fileName: imagemagick.svg
hash: GD2YSyezbvAeo6Wr6aywcGFAYxZs3oKELP3Z8GfBU4w=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-02-03T19:55:21.000Z
- item:
name: LGL - Large Graph Layout
homepage_url: https://www.opte.org/
repo_url: https://github.com/TheOpteProject/LGL
logo: lgl.svg
crunchbase: https://www.crunchbase.com/organization/netography-com
crunchbase_data:
name: Netography
description: Cloud-Native Network Defense Platform for All Your Cloud and On-Prem Traffic
num_employees_min: 11
num_employees_max: 50
homepage: https://netography.com
city: Annapolis
region: Maryland
country: United States
twitter: https://twitter.com/netography
linkedin: https://www.linkedin.com/company/netography
acquisitions: []
parents: []
funding: 47600000
stockExchange: null
company_type: For Profit
industries:
- Cloud Security
- Cyber Security
- Information Technology
- Network Security
- SaaS
- Security
kind: funding
github_data:
languages:
- name: Java
value: 556564
color: '#b07219'
- name: HTML
value: 229626
color: '#e34c26'
- name: C++
value: 163856
color: '#f34b7d'
- name: Shell
value: 75502
color: '#89e051'
- name: C
value: 59044
color: '#555555'
- name: Perl
value: 43399
color: '#0298c3'
- name: Makefile
value: 31582
color: '#427819'
- name: CSS
value: 1391
color: '#563d7c'
- name: M4
value: 960
- name: Python
value: 877
color: '#3572A5'
- name: PHP
value: 431
color: '#4F5D95'
contributions: 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
firstWeek: 2023-10-22Z
stars: 167
license: GNU General Public License v2.0
description: Large Graph Layout
latest_commit_date: '2023-10-08T20:42:30Z'
latest_commit_link: /TheOpteProject/LGL/commit/22625e9f1535d25d0ffc85e832adaa5fcdd62d15
contributors_count: 7
contributors_link: https://github.com/TheOpteProject/LGL/graphs/contributors
repos:
- url: https://github.com/TheOpteProject/LGL
stars: 167
github_start_commit_data:
start_commit_link: /TheOpteProject/LGL/commit/b0c9071eb1a7072ae82e312ffd7d4013e87e6181
start_date: '2014-05-18T13:45:39Z'
image_data:
fileName: lgl-large-graph-layout.svg
hash: nQK2NBr6dwno66RPMTkqqSEWzQhS4nVF5MZeoLuUWF0=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-20T17:15:06.000Z
- item:
name: libitmf
homepage_url: https://www.immersivealliance.org/download/download-itmf/
repo_url: https://github.com/ImmersiveAlliance/libitmf
logo: libitmf.svg
organization:
name: Immersive Digital Experiences Alliance
crunchbase_data:
name: Immersive Digital Experiences Alliance
parents: []
github_data:
languages:
- name: C++
value: 153870
color: '#f34b7d'
- name: CMake
value: 4820
- name: C
value: 233
color: '#555555'
contributions: 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
firstWeek: 2023-10-22Z
stars: 10
license: Apache License 2.0
description: A library for using the Immersive Technologies Media Format (ITMF) per the ITMF Container Specification
latest_commit_date: '2022-01-05T21:58:45Z'
latest_commit_link: /ImmersiveAlliance/libitmf/commit/cc69c953d0728edc4934bd49eec6284df71c850f
contributors_count: 2
contributors_link: https://github.com/ImmersiveAlliance/libitmf/graphs/contributors
repos:
- url: https://github.com/ImmersiveAlliance/libitmf
stars: 10
github_start_commit_data:
start_commit_link: /ImmersiveAlliance/libitmf/commit/7469ec33ed431fa87f7ba4b46f463cf46fc5cd0d
start_date: '2020-12-23T18:31:53Z'
image_data:
fileName: libitmf.svg
hash: lfVB8QiUEuQfzvRnJTsA4fMiCgRndwf5lL/20M+epvk=
best_practice_data:
badge: false
percentage: null
- item:
name: OpenCV
homepage_url: https://opencv.org
repo_url: https://github.com/opencv/opencv
logo: opencv.svg
twitter: https://twitter.com/opencvlibrary
crunchbase: https://www.crunchbase.com/organization/open-source-vision-foundation
crunchbase_data:
name: Open Source Vision Foundation
description: The Open Source Vision Foundation is a non-profit organization dedicated to advancing the beneficial uses of computer vision in society.
num_employees_min: null
num_employees_max: null
homepage: http://osvf.org/
city: Palo Alto
region: California
country: United States
twitter: null
linkedin: null
acquisitions: []
parents: []
stockExchange: null
company_type: Non Profit
industries: []
github_data:
languages:
- name: C++
value: 39829922
color: '#f34b7d'
- name: C
value: 1558380
color: '#555555'
- name: Python
value: 1309806
color: '#3572A5'
- name: CMake
value: 982431
- name: Java
value: 752292
color: '#b07219'
- name: Objective-C++
value: 394490
color: '#6866fb'
- name: Cuda
value: 343525
color: '#3A4E3A'
- name: Swift
value: 301765
color: '#ffac45'
- name: JavaScript
value: 238354
color: '#f1e05a'
- name: Objective-C
value: 99998
color: '#438eff'
- name: HTML
value: 40097
color: '#e34c26'
- name: Shell
value: 26085
color: '#89e051'
- name: Perl
value: 15865
color: '#0298c3'
- name: PowerShell
value: 14591
color: '#012456'
- name: Kotlin
value: 5815
color: '#F18E33'
- name: TeX
value: 5144
color: '#3D6117'
- name: Batchfile
value: 1498
color: '#C1F12E'
- name: Prolog
value: 843
color: '#74283c'
- name: Dockerfile
value: 309
color: '#384d54'
contributions: >-
24;10;19;27;17;20;32;35;34;63;22;31;31;21;18;16;17;23;32;24;13;6;20;31;34;32;27;19;32;15;31;33;26;19;12;16;29;27;24;22;13;22;8;17;20;16;17;14;5;8;13;9
firstWeek: 2023-10-22Z
stars: 78541
license: Apache License 2.0
description: Open Source Computer Vision Library
latest_commit_date: '2024-10-14T08:23:02Z'
latest_commit_link: /opencv/opencv/commit/8e5dbc03fe0c8264e667de5bbae4d0ab04dcab6b
release_date: '2024-06-03T08:08:09Z'
release_link: https://github.com/opencv/opencv/releases
contributors_count: 2203
contributors_link: https://github.com/opencv/opencv/graphs/contributors
repos:
- url: https://github.com/opencv/opencv
stars: 78541
github_start_commit_data:
start_commit_link: /opencv/opencv/commit/127d6649a1c83397bf42799ac807af41aa507b30
start_date: '2010-05-11T17:44:00Z'
image_data:
fileName: open-cv.svg
hash: FV3CybRSnSnyW7ApDhPGu5mwuUDLWS3XnUrDfAtjPZ8=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2022-12-29T21:30:12.000Z
- item:
name: OpenMVG
homepage_url: https://opensource.mikrosimage.eu/
repo_url: https://github.com/openMVG/openMVG
logo: open-mvg.svg
twitter: https://twitter.com/mikrosanimation
crunchbase: https://www.crunchbase.com/organization/mikros-image
crunchbase_data:
name: Mikros Image
description: Mikros Image operates as a production and postproduction company.
num_employees_min: 251
num_employees_max: 500
homepage: http://www.mikrosimage.com/
city: Levallois-perret
region: Ile-de-France
country: France
twitter: https://twitter.com/Mikrosimage
linkedin: https://www.linkedin.com/company-beta/14263/
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries:
- Media and Entertainment
github_data:
languages:
- name: C++
value: 3074503
color: '#f34b7d'
- name: C
value: 320779
color: '#555555'
- name: CMake
value: 159800
- name: JavaScript
value: 76469
color: '#f1e05a'
- name: Python
value: 28049
color: '#3572A5'
- name: HTML
value: 6844
color: '#e34c26'
- name: CSS
value: 5089
color: '#563d7c'
- name: Dockerfile
value: 1116
color: '#384d54'
contributions: 1;1;3;0;0;0;0;0;0;0;7;0;0;0;1;0;0;0;0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;0;0;0;0;0;0;1;0;0;6;0;0;0;0
firstWeek: 2023-10-22Z
stars: 5701
license: Mozilla Public License 2.0
description: open Multiple View Geometry library. Basis for 3D computer vision and Structure from Motion.
latest_commit_date: '2024-09-16T15:23:56Z'
latest_commit_link: /openMVG/openMVG/commit/e598c1a1e3fa2d2110587a41d64b72d9049ec4fb
release_date: '2023-12-28T22:57:28Z'
release_link: https://github.com/openMVG/openMVG/releases
contributors_count: 121
contributors_link: https://github.com/openMVG/openMVG/graphs/contributors
repos:
- url: https://github.com/openMVG/openMVG
stars: 5701
github_start_commit_data:
start_commit_link: /openMVG/openMVG/commit/5c5c221ca8e93a58eb1d1dd83394f75b5f43f48b
start_date: '2013-02-08T16:21:30Z'
image_data:
fileName: open-mvg.svg
hash: KNXhTpc6eJK4jT1bJ/vdKVTPIKiEc2NPkgWVUG+LGgk=
best_practice_data:
badge: 1744
percentage: 73
twitter_data:
latest_tweet_date: 2023-04-20T12:36:34.000Z
- item:
name: pfstools
homepage_url: https://sourceforge.net/projects/pfstools
repo_url: https://github.com/Steve132/pfstools
logo: pfstools.svg
crunchbase: https://www.crunchbase.com/organization/max-planck-institute-for-informatics
crunchbase_data:
name: Max Planck Institute for Informatics
description: The Max Planck Institute for Informatics is a research institute in computer science.
num_employees_min: 251
num_employees_max: 500
homepage: https://www.mpi-inf.mpg.de/home/
city: Saarbrücken
region: Saarland
country: Germany
twitter: null
linkedin: https://www.linkedin.com/company/max-planck-institute-for-informatics_2/
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries:
- Education
github_data:
languages:
- name: C++
value: 1123526
color: '#f34b7d'
- name: Roff
value: 134704
color: '#ecdebe'
- name: C
value: 68123
color: '#555555'
- name: CMake
value: 49098
- name: MATLAB
value: 32994
color: '#e16737'
- name: HTML
value: 25241
color: '#e34c26'
- name: JavaScript
value: 10852
color: '#f1e05a'
- name: Shell
value: 3621
color: '#89e051'
- name: M
value: 3212
- name: CSS
value: 1945
color: '#563d7c'
- name: Batchfile
value: 31
color: '#C1F12E'
contributions: 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
firstWeek: 2023-10-22Z
stars: 12
license: GNU Lesser General Public License v2.1
description: pfstools for HDR images
latest_commit_date: '2017-06-06T20:06:03Z'
latest_commit_link: /Steve132/pfstools/commit/4918330cc9f552acad8ab715b84af50fd9cbac04
contributors_count: 6
contributors_link: https://github.com/Steve132/pfstools/graphs/contributors
repos:
- url: https://github.com/Steve132/pfstools
stars: 12
github_start_commit_data:
start_commit_link: /Steve132/pfstools/commit/fec04caf39286e638962e800446153b48e3fbc2a
start_date: '2014-10-13T10:07:24Z'
image_data:
fileName: pfstools.svg
hash: eVNUXZP/f0cAOxnKxgtSktXOcgrVYX4Zwn1ElY3jHAc=
best_practice_data:
badge: false
percentage: null
- item:
name: Ptex
homepage_url: http://ptex.us/
repo_url: https://github.com/wdas/ptex
logo: ptex.svg
crunchbase: https://www.crunchbase.com/organization/walt-disney-animation-studios
crunchbase_data:
name: Walt Disney Animation Studios
description: Walt Disney Animation Studios creates animated feature films and is owned by The Walt Disney Company.
num_employees_min: 501
num_employees_max: 1000
homepage: https://www.disneyanimation.com/
city: Burbank
region: California
country: United States
twitter: https://twitter.com/DisneyAnimation
linkedin: https://www.linkedin.com/company/walt-disney-animation-studios
acquisitions: []
parents:
- https://www.crunchbase.com/organization/the-walt-disney-company
ticker: DIS
funding: 11000000000
stockExchange: null
company_type: For Profit
industries:
- Animation
- Graphic Design
- Media and Entertainment
github_data:
languages:
- name: C
value: 1006206
color: '#555555'
- name: C++
value: 316637
color: '#f34b7d'
- name: Objective-C
value: 45973
color: '#438eff'
- name: CMake
value: 10192
- name: Shell
value: 2648
color: '#89e051'
- name: Makefile
value: 2510
color: '#427819'
- name: CSS
value: 141
color: '#563d7c'
- name: JavaScript
value: 92
color: '#f1e05a'
contributions: 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;2;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;0;0;1;0;0;0;0;0;0
firstWeek: 2023-10-22Z
stars: 679
license: Other
description: Per-Face Texture Mapping for Production Rendering https://wdas.github.io/ptex
latest_commit_date: '2024-08-28T06:22:35Z'
latest_commit_link: /wdas/ptex/commit/054047d02b9e06e690420b407114d2872435b953
contributors_count: 29
contributors_link: https://github.com/wdas/ptex/graphs/contributors
repos:
- url: https://github.com/wdas/ptex
stars: 679
github_start_commit_data:
start_commit_link: /wdas/ptex/commit/4af1ede1050e68e140c6a48aa2b73caeb35e207e
start_date: '2009-10-23T14:47:55Z'
yahoo_finance_data:
effective_ticker: DIS
image_data:
fileName: ptex.svg