├── .gitignore ├── README.md ├── assets └── teaser.png ├── config └── bear_config.json ├── dataset └── bear_data │ └── cameras.json ├── gaussian-splatting ├── .gitignore ├── LICENSE.md ├── README.md ├── arguments │ └── __init__.py ├── convert.py ├── environment.yml ├── full_eval.py ├── gaussian_renderer │ ├── __init__.py │ └── network_gui.py ├── lpipsPyTorch │ ├── __init__.py │ └── modules │ │ ├── lpips.py │ │ ├── networks.py │ │ └── utils.py ├── metrics.py ├── render.py ├── scene │ ├── __init__.py │ ├── cameras.py │ ├── colmap_loader.py │ ├── dataset_readers.py │ └── gaussian_model.py ├── submodules │ ├── diff-gaussian-rasterization │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── CMakeLists.txt │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── cuda_rasterizer │ │ │ ├── auxiliary.h │ │ │ ├── backward.cu │ │ │ ├── backward.h │ │ │ ├── config.h │ │ │ ├── forward.cu │ │ │ ├── forward.h │ │ │ ├── rasterizer.h │ │ │ ├── rasterizer_impl.cu │ │ │ └── rasterizer_impl.h │ │ ├── diff_gaussian_rasterization │ │ │ ├── _C.cpython-39-x86_64-linux-gnu.so │ │ │ └── __init__.py │ │ ├── ext.cpp │ │ ├── rasterize_points.cu │ │ ├── rasterize_points.h │ │ ├── setup.py │ │ └── third_party │ │ │ ├── glm │ │ │ ├── .appveyor.yml │ │ │ ├── .travis.yml │ │ │ ├── CMakeLists.txt │ │ │ ├── cmake │ │ │ │ └── cmake_uninstall.cmake.in │ │ │ ├── copying.txt │ │ │ ├── doc │ │ │ │ ├── api │ │ │ │ │ ├── a00001_source.html │ │ │ │ │ ├── a00002_source.html │ │ │ │ │ ├── a00003_source.html │ │ │ │ │ ├── a00004_source.html │ │ │ │ │ ├── a00005_source.html │ │ │ │ │ ├── a00006_source.html │ │ │ │ │ ├── a00007.html │ │ │ │ │ ├── a00007_source.html │ │ │ │ │ ├── a00008.html │ │ │ │ │ ├── a00008_source.html │ │ │ │ │ ├── a00009.html │ │ │ │ │ ├── a00009_source.html │ │ │ │ │ ├── a00010.html │ │ │ │ │ ├── a00010_source.html │ │ │ │ │ ├── a00011.html │ │ │ │ │ ├── a00011_source.html │ │ │ │ │ ├── a00012.html │ │ │ │ │ ├── a00012_source.html │ │ │ │ │ ├── a00013.html │ │ │ │ │ ├── a00013_source.html │ │ │ │ │ ├── a00014.html │ │ │ │ │ ├── a00014_source.html │ │ │ │ │ ├── a00015.html │ │ │ │ │ ├── a00015_source.html │ │ │ │ │ ├── a00016.html │ │ │ │ │ ├── a00016_source.html │ │ │ │ │ ├── a00017.html │ │ │ │ │ ├── a00017_source.html │ │ │ │ │ ├── a00018.html │ │ │ │ │ ├── a00018_source.html │ │ │ │ │ ├── a00019_source.html │ │ │ │ │ ├── a00020_source.html │ │ │ │ │ ├── a00021.html │ │ │ │ │ ├── a00021_source.html │ │ │ │ │ ├── a00022.html │ │ │ │ │ ├── a00022_source.html │ │ │ │ │ ├── a00023.html │ │ │ │ │ ├── a00023_source.html │ │ │ │ │ ├── a00024.html │ │ │ │ │ ├── a00024_source.html │ │ │ │ │ ├── a00025.html │ │ │ │ │ ├── a00025_source.html │ │ │ │ │ ├── a00026.html │ │ │ │ │ ├── a00026_source.html │ │ │ │ │ ├── a00027.html │ │ │ │ │ ├── a00027_source.html │ │ │ │ │ ├── a00028.html │ │ │ │ │ ├── a00028_source.html │ │ │ │ │ ├── a00029.html │ │ │ │ │ ├── a00029_source.html │ │ │ │ │ ├── a00030.html │ │ │ │ │ ├── a00030_source.html │ │ │ │ │ ├── a00031.html │ │ │ │ │ ├── a00031_source.html │ │ │ │ │ ├── a00032.html │ │ │ │ │ ├── a00032_source.html │ │ │ │ │ ├── a00033.html │ │ │ │ │ ├── a00033_source.html │ │ │ │ │ ├── a00034.html │ │ │ │ │ ├── a00034_source.html │ │ │ │ │ ├── a00035_source.html │ │ │ │ │ ├── a00036.html │ │ │ │ │ ├── a00036_source.html │ │ │ │ │ ├── a00037.html │ │ │ │ │ ├── a00037_source.html │ │ │ │ │ ├── a00038.html │ │ │ │ │ ├── a00038_source.html │ │ │ │ │ ├── a00039.html │ │ │ │ │ ├── a00039_source.html │ │ │ │ │ ├── a00040.html │ │ │ │ │ ├── a00040_source.html │ │ │ │ │ ├── a00041.html │ │ │ │ │ ├── a00041_source.html │ │ │ │ │ ├── a00042.html │ │ │ │ │ ├── a00042_source.html │ │ │ │ │ ├── a00043.html │ │ │ │ │ ├── a00043_source.html │ │ │ │ │ ├── a00044.html │ │ │ │ │ ├── a00044_source.html │ │ │ │ │ ├── a00045.html │ │ │ │ │ ├── a00045_source.html │ │ │ │ │ ├── a00046.html │ │ │ │ │ ├── a00046_source.html │ │ │ │ │ ├── a00047_source.html │ │ │ │ │ ├── a00048.html │ │ │ │ │ ├── a00048_source.html │ │ │ │ │ ├── a00049.html │ │ │ │ │ ├── a00049_source.html │ │ │ │ │ ├── a00050.html │ │ │ │ │ ├── a00050_source.html │ │ │ │ │ ├── a00051.html │ │ │ │ │ ├── a00051_source.html │ │ │ │ │ ├── a00052.html │ │ │ │ │ ├── a00052_source.html │ │ │ │ │ ├── a00053.html │ │ │ │ │ ├── a00053_source.html │ │ │ │ │ ├── a00054.html │ │ │ │ │ ├── a00054_source.html │ │ │ │ │ ├── a00055.html │ │ │ │ │ ├── a00055_source.html │ │ │ │ │ ├── a00056.html │ │ │ │ │ ├── a00056_source.html │ │ │ │ │ ├── a00057.html │ │ │ │ │ ├── a00057_source.html │ │ │ │ │ ├── a00058.html │ │ │ │ │ ├── a00058_source.html │ │ │ │ │ ├── a00059.html │ │ │ │ │ ├── a00059_source.html │ │ │ │ │ ├── a00060.html │ │ │ │ │ ├── a00060_source.html │ │ │ │ │ ├── a00061.html │ │ │ │ │ ├── a00061_source.html │ │ │ │ │ ├── a00062.html │ │ │ │ │ ├── a00062_source.html │ │ │ │ │ ├── a00063.html │ │ │ │ │ ├── a00063_source.html │ │ │ │ │ ├── a00064.html │ │ │ │ │ ├── a00064_source.html │ │ │ │ │ ├── a00065.html │ │ │ │ │ ├── a00065_source.html │ │ │ │ │ ├── a00066.html │ │ │ │ │ ├── a00066_source.html │ │ │ │ │ ├── a00067.html │ │ │ │ │ ├── a00067_source.html │ │ │ │ │ ├── a00068.html │ │ │ │ │ ├── a00068_source.html │ │ │ │ │ ├── a00069.html │ │ │ │ │ ├── a00069_source.html │ │ │ │ │ ├── a00070.html │ │ │ │ │ ├── a00070_source.html │ │ │ │ │ ├── a00071.html │ │ │ │ │ ├── a00071_source.html │ │ │ │ │ ├── a00072.html │ │ │ │ │ ├── a00072_source.html │ │ │ │ │ ├── a00073.html │ │ │ │ │ ├── a00073_source.html │ │ │ │ │ ├── a00074.html │ │ │ │ │ ├── a00074_source.html │ │ │ │ │ ├── a00075.html │ │ │ │ │ ├── a00075_source.html │ │ │ │ │ ├── a00076.html │ │ │ │ │ ├── a00076_source.html │ │ │ │ │ ├── a00077.html │ │ │ │ │ ├── a00077_source.html │ │ │ │ │ ├── a00078.html │ │ │ │ │ ├── a00078_source.html │ │ │ │ │ ├── a00079.html │ │ │ │ │ ├── a00079_source.html │ │ │ │ │ ├── a00080.html │ │ │ │ │ ├── a00080_source.html │ │ │ │ │ ├── a00081.html │ │ │ │ │ ├── a00081_source.html │ │ │ │ │ ├── a00082.html │ │ │ │ │ ├── a00082_source.html │ │ │ │ │ ├── a00083.html │ │ │ │ │ ├── a00083_source.html │ │ │ │ │ ├── a00084.html │ │ │ │ │ ├── a00084_source.html │ │ │ │ │ ├── a00085.html │ │ │ │ │ ├── a00085_source.html │ │ │ │ │ ├── a00086.html │ │ │ │ │ ├── a00086_source.html │ │ │ │ │ ├── a00087.html │ │ │ │ │ ├── a00087_source.html │ │ │ │ │ ├── a00088.html │ │ │ │ │ ├── a00088_source.html │ │ │ │ │ ├── a00089.html │ │ │ │ │ ├── a00089_source.html │ │ │ │ │ ├── a00090.html │ │ │ │ │ ├── a00090_source.html │ │ │ │ │ ├── a00091.html │ │ │ │ │ ├── a00091_source.html │ │ │ │ │ ├── a00092.html │ │ │ │ │ ├── a00092_source.html │ │ │ │ │ ├── a00093.html │ │ │ │ │ ├── a00093_source.html │ │ │ │ │ ├── a00094.html │ │ │ │ │ ├── a00094_source.html │ │ │ │ │ ├── a00095_source.html │ │ │ │ │ ├── a00096.html │ │ │ │ │ ├── a00096_source.html │ │ │ │ │ ├── a00097.html │ │ │ │ │ ├── a00097_source.html │ │ │ │ │ ├── a00098.html │ │ │ │ │ ├── a00098_source.html │ │ │ │ │ ├── a00099.html │ │ │ │ │ ├── a00099_source.html │ │ │ │ │ ├── a00100.html │ │ │ │ │ ├── a00100_source.html │ │ │ │ │ ├── a00101.html │ │ │ │ │ ├── a00101_source.html │ │ │ │ │ ├── a00102.html │ │ │ │ │ ├── a00102_source.html │ │ │ │ │ ├── a00103.html │ │ │ │ │ ├── a00103_source.html │ │ │ │ │ ├── a00104.html │ │ │ │ │ ├── a00104_source.html │ │ │ │ │ ├── a00105.html │ │ │ │ │ ├── a00105_source.html │ │ │ │ │ ├── a00106.html │ │ │ │ │ ├── a00106_source.html │ │ │ │ │ ├── a00107.html │ │ │ │ │ ├── a00107_source.html │ │ │ │ │ ├── a00108.html │ │ │ │ │ ├── a00108_source.html │ │ │ │ │ ├── a00109.html │ │ │ │ │ ├── a00109_source.html │ │ │ │ │ ├── a00110.html │ │ │ │ │ ├── a00110_source.html │ │ │ │ │ ├── a00111.html │ │ │ │ │ ├── a00111_source.html │ │ │ │ │ ├── a00112.html │ │ │ │ │ ├── a00112_source.html │ │ │ │ │ ├── a00113.html │ │ │ │ │ ├── a00113_source.html │ │ │ │ │ ├── a00114.html │ │ │ │ │ ├── a00114_source.html │ │ │ │ │ ├── a00115.html │ │ │ │ │ ├── a00115_source.html │ │ │ │ │ ├── a00116.html │ │ │ │ │ ├── a00116_source.html │ │ │ │ │ ├── a00117.html │ │ │ │ │ ├── a00117_source.html │ │ │ │ │ ├── a00118.html │ │ │ │ │ ├── a00118_source.html │ │ │ │ │ ├── a00119.html │ │ │ │ │ ├── a00119_source.html │ │ │ │ │ ├── a00120.html │ │ │ │ │ ├── a00120_source.html │ │ │ │ │ ├── a00121.html │ │ │ │ │ ├── a00121_source.html │ │ │ │ │ ├── a00122.html │ │ │ │ │ ├── a00122_source.html │ │ │ │ │ ├── a00123.html │ │ │ │ │ ├── a00123_source.html │ │ │ │ │ ├── a00124_source.html │ │ │ │ │ ├── a00125.html │ │ │ │ │ ├── a00125_source.html │ │ │ │ │ ├── a00126.html │ │ │ │ │ ├── a00126_source.html │ │ │ │ │ ├── a00127.html │ │ │ │ │ ├── a00127_source.html │ │ │ │ │ ├── a00128.html │ │ │ │ │ ├── a00128_source.html │ │ │ │ │ ├── a00129.html │ │ │ │ │ ├── a00129_source.html │ │ │ │ │ ├── a00130.html │ │ │ │ │ ├── a00130_source.html │ │ │ │ │ ├── a00131.html │ │ │ │ │ ├── a00131_source.html │ │ │ │ │ ├── a00132.html │ │ │ │ │ ├── a00132_source.html │ │ │ │ │ ├── a00133.html │ │ │ │ │ ├── a00133_source.html │ │ │ │ │ ├── a00134.html │ │ │ │ │ ├── a00134_source.html │ │ │ │ │ ├── a00135.html │ │ │ │ │ ├── a00135_source.html │ │ │ │ │ ├── a00136.html │ │ │ │ │ ├── a00136_source.html │ │ │ │ │ ├── a00137.html │ │ │ │ │ ├── a00137_source.html │ │ │ │ │ ├── a00138.html │ │ │ │ │ ├── a00138_source.html │ │ │ │ │ ├── a00139.html │ │ │ │ │ ├── a00139_source.html │ │ │ │ │ ├── a00140.html │ │ │ │ │ ├── a00140_source.html │ │ │ │ │ ├── a00141.html │ │ │ │ │ ├── a00141_source.html │ │ │ │ │ ├── a00142.html │ │ │ │ │ ├── a00142_source.html │ │ │ │ │ ├── a00143.html │ │ │ │ │ ├── a00143_source.html │ │ │ │ │ ├── a00144.html │ │ │ │ │ ├── a00144_source.html │ │ │ │ │ ├── a00145.html │ │ │ │ │ ├── a00145_source.html │ │ │ │ │ ├── a00146.html │ │ │ │ │ ├── a00146_source.html │ │ │ │ │ ├── a00147.html │ │ │ │ │ ├── a00147_source.html │ │ │ │ │ ├── a00148.html │ │ │ │ │ ├── a00148_source.html │ │ │ │ │ ├── a00149.html │ │ │ │ │ ├── a00149_source.html │ │ │ │ │ ├── a00150.html │ │ │ │ │ ├── a00150_source.html │ │ │ │ │ ├── a00151.html │ │ │ │ │ ├── a00151_source.html │ │ │ │ │ ├── a00152.html │ │ │ │ │ ├── a00152_source.html │ │ │ │ │ ├── a00153_source.html │ │ │ │ │ ├── a00154.html │ │ │ │ │ ├── a00154_source.html │ │ │ │ │ ├── a00155.html │ │ │ │ │ ├── a00155_source.html │ │ │ │ │ ├── a00156.html │ │ │ │ │ ├── a00156_source.html │ │ │ │ │ ├── a00157.html │ │ │ │ │ ├── a00157_source.html │ │ │ │ │ ├── a00158.html │ │ │ │ │ ├── a00158_source.html │ │ │ │ │ ├── a00159.html │ │ │ │ │ ├── a00159_source.html │ │ │ │ │ ├── a00160.html │ │ │ │ │ ├── a00160_source.html │ │ │ │ │ ├── a00161.html │ │ │ │ │ ├── a00161_source.html │ │ │ │ │ ├── a00162.html │ │ │ │ │ ├── a00162_source.html │ │ │ │ │ ├── a00163_source.html │ │ │ │ │ ├── a00164_source.html │ │ │ │ │ ├── a00165.html │ │ │ │ │ ├── a00165_source.html │ │ │ │ │ ├── a00166.html │ │ │ │ │ ├── a00166_source.html │ │ │ │ │ ├── a00167.html │ │ │ │ │ ├── a00167_source.html │ │ │ │ │ ├── a00168.html │ │ │ │ │ ├── a00168_source.html │ │ │ │ │ ├── a00169.html │ │ │ │ │ ├── a00169_source.html │ │ │ │ │ ├── a00170.html │ │ │ │ │ ├── a00170_source.html │ │ │ │ │ ├── a00171.html │ │ │ │ │ ├── a00171_source.html │ │ │ │ │ ├── a00172.html │ │ │ │ │ ├── a00172_source.html │ │ │ │ │ ├── a00173.html │ │ │ │ │ ├── a00173_source.html │ │ │ │ │ ├── a00174.html │ │ │ │ │ ├── a00174_source.html │ │ │ │ │ ├── a00175.html │ │ │ │ │ ├── a00175_source.html │ │ │ │ │ ├── a00176.html │ │ │ │ │ ├── a00176_source.html │ │ │ │ │ ├── a00177.html │ │ │ │ │ ├── a00177_source.html │ │ │ │ │ ├── a00178.html │ │ │ │ │ ├── a00178_source.html │ │ │ │ │ ├── a00179.html │ │ │ │ │ ├── a00179_source.html │ │ │ │ │ ├── a00180.html │ │ │ │ │ ├── a00180_source.html │ │ │ │ │ ├── a00181.html │ │ │ │ │ ├── a00181_source.html │ │ │ │ │ ├── a00182.html │ │ │ │ │ ├── a00182_source.html │ │ │ │ │ ├── a00183.html │ │ │ │ │ ├── a00183_source.html │ │ │ │ │ ├── a00184.html │ │ │ │ │ ├── a00184_source.html │ │ │ │ │ ├── a00185.html │ │ │ │ │ ├── a00185_source.html │ │ │ │ │ ├── a00186.html │ │ │ │ │ ├── a00186_source.html │ │ │ │ │ ├── a00187.html │ │ │ │ │ ├── a00187_source.html │ │ │ │ │ ├── a00188.html │ │ │ │ │ ├── a00188_source.html │ │ │ │ │ ├── a00189.html │ │ │ │ │ ├── a00189_source.html │ │ │ │ │ ├── a00190.html │ │ │ │ │ ├── a00190_source.html │ │ │ │ │ ├── a00191.html │ │ │ │ │ ├── a00191_source.html │ │ │ │ │ ├── a00192.html │ │ │ │ │ ├── a00192_source.html │ │ │ │ │ ├── a00193.html │ │ │ │ │ ├── a00193_source.html │ │ │ │ │ ├── a00194.html │ │ │ │ │ ├── a00194_source.html │ │ │ │ │ ├── a00195.html │ │ │ │ │ ├── a00195_source.html │ │ │ │ │ ├── a00196.html │ │ │ │ │ ├── a00196_source.html │ │ │ │ │ ├── a00197.html │ │ │ │ │ ├── a00197_source.html │ │ │ │ │ ├── a00198.html │ │ │ │ │ ├── a00198_source.html │ │ │ │ │ ├── a00199.html │ │ │ │ │ ├── a00199_source.html │ │ │ │ │ ├── a00200.html │ │ │ │ │ ├── a00200_source.html │ │ │ │ │ ├── a00201.html │ │ │ │ │ ├── a00201_source.html │ │ │ │ │ ├── a00202.html │ │ │ │ │ ├── a00202_source.html │ │ │ │ │ ├── a00203.html │ │ │ │ │ ├── a00203_source.html │ │ │ │ │ ├── a00204.html │ │ │ │ │ ├── a00204_source.html │ │ │ │ │ ├── a00205.html │ │ │ │ │ ├── a00205_source.html │ │ │ │ │ ├── a00206.html │ │ │ │ │ ├── a00206_source.html │ │ │ │ │ ├── a00207.html │ │ │ │ │ ├── a00207_source.html │ │ │ │ │ ├── a00208.html │ │ │ │ │ ├── a00208_source.html │ │ │ │ │ ├── a00209.html │ │ │ │ │ ├── a00209_source.html │ │ │ │ │ ├── a00210.html │ │ │ │ │ ├── a00210_source.html │ │ │ │ │ ├── a00211.html │ │ │ │ │ ├── a00211_source.html │ │ │ │ │ ├── a00212.html │ │ │ │ │ ├── a00212_source.html │ │ │ │ │ ├── a00213.html │ │ │ │ │ ├── a00213_source.html │ │ │ │ │ ├── a00214.html │ │ │ │ │ ├── a00214_source.html │ │ │ │ │ ├── a00215.html │ │ │ │ │ ├── a00215_source.html │ │ │ │ │ ├── a00216.html │ │ │ │ │ ├── a00216_source.html │ │ │ │ │ ├── a00217.html │ │ │ │ │ ├── a00217_source.html │ │ │ │ │ ├── a00218.html │ │ │ │ │ ├── a00218_source.html │ │ │ │ │ ├── a00219.html │ │ │ │ │ ├── a00219_source.html │ │ │ │ │ ├── a00220.html │ │ │ │ │ ├── a00220_source.html │ │ │ │ │ ├── a00221.html │ │ │ │ │ ├── a00221_source.html │ │ │ │ │ ├── a00222.html │ │ │ │ │ ├── a00222_source.html │ │ │ │ │ ├── a00223.html │ │ │ │ │ ├── a00223_source.html │ │ │ │ │ ├── a00224.html │ │ │ │ │ ├── a00224_source.html │ │ │ │ │ ├── a00225.html │ │ │ │ │ ├── a00225_source.html │ │ │ │ │ ├── a00226.html │ │ │ │ │ ├── a00226_source.html │ │ │ │ │ ├── a00227.html │ │ │ │ │ ├── a00227_source.html │ │ │ │ │ ├── a00228.html │ │ │ │ │ ├── a00228_source.html │ │ │ │ │ ├── a00229.html │ │ │ │ │ ├── a00229_source.html │ │ │ │ │ ├── a00230.html │ │ │ │ │ ├── a00230_source.html │ │ │ │ │ ├── a00231.html │ │ │ │ │ ├── a00231_source.html │ │ │ │ │ ├── a00232.html │ │ │ │ │ ├── a00232_source.html │ │ │ │ │ ├── a00233.html │ │ │ │ │ ├── a00233_source.html │ │ │ │ │ ├── a00234.html │ │ │ │ │ ├── a00234_source.html │ │ │ │ │ ├── a00235.html │ │ │ │ │ ├── a00235_source.html │ │ │ │ │ ├── a00241.html │ │ │ │ │ ├── a00242.html │ │ │ │ │ ├── a00243.html │ │ │ │ │ ├── a00244.html │ │ │ │ │ ├── a00245.html │ │ │ │ │ ├── a00246.html │ │ │ │ │ ├── a00247.html │ │ │ │ │ ├── a00248.html │ │ │ │ │ ├── a00249.html │ │ │ │ │ ├── a00250.html │ │ │ │ │ ├── a00251.html │ │ │ │ │ ├── a00252.html │ │ │ │ │ ├── a00253.html │ │ │ │ │ ├── a00254.html │ │ │ │ │ ├── a00255.html │ │ │ │ │ ├── a00256.html │ │ │ │ │ ├── a00257.html │ │ │ │ │ ├── a00258.html │ │ │ │ │ ├── a00259.html │ │ │ │ │ ├── a00260.html │ │ │ │ │ ├── a00261.html │ │ │ │ │ ├── a00262.html │ │ │ │ │ ├── a00263.html │ │ │ │ │ ├── a00264.html │ │ │ │ │ ├── a00265.html │ │ │ │ │ ├── a00266.html │ │ │ │ │ ├── a00267.html │ │ │ │ │ ├── a00268.html │ │ │ │ │ ├── a00269.html │ │ │ │ │ ├── a00270.html │ │ │ │ │ ├── a00271.html │ │ │ │ │ ├── a00272.html │ │ │ │ │ ├── a00273.html │ │ │ │ │ ├── a00274.html │ │ │ │ │ ├── a00275.html │ │ │ │ │ ├── a00276.html │ │ │ │ │ ├── a00277.html │ │ │ │ │ ├── a00278.html │ │ │ │ │ ├── a00279.html │ │ │ │ │ ├── a00280.html │ │ │ │ │ ├── a00281.html │ │ │ │ │ ├── a00282.html │ │ │ │ │ ├── a00283.html │ │ │ │ │ ├── a00284.html │ │ │ │ │ ├── a00285.html │ │ │ │ │ ├── a00286.html │ │ │ │ │ ├── a00287.html │ │ │ │ │ ├── a00288.html │ │ │ │ │ ├── a00289.html │ │ │ │ │ ├── a00290.html │ │ │ │ │ ├── a00291.html │ │ │ │ │ ├── a00292.html │ │ │ │ │ ├── a00293.html │ │ │ │ │ ├── a00294.html │ │ │ │ │ ├── a00295.html │ │ │ │ │ ├── a00296.html │ │ │ │ │ ├── a00297.html │ │ │ │ │ ├── a00298.html │ │ │ │ │ ├── a00299.html │ │ │ │ │ ├── a00300.html │ │ │ │ │ ├── a00301.html │ │ │ │ │ ├── a00302.html │ │ │ │ │ ├── a00303.html │ │ │ │ │ ├── a00304.html │ │ │ │ │ ├── a00305.html │ │ │ │ │ ├── a00306.html │ │ │ │ │ ├── a00307.html │ │ │ │ │ ├── a00308.html │ │ │ │ │ ├── a00309.html │ │ │ │ │ ├── a00310.html │ │ │ │ │ ├── a00311.html │ │ │ │ │ ├── a00312.html │ │ │ │ │ ├── a00313.html │ │ │ │ │ ├── a00314.html │ │ │ │ │ ├── a00315.html │ │ │ │ │ ├── a00316.html │ │ │ │ │ ├── a00317.html │ │ │ │ │ ├── a00318.html │ │ │ │ │ ├── a00319.html │ │ │ │ │ ├── a00320.html │ │ │ │ │ ├── a00321.html │ │ │ │ │ ├── a00322.html │ │ │ │ │ ├── a00323.html │ │ │ │ │ ├── a00324.html │ │ │ │ │ ├── a00325.html │ │ │ │ │ ├── a00326.html │ │ │ │ │ ├── a00327.html │ │ │ │ │ ├── a00328.html │ │ │ │ │ ├── a00329.html │ │ │ │ │ ├── a00330.html │ │ │ │ │ ├── a00331.html │ │ │ │ │ ├── a00332.html │ │ │ │ │ ├── a00333.html │ │ │ │ │ ├── a00334.html │ │ │ │ │ ├── a00335.html │ │ │ │ │ ├── a00336.html │ │ │ │ │ ├── a00337.html │ │ │ │ │ ├── a00338.html │ │ │ │ │ ├── a00339.html │ │ │ │ │ ├── a00340.html │ │ │ │ │ ├── a00341.html │ │ │ │ │ ├── a00342.html │ │ │ │ │ ├── a00343.html │ │ │ │ │ ├── a00344.html │ │ │ │ │ ├── a00345.html │ │ │ │ │ ├── a00346.html │ │ │ │ │ ├── a00347.html │ │ │ │ │ ├── a00348.html │ │ │ │ │ ├── a00349.html │ │ │ │ │ ├── a00350.html │ │ │ │ │ ├── a00351.html │ │ │ │ │ ├── a00352.html │ │ │ │ │ ├── a00353.html │ │ │ │ │ ├── a00354.html │ │ │ │ │ ├── a00355.html │ │ │ │ │ ├── a00356.html │ │ │ │ │ ├── a00357.html │ │ │ │ │ ├── a00358.html │ │ │ │ │ ├── a00359.html │ │ │ │ │ ├── a00360.html │ │ │ │ │ ├── a00361.html │ │ │ │ │ ├── a00362.html │ │ │ │ │ ├── a00363.html │ │ │ │ │ ├── a00364.html │ │ │ │ │ ├── a00365.html │ │ │ │ │ ├── a00366.html │ │ │ │ │ ├── a00367.html │ │ │ │ │ ├── a00368.html │ │ │ │ │ ├── a00369.html │ │ │ │ │ ├── a00370.html │ │ │ │ │ ├── a00371.html │ │ │ │ │ ├── a00372.html │ │ │ │ │ ├── a00373.html │ │ │ │ │ ├── a00374.html │ │ │ │ │ ├── arrowdown.png │ │ │ │ │ ├── arrowright.png │ │ │ │ │ ├── bc_s.png │ │ │ │ │ ├── bdwn.png │ │ │ │ │ ├── closed.png │ │ │ │ │ ├── dir_033f5edb0915b828d2c46ed4804e5503.html │ │ │ │ │ ├── dir_3a581ba30d25676e4b797b1f96d53b45.html │ │ │ │ │ ├── dir_44e5e654415abd9ca6fdeaddaff8565e.html │ │ │ │ │ ├── dir_4c6bd29c73fa4e5a2509e1c15f846751.html │ │ │ │ │ ├── dir_5189610d3ba09ec39b766fb99b34cd93.html │ │ │ │ │ ├── dir_6b66465792d005310484819a0eb0b0d3.html │ │ │ │ │ ├── dir_9e5fe034a00e89334fd5186c3e7db156.html │ │ │ │ │ ├── dir_a8bee7be44182a33f3820393ae0b105d.html │ │ │ │ │ ├── dir_cef2d71d502cb69a9252bca2297d9549.html │ │ │ │ │ ├── dir_d9496f0844b48bc7e53b5af8c99b9ab2.html │ │ │ │ │ ├── dir_f35778ec600a1b9bbc4524e62e226aa2.html │ │ │ │ │ ├── doc.png │ │ │ │ │ ├── doxygen.css │ │ │ │ │ ├── doxygen.png │ │ │ │ │ ├── dynsections.js │ │ │ │ │ ├── files.html │ │ │ │ │ ├── folderclosed.png │ │ │ │ │ ├── folderopen.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── logo-mini.png │ │ │ │ │ ├── modules.html │ │ │ │ │ ├── nav_f.png │ │ │ │ │ ├── nav_g.png │ │ │ │ │ ├── nav_h.png │ │ │ │ │ ├── open.png │ │ │ │ │ ├── search │ │ │ │ │ │ ├── all_0.html │ │ │ │ │ │ ├── all_0.js │ │ │ │ │ │ ├── all_1.html │ │ │ │ │ │ ├── all_1.js │ │ │ │ │ │ ├── all_10.html │ │ │ │ │ │ ├── all_10.js │ │ │ │ │ │ ├── all_11.html │ │ │ │ │ │ ├── all_11.js │ │ │ │ │ │ ├── all_12.html │ │ │ │ │ │ ├── all_12.js │ │ │ │ │ │ ├── all_13.html │ │ │ │ │ │ ├── all_13.js │ │ │ │ │ │ ├── all_14.html │ │ │ │ │ │ ├── all_14.js │ │ │ │ │ │ ├── all_15.html │ │ │ │ │ │ ├── all_15.js │ │ │ │ │ │ ├── all_16.html │ │ │ │ │ │ ├── all_16.js │ │ │ │ │ │ ├── all_2.html │ │ │ │ │ │ ├── all_2.js │ │ │ │ │ │ ├── all_3.html │ │ │ │ │ │ ├── all_3.js │ │ │ │ │ │ ├── all_4.html │ │ │ │ │ │ ├── all_4.js │ │ │ │ │ │ ├── all_5.html │ │ │ │ │ │ ├── all_5.js │ │ │ │ │ │ ├── all_6.html │ │ │ │ │ │ ├── all_6.js │ │ │ │ │ │ ├── all_7.html │ │ │ │ │ │ ├── all_7.js │ │ │ │ │ │ ├── all_8.html │ │ │ │ │ │ ├── all_8.js │ │ │ │ │ │ ├── all_9.html │ │ │ │ │ │ ├── all_9.js │ │ │ │ │ │ ├── all_a.html │ │ │ │ │ │ ├── all_a.js │ │ │ │ │ │ ├── all_b.html │ │ │ │ │ │ ├── all_b.js │ │ │ │ │ │ ├── all_c.html │ │ │ │ │ │ ├── all_c.js │ │ │ │ │ │ ├── all_d.html │ │ │ │ │ │ ├── all_d.js │ │ │ │ │ │ ├── all_e.html │ │ │ │ │ │ ├── all_e.js │ │ │ │ │ │ ├── all_f.html │ │ │ │ │ │ ├── all_f.js │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── files_0.html │ │ │ │ │ │ ├── files_0.js │ │ │ │ │ │ ├── files_1.html │ │ │ │ │ │ ├── files_1.js │ │ │ │ │ │ ├── files_10.html │ │ │ │ │ │ ├── files_10.js │ │ │ │ │ │ ├── files_11.html │ │ │ │ │ │ ├── files_11.js │ │ │ │ │ │ ├── files_12.html │ │ │ │ │ │ ├── files_12.js │ │ │ │ │ │ ├── files_13.html │ │ │ │ │ │ ├── files_13.js │ │ │ │ │ │ ├── files_14.html │ │ │ │ │ │ ├── files_14.js │ │ │ │ │ │ ├── files_2.html │ │ │ │ │ │ ├── files_2.js │ │ │ │ │ │ ├── files_3.html │ │ │ │ │ │ ├── files_3.js │ │ │ │ │ │ ├── files_4.html │ │ │ │ │ │ ├── files_4.js │ │ │ │ │ │ ├── files_5.html │ │ │ │ │ │ ├── files_5.js │ │ │ │ │ │ ├── files_6.html │ │ │ │ │ │ ├── files_6.js │ │ │ │ │ │ ├── files_7.html │ │ │ │ │ │ ├── files_7.js │ │ │ │ │ │ ├── files_8.html │ │ │ │ │ │ ├── files_8.js │ │ │ │ │ │ ├── files_9.html │ │ │ │ │ │ ├── files_9.js │ │ │ │ │ │ ├── files_a.html │ │ │ │ │ │ ├── files_a.js │ │ │ │ │ │ ├── files_b.html │ │ │ │ │ │ ├── files_b.js │ │ │ │ │ │ ├── files_c.html │ │ │ │ │ │ ├── files_c.js │ │ │ │ │ │ ├── files_d.html │ │ │ │ │ │ ├── files_d.js │ │ │ │ │ │ ├── files_e.html │ │ │ │ │ │ ├── files_e.js │ │ │ │ │ │ ├── files_f.html │ │ │ │ │ │ ├── files_f.js │ │ │ │ │ │ ├── functions_0.html │ │ │ │ │ │ ├── functions_0.js │ │ │ │ │ │ ├── functions_1.html │ │ │ │ │ │ ├── functions_1.js │ │ │ │ │ │ ├── functions_10.html │ │ │ │ │ │ ├── functions_10.js │ │ │ │ │ │ ├── functions_11.html │ │ │ │ │ │ ├── functions_11.js │ │ │ │ │ │ ├── functions_12.html │ │ │ │ │ │ ├── functions_12.js │ │ │ │ │ │ ├── functions_13.html │ │ │ │ │ │ ├── functions_13.js │ │ │ │ │ │ ├── functions_14.html │ │ │ │ │ │ ├── functions_14.js │ │ │ │ │ │ ├── functions_15.html │ │ │ │ │ │ ├── functions_15.js │ │ │ │ │ │ ├── functions_16.html │ │ │ │ │ │ ├── functions_16.js │ │ │ │ │ │ ├── functions_2.html │ │ │ │ │ │ ├── functions_2.js │ │ │ │ │ │ ├── functions_3.html │ │ │ │ │ │ ├── functions_3.js │ │ │ │ │ │ ├── functions_4.html │ │ │ │ │ │ ├── functions_4.js │ │ │ │ │ │ ├── functions_5.html │ │ │ │ │ │ ├── functions_5.js │ │ │ │ │ │ ├── functions_6.html │ │ │ │ │ │ ├── functions_6.js │ │ │ │ │ │ ├── functions_7.html │ │ │ │ │ │ ├── functions_7.js │ │ │ │ │ │ ├── functions_8.html │ │ │ │ │ │ ├── functions_8.js │ │ │ │ │ │ ├── functions_9.html │ │ │ │ │ │ ├── functions_9.js │ │ │ │ │ │ ├── functions_a.html │ │ │ │ │ │ ├── functions_a.js │ │ │ │ │ │ ├── functions_b.html │ │ │ │ │ │ ├── functions_b.js │ │ │ │ │ │ ├── functions_c.html │ │ │ │ │ │ ├── functions_c.js │ │ │ │ │ │ ├── functions_d.html │ │ │ │ │ │ ├── functions_d.js │ │ │ │ │ │ ├── functions_e.html │ │ │ │ │ │ ├── functions_e.js │ │ │ │ │ │ ├── functions_f.html │ │ │ │ │ │ ├── functions_f.js │ │ │ │ │ │ ├── groups_0.html │ │ │ │ │ │ ├── groups_0.js │ │ │ │ │ │ ├── groups_1.html │ │ │ │ │ │ ├── groups_1.js │ │ │ │ │ │ ├── groups_2.html │ │ │ │ │ │ ├── groups_2.js │ │ │ │ │ │ ├── groups_3.html │ │ │ │ │ │ ├── groups_3.js │ │ │ │ │ │ ├── groups_4.html │ │ │ │ │ │ ├── groups_4.js │ │ │ │ │ │ ├── groups_5.html │ │ │ │ │ │ ├── groups_5.js │ │ │ │ │ │ ├── groups_6.html │ │ │ │ │ │ ├── groups_6.js │ │ │ │ │ │ ├── groups_7.html │ │ │ │ │ │ ├── groups_7.js │ │ │ │ │ │ ├── groups_8.html │ │ │ │ │ │ ├── groups_8.js │ │ │ │ │ │ ├── groups_9.html │ │ │ │ │ │ ├── groups_9.js │ │ │ │ │ │ ├── mag_sel.png │ │ │ │ │ │ ├── nomatches.html │ │ │ │ │ │ ├── pages_0.html │ │ │ │ │ │ ├── pages_0.js │ │ │ │ │ │ ├── search.css │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ ├── search_l.png │ │ │ │ │ │ ├── search_m.png │ │ │ │ │ │ ├── search_r.png │ │ │ │ │ │ ├── searchdata.js │ │ │ │ │ │ ├── typedefs_0.html │ │ │ │ │ │ ├── typedefs_0.js │ │ │ │ │ │ ├── typedefs_1.html │ │ │ │ │ │ ├── typedefs_1.js │ │ │ │ │ │ ├── typedefs_2.html │ │ │ │ │ │ ├── typedefs_2.js │ │ │ │ │ │ ├── typedefs_3.html │ │ │ │ │ │ ├── typedefs_3.js │ │ │ │ │ │ ├── typedefs_4.html │ │ │ │ │ │ ├── typedefs_4.js │ │ │ │ │ │ ├── typedefs_5.html │ │ │ │ │ │ ├── typedefs_5.js │ │ │ │ │ │ ├── typedefs_6(1).html │ │ │ │ │ │ ├── typedefs_6(1).js │ │ │ │ │ │ ├── typedefs_6.html │ │ │ │ │ │ ├── typedefs_6.js │ │ │ │ │ │ ├── typedefs_7(1).js │ │ │ │ │ │ ├── typedefs_7.html │ │ │ │ │ │ ├── typedefs_7.js │ │ │ │ │ │ ├── typedefs_8(1).html │ │ │ │ │ │ ├── typedefs_8.html │ │ │ │ │ │ ├── typedefs_8.js │ │ │ │ │ │ ├── typedefs_9(1).html │ │ │ │ │ │ ├── typedefs_9(1).js │ │ │ │ │ │ ├── typedefs_9.html │ │ │ │ │ │ ├── typedefs_9.js │ │ │ │ │ │ ├── typedefs_a(1).html │ │ │ │ │ │ ├── typedefs_a(1).js │ │ │ │ │ │ ├── typedefs_a.html │ │ │ │ │ │ ├── typedefs_a.js │ │ │ │ │ │ ├── typedefs_b(1).html │ │ │ │ │ │ ├── typedefs_b(1).js │ │ │ │ │ │ ├── typedefs_b.html │ │ │ │ │ │ ├── typedefs_b.js │ │ │ │ │ │ ├── typedefs_c.html │ │ │ │ │ │ ├── typedefs_c.js │ │ │ │ │ │ ├── typedefs_d.html │ │ │ │ │ │ └── typedefs_d.js │ │ │ │ │ ├── splitbar.png │ │ │ │ │ ├── sync_off.png │ │ │ │ │ ├── sync_on.png │ │ │ │ │ ├── tab_a.png │ │ │ │ │ ├── tab_b.png │ │ │ │ │ ├── tab_h.png │ │ │ │ │ ├── tab_s.png │ │ │ │ │ └── tabs.css │ │ │ │ ├── man.doxy │ │ │ │ ├── manual.pdf │ │ │ │ ├── manual │ │ │ │ │ ├── frontpage1.png │ │ │ │ │ ├── frontpage2.png │ │ │ │ │ ├── g-truc.png │ │ │ │ │ ├── logo-mini.png │ │ │ │ │ ├── noise-perlin1.jpg │ │ │ │ │ ├── noise-perlin2.jpg │ │ │ │ │ ├── noise-perlin3.jpg │ │ │ │ │ ├── noise-perlin4.png │ │ │ │ │ ├── noise-perlin5.png │ │ │ │ │ ├── noise-perlin6.png │ │ │ │ │ ├── noise-simplex1.jpg │ │ │ │ │ ├── noise-simplex2.jpg │ │ │ │ │ ├── noise-simplex3.jpg │ │ │ │ │ ├── random-ballrand.png │ │ │ │ │ ├── random-circularrand.png │ │ │ │ │ ├── random-diskrand.png │ │ │ │ │ ├── random-gaussrand.png │ │ │ │ │ ├── random-linearrand.png │ │ │ │ │ ├── random-sphericalrand.png │ │ │ │ │ ├── references-cinder.png │ │ │ │ │ ├── references-glsl4book.jpg │ │ │ │ │ ├── references-leosfortune.jpeg │ │ │ │ │ ├── references-leosfortune2.jpg │ │ │ │ │ ├── references-opencloth1.png │ │ │ │ │ ├── references-opencloth3.png │ │ │ │ │ ├── references-outerra1.jpg │ │ │ │ │ ├── references-outerra2.jpg │ │ │ │ │ ├── references-outerra3.jpg │ │ │ │ │ └── references-outerra4.jpg │ │ │ │ └── theme │ │ │ │ │ ├── bc_s.png │ │ │ │ │ ├── bdwn.png │ │ │ │ │ ├── closed.png │ │ │ │ │ ├── doc.png │ │ │ │ │ ├── doxygen.css │ │ │ │ │ ├── doxygen.png │ │ │ │ │ ├── folderclosed.png │ │ │ │ │ ├── folderopen.png │ │ │ │ │ ├── logo-mini.png │ │ │ │ │ ├── nav_f.png │ │ │ │ │ ├── nav_g.png │ │ │ │ │ ├── nav_h.png │ │ │ │ │ ├── open.png │ │ │ │ │ ├── splitbar.png │ │ │ │ │ ├── sync_off.png │ │ │ │ │ ├── sync_on.png │ │ │ │ │ ├── tab_a.png │ │ │ │ │ ├── tab_b.png │ │ │ │ │ ├── tab_h.png │ │ │ │ │ └── tab_s.png │ │ │ ├── glm │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── common.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── _features.hpp │ │ │ │ │ ├── _fixes.hpp │ │ │ │ │ ├── _noise.hpp │ │ │ │ │ ├── _swizzle.hpp │ │ │ │ │ ├── _swizzle_func.hpp │ │ │ │ │ ├── _vectorize.hpp │ │ │ │ │ ├── compute_common.hpp │ │ │ │ │ ├── compute_vector_relational.hpp │ │ │ │ │ ├── func_common.inl │ │ │ │ │ ├── func_common_simd.inl │ │ │ │ │ ├── func_exponential.inl │ │ │ │ │ ├── func_exponential_simd.inl │ │ │ │ │ ├── func_geometric.inl │ │ │ │ │ ├── func_geometric_simd.inl │ │ │ │ │ ├── func_integer.inl │ │ │ │ │ ├── func_integer_simd.inl │ │ │ │ │ ├── func_matrix.inl │ │ │ │ │ ├── func_matrix_simd.inl │ │ │ │ │ ├── func_packing.inl │ │ │ │ │ ├── func_packing_simd.inl │ │ │ │ │ ├── func_trigonometric.inl │ │ │ │ │ ├── func_trigonometric_simd.inl │ │ │ │ │ ├── func_vector_relational.inl │ │ │ │ │ ├── func_vector_relational_simd.inl │ │ │ │ │ ├── glm.cpp │ │ │ │ │ ├── qualifier.hpp │ │ │ │ │ ├── setup.hpp │ │ │ │ │ ├── type_float.hpp │ │ │ │ │ ├── type_half.hpp │ │ │ │ │ ├── type_half.inl │ │ │ │ │ ├── type_mat2x2.hpp │ │ │ │ │ ├── type_mat2x2.inl │ │ │ │ │ ├── type_mat2x3.hpp │ │ │ │ │ ├── type_mat2x3.inl │ │ │ │ │ ├── type_mat2x4.hpp │ │ │ │ │ ├── type_mat2x4.inl │ │ │ │ │ ├── type_mat3x2.hpp │ │ │ │ │ ├── type_mat3x2.inl │ │ │ │ │ ├── type_mat3x3.hpp │ │ │ │ │ ├── type_mat3x3.inl │ │ │ │ │ ├── type_mat3x4.hpp │ │ │ │ │ ├── type_mat3x4.inl │ │ │ │ │ ├── type_mat4x2.hpp │ │ │ │ │ ├── type_mat4x2.inl │ │ │ │ │ ├── type_mat4x3.hpp │ │ │ │ │ ├── type_mat4x3.inl │ │ │ │ │ ├── type_mat4x4.hpp │ │ │ │ │ ├── type_mat4x4.inl │ │ │ │ │ ├── type_mat4x4_simd.inl │ │ │ │ │ ├── type_quat.hpp │ │ │ │ │ ├── type_quat.inl │ │ │ │ │ ├── type_quat_simd.inl │ │ │ │ │ ├── type_vec1.hpp │ │ │ │ │ ├── type_vec1.inl │ │ │ │ │ ├── type_vec2.hpp │ │ │ │ │ ├── type_vec2.inl │ │ │ │ │ ├── type_vec3.hpp │ │ │ │ │ ├── type_vec3.inl │ │ │ │ │ ├── type_vec4.hpp │ │ │ │ │ ├── type_vec4.inl │ │ │ │ │ └── type_vec4_simd.inl │ │ │ │ ├── exponential.hpp │ │ │ │ ├── ext.hpp │ │ │ │ ├── ext │ │ │ │ │ ├── _matrix_vectorize.hpp │ │ │ │ │ ├── matrix_clip_space.hpp │ │ │ │ │ ├── matrix_clip_space.inl │ │ │ │ │ ├── matrix_common.hpp │ │ │ │ │ ├── matrix_common.inl │ │ │ │ │ ├── matrix_double2x2.hpp │ │ │ │ │ ├── matrix_double2x2_precision.hpp │ │ │ │ │ ├── matrix_double2x3.hpp │ │ │ │ │ ├── matrix_double2x3_precision.hpp │ │ │ │ │ ├── matrix_double2x4.hpp │ │ │ │ │ ├── matrix_double2x4_precision.hpp │ │ │ │ │ ├── matrix_double3x2.hpp │ │ │ │ │ ├── matrix_double3x2_precision.hpp │ │ │ │ │ ├── matrix_double3x3.hpp │ │ │ │ │ ├── matrix_double3x3_precision.hpp │ │ │ │ │ ├── matrix_double3x4.hpp │ │ │ │ │ ├── matrix_double3x4_precision.hpp │ │ │ │ │ ├── matrix_double4x2.hpp │ │ │ │ │ ├── matrix_double4x2_precision.hpp │ │ │ │ │ ├── matrix_double4x3.hpp │ │ │ │ │ ├── matrix_double4x3_precision.hpp │ │ │ │ │ ├── matrix_double4x4.hpp │ │ │ │ │ ├── matrix_double4x4_precision.hpp │ │ │ │ │ ├── matrix_float2x2.hpp │ │ │ │ │ ├── matrix_float2x2_precision.hpp │ │ │ │ │ ├── matrix_float2x3.hpp │ │ │ │ │ ├── matrix_float2x3_precision.hpp │ │ │ │ │ ├── matrix_float2x4.hpp │ │ │ │ │ ├── matrix_float2x4_precision.hpp │ │ │ │ │ ├── matrix_float3x2.hpp │ │ │ │ │ ├── matrix_float3x2_precision.hpp │ │ │ │ │ ├── matrix_float3x3.hpp │ │ │ │ │ ├── matrix_float3x3_precision.hpp │ │ │ │ │ ├── matrix_float3x4.hpp │ │ │ │ │ ├── matrix_float3x4_precision.hpp │ │ │ │ │ ├── matrix_float4x2.hpp │ │ │ │ │ ├── matrix_float4x2_precision.hpp │ │ │ │ │ ├── matrix_float4x3.hpp │ │ │ │ │ ├── matrix_float4x3_precision.hpp │ │ │ │ │ ├── matrix_float4x4.hpp │ │ │ │ │ ├── matrix_float4x4_precision.hpp │ │ │ │ │ ├── matrix_int2x2.hpp │ │ │ │ │ ├── matrix_int2x2_sized.hpp │ │ │ │ │ ├── matrix_int2x3.hpp │ │ │ │ │ ├── matrix_int2x3_sized.hpp │ │ │ │ │ ├── matrix_int2x4.hpp │ │ │ │ │ ├── matrix_int2x4_sized.hpp │ │ │ │ │ ├── matrix_int3x2.hpp │ │ │ │ │ ├── matrix_int3x2_sized.hpp │ │ │ │ │ ├── matrix_int3x3.hpp │ │ │ │ │ ├── matrix_int3x3_sized.hpp │ │ │ │ │ ├── matrix_int3x4.hpp │ │ │ │ │ ├── matrix_int3x4_sized.hpp │ │ │ │ │ ├── matrix_int4x2.hpp │ │ │ │ │ ├── matrix_int4x2_sized.hpp │ │ │ │ │ ├── matrix_int4x3.hpp │ │ │ │ │ ├── matrix_int4x3_sized.hpp │ │ │ │ │ ├── matrix_int4x4.hpp │ │ │ │ │ ├── matrix_int4x4_sized.hpp │ │ │ │ │ ├── matrix_integer.hpp │ │ │ │ │ ├── matrix_integer.inl │ │ │ │ │ ├── matrix_projection.hpp │ │ │ │ │ ├── matrix_projection.inl │ │ │ │ │ ├── matrix_relational.hpp │ │ │ │ │ ├── matrix_relational.inl │ │ │ │ │ ├── matrix_transform.hpp │ │ │ │ │ ├── matrix_transform.inl │ │ │ │ │ ├── matrix_uint2x2.hpp │ │ │ │ │ ├── matrix_uint2x2_sized.hpp │ │ │ │ │ ├── matrix_uint2x3.hpp │ │ │ │ │ ├── matrix_uint2x3_sized.hpp │ │ │ │ │ ├── matrix_uint2x4.hpp │ │ │ │ │ ├── matrix_uint2x4_sized.hpp │ │ │ │ │ ├── matrix_uint3x2.hpp │ │ │ │ │ ├── matrix_uint3x2_sized.hpp │ │ │ │ │ ├── matrix_uint3x3.hpp │ │ │ │ │ ├── matrix_uint3x3_sized.hpp │ │ │ │ │ ├── matrix_uint3x4.hpp │ │ │ │ │ ├── matrix_uint3x4_sized.hpp │ │ │ │ │ ├── matrix_uint4x2.hpp │ │ │ │ │ ├── matrix_uint4x2_sized.hpp │ │ │ │ │ ├── matrix_uint4x3.hpp │ │ │ │ │ ├── matrix_uint4x3_sized.hpp │ │ │ │ │ ├── matrix_uint4x4.hpp │ │ │ │ │ ├── matrix_uint4x4_sized.hpp │ │ │ │ │ ├── quaternion_common.hpp │ │ │ │ │ ├── quaternion_common.inl │ │ │ │ │ ├── quaternion_common_simd.inl │ │ │ │ │ ├── quaternion_double.hpp │ │ │ │ │ ├── quaternion_double_precision.hpp │ │ │ │ │ ├── quaternion_exponential.hpp │ │ │ │ │ ├── quaternion_exponential.inl │ │ │ │ │ ├── quaternion_float.hpp │ │ │ │ │ ├── quaternion_float_precision.hpp │ │ │ │ │ ├── quaternion_geometric.hpp │ │ │ │ │ ├── quaternion_geometric.inl │ │ │ │ │ ├── quaternion_relational.hpp │ │ │ │ │ ├── quaternion_relational.inl │ │ │ │ │ ├── quaternion_transform.hpp │ │ │ │ │ ├── quaternion_transform.inl │ │ │ │ │ ├── quaternion_trigonometric.hpp │ │ │ │ │ ├── quaternion_trigonometric.inl │ │ │ │ │ ├── scalar_common.hpp │ │ │ │ │ ├── scalar_common.inl │ │ │ │ │ ├── scalar_constants.hpp │ │ │ │ │ ├── scalar_constants.inl │ │ │ │ │ ├── scalar_int_sized.hpp │ │ │ │ │ ├── scalar_integer.hpp │ │ │ │ │ ├── scalar_integer.inl │ │ │ │ │ ├── scalar_packing.hpp │ │ │ │ │ ├── scalar_packing.inl │ │ │ │ │ ├── scalar_reciprocal.hpp │ │ │ │ │ ├── scalar_reciprocal.inl │ │ │ │ │ ├── scalar_relational.hpp │ │ │ │ │ ├── scalar_relational.inl │ │ │ │ │ ├── scalar_uint_sized.hpp │ │ │ │ │ ├── scalar_ulp.hpp │ │ │ │ │ ├── scalar_ulp.inl │ │ │ │ │ ├── vector_bool1.hpp │ │ │ │ │ ├── vector_bool1_precision.hpp │ │ │ │ │ ├── vector_bool2.hpp │ │ │ │ │ ├── vector_bool2_precision.hpp │ │ │ │ │ ├── vector_bool3.hpp │ │ │ │ │ ├── vector_bool3_precision.hpp │ │ │ │ │ ├── vector_bool4.hpp │ │ │ │ │ ├── vector_bool4_precision.hpp │ │ │ │ │ ├── vector_common.hpp │ │ │ │ │ ├── vector_common.inl │ │ │ │ │ ├── vector_double1.hpp │ │ │ │ │ ├── vector_double1_precision.hpp │ │ │ │ │ ├── vector_double2.hpp │ │ │ │ │ ├── vector_double2_precision.hpp │ │ │ │ │ ├── vector_double3.hpp │ │ │ │ │ ├── vector_double3_precision.hpp │ │ │ │ │ ├── vector_double4.hpp │ │ │ │ │ ├── vector_double4_precision.hpp │ │ │ │ │ ├── vector_float1.hpp │ │ │ │ │ ├── vector_float1_precision.hpp │ │ │ │ │ ├── vector_float2.hpp │ │ │ │ │ ├── vector_float2_precision.hpp │ │ │ │ │ ├── vector_float3.hpp │ │ │ │ │ ├── vector_float3_precision.hpp │ │ │ │ │ ├── vector_float4.hpp │ │ │ │ │ ├── vector_float4_precision.hpp │ │ │ │ │ ├── vector_int1.hpp │ │ │ │ │ ├── vector_int1_sized.hpp │ │ │ │ │ ├── vector_int2.hpp │ │ │ │ │ ├── vector_int2_sized.hpp │ │ │ │ │ ├── vector_int3.hpp │ │ │ │ │ ├── vector_int3_sized.hpp │ │ │ │ │ ├── vector_int4.hpp │ │ │ │ │ ├── vector_int4_sized.hpp │ │ │ │ │ ├── vector_integer.hpp │ │ │ │ │ ├── vector_integer.inl │ │ │ │ │ ├── vector_packing.hpp │ │ │ │ │ ├── vector_packing.inl │ │ │ │ │ ├── vector_reciprocal.hpp │ │ │ │ │ ├── vector_reciprocal.inl │ │ │ │ │ ├── vector_relational.hpp │ │ │ │ │ ├── vector_relational.inl │ │ │ │ │ ├── vector_uint1.hpp │ │ │ │ │ ├── vector_uint1_sized.hpp │ │ │ │ │ ├── vector_uint2.hpp │ │ │ │ │ ├── vector_uint2_sized.hpp │ │ │ │ │ ├── vector_uint3.hpp │ │ │ │ │ ├── vector_uint3_sized.hpp │ │ │ │ │ ├── vector_uint4.hpp │ │ │ │ │ ├── vector_uint4_sized.hpp │ │ │ │ │ ├── vector_ulp.hpp │ │ │ │ │ └── vector_ulp.inl │ │ │ │ ├── fwd.hpp │ │ │ │ ├── geometric.hpp │ │ │ │ ├── glm.hpp │ │ │ │ ├── gtc │ │ │ │ │ ├── bitfield.hpp │ │ │ │ │ ├── bitfield.inl │ │ │ │ │ ├── color_space.hpp │ │ │ │ │ ├── color_space.inl │ │ │ │ │ ├── constants.hpp │ │ │ │ │ ├── constants.inl │ │ │ │ │ ├── epsilon.hpp │ │ │ │ │ ├── epsilon.inl │ │ │ │ │ ├── integer.hpp │ │ │ │ │ ├── integer.inl │ │ │ │ │ ├── matrix_access.hpp │ │ │ │ │ ├── matrix_access.inl │ │ │ │ │ ├── matrix_integer.hpp │ │ │ │ │ ├── matrix_inverse.hpp │ │ │ │ │ ├── matrix_inverse.inl │ │ │ │ │ ├── matrix_transform.hpp │ │ │ │ │ ├── matrix_transform.inl │ │ │ │ │ ├── noise.hpp │ │ │ │ │ ├── noise.inl │ │ │ │ │ ├── packing.hpp │ │ │ │ │ ├── packing.inl │ │ │ │ │ ├── quaternion.hpp │ │ │ │ │ ├── quaternion.inl │ │ │ │ │ ├── quaternion_simd.inl │ │ │ │ │ ├── random.hpp │ │ │ │ │ ├── random.inl │ │ │ │ │ ├── reciprocal.hpp │ │ │ │ │ ├── round.hpp │ │ │ │ │ ├── round.inl │ │ │ │ │ ├── type_aligned.hpp │ │ │ │ │ ├── type_precision.hpp │ │ │ │ │ ├── type_precision.inl │ │ │ │ │ ├── type_ptr.hpp │ │ │ │ │ ├── type_ptr.inl │ │ │ │ │ ├── ulp.hpp │ │ │ │ │ ├── ulp.inl │ │ │ │ │ └── vec1.hpp │ │ │ │ ├── gtx │ │ │ │ │ ├── associated_min_max.hpp │ │ │ │ │ ├── associated_min_max.inl │ │ │ │ │ ├── bit.hpp │ │ │ │ │ ├── bit.inl │ │ │ │ │ ├── closest_point.hpp │ │ │ │ │ ├── closest_point.inl │ │ │ │ │ ├── color_encoding.hpp │ │ │ │ │ ├── color_encoding.inl │ │ │ │ │ ├── color_space.hpp │ │ │ │ │ ├── color_space.inl │ │ │ │ │ ├── color_space_YCoCg.hpp │ │ │ │ │ ├── color_space_YCoCg.inl │ │ │ │ │ ├── common.hpp │ │ │ │ │ ├── common.inl │ │ │ │ │ ├── compatibility.hpp │ │ │ │ │ ├── compatibility.inl │ │ │ │ │ ├── component_wise.hpp │ │ │ │ │ ├── component_wise.inl │ │ │ │ │ ├── dual_quaternion.hpp │ │ │ │ │ ├── dual_quaternion.inl │ │ │ │ │ ├── easing.hpp │ │ │ │ │ ├── easing.inl │ │ │ │ │ ├── euler_angles.hpp │ │ │ │ │ ├── euler_angles.inl │ │ │ │ │ ├── extend.hpp │ │ │ │ │ ├── extend.inl │ │ │ │ │ ├── extended_min_max.hpp │ │ │ │ │ ├── extended_min_max.inl │ │ │ │ │ ├── exterior_product.hpp │ │ │ │ │ ├── exterior_product.inl │ │ │ │ │ ├── fast_exponential.hpp │ │ │ │ │ ├── fast_exponential.inl │ │ │ │ │ ├── fast_square_root.hpp │ │ │ │ │ ├── fast_square_root.inl │ │ │ │ │ ├── fast_trigonometry.hpp │ │ │ │ │ ├── fast_trigonometry.inl │ │ │ │ │ ├── float_notmalize.inl │ │ │ │ │ ├── functions.hpp │ │ │ │ │ ├── functions.inl │ │ │ │ │ ├── gradient_paint.hpp │ │ │ │ │ ├── gradient_paint.inl │ │ │ │ │ ├── handed_coordinate_space.hpp │ │ │ │ │ ├── handed_coordinate_space.inl │ │ │ │ │ ├── hash.hpp │ │ │ │ │ ├── hash.inl │ │ │ │ │ ├── integer.hpp │ │ │ │ │ ├── integer.inl │ │ │ │ │ ├── intersect.hpp │ │ │ │ │ ├── intersect.inl │ │ │ │ │ ├── io.hpp │ │ │ │ │ ├── io.inl │ │ │ │ │ ├── log_base.hpp │ │ │ │ │ ├── log_base.inl │ │ │ │ │ ├── matrix_cross_product.hpp │ │ │ │ │ ├── matrix_cross_product.inl │ │ │ │ │ ├── matrix_decompose.hpp │ │ │ │ │ ├── matrix_decompose.inl │ │ │ │ │ ├── matrix_factorisation.hpp │ │ │ │ │ ├── matrix_factorisation.inl │ │ │ │ │ ├── matrix_interpolation.hpp │ │ │ │ │ ├── matrix_interpolation.inl │ │ │ │ │ ├── matrix_major_storage.hpp │ │ │ │ │ ├── matrix_major_storage.inl │ │ │ │ │ ├── matrix_operation.hpp │ │ │ │ │ ├── matrix_operation.inl │ │ │ │ │ ├── matrix_query.hpp │ │ │ │ │ ├── matrix_query.inl │ │ │ │ │ ├── matrix_transform_2d.hpp │ │ │ │ │ ├── matrix_transform_2d.inl │ │ │ │ │ ├── mixed_product.hpp │ │ │ │ │ ├── mixed_product.inl │ │ │ │ │ ├── norm.hpp │ │ │ │ │ ├── norm.inl │ │ │ │ │ ├── normal.hpp │ │ │ │ │ ├── normal.inl │ │ │ │ │ ├── normalize_dot.hpp │ │ │ │ │ ├── normalize_dot.inl │ │ │ │ │ ├── number_precision.hpp │ │ │ │ │ ├── number_precision.inl │ │ │ │ │ ├── optimum_pow.hpp │ │ │ │ │ ├── optimum_pow.inl │ │ │ │ │ ├── orthonormalize.hpp │ │ │ │ │ ├── orthonormalize.inl │ │ │ │ │ ├── pca.hpp │ │ │ │ │ ├── pca.inl │ │ │ │ │ ├── perpendicular.hpp │ │ │ │ │ ├── perpendicular.inl │ │ │ │ │ ├── polar_coordinates.hpp │ │ │ │ │ ├── polar_coordinates.inl │ │ │ │ │ ├── projection.hpp │ │ │ │ │ ├── projection.inl │ │ │ │ │ ├── quaternion.hpp │ │ │ │ │ ├── quaternion.inl │ │ │ │ │ ├── range.hpp │ │ │ │ │ ├── raw_data.hpp │ │ │ │ │ ├── raw_data.inl │ │ │ │ │ ├── rotate_normalized_axis.hpp │ │ │ │ │ ├── rotate_normalized_axis.inl │ │ │ │ │ ├── rotate_vector.hpp │ │ │ │ │ ├── rotate_vector.inl │ │ │ │ │ ├── scalar_multiplication.hpp │ │ │ │ │ ├── scalar_relational.hpp │ │ │ │ │ ├── scalar_relational.inl │ │ │ │ │ ├── spline.hpp │ │ │ │ │ ├── spline.inl │ │ │ │ │ ├── std_based_type.hpp │ │ │ │ │ ├── std_based_type.inl │ │ │ │ │ ├── string_cast.hpp │ │ │ │ │ ├── string_cast.inl │ │ │ │ │ ├── texture.hpp │ │ │ │ │ ├── texture.inl │ │ │ │ │ ├── transform.hpp │ │ │ │ │ ├── transform.inl │ │ │ │ │ ├── transform2.hpp │ │ │ │ │ ├── transform2.inl │ │ │ │ │ ├── type_aligned.hpp │ │ │ │ │ ├── type_aligned.inl │ │ │ │ │ ├── type_trait.hpp │ │ │ │ │ ├── type_trait.inl │ │ │ │ │ ├── vec_swizzle.hpp │ │ │ │ │ ├── vector_angle.hpp │ │ │ │ │ ├── vector_angle.inl │ │ │ │ │ ├── vector_query.hpp │ │ │ │ │ ├── vector_query.inl │ │ │ │ │ ├── wrap.hpp │ │ │ │ │ └── wrap.inl │ │ │ │ ├── integer.hpp │ │ │ │ ├── mat2x2.hpp │ │ │ │ ├── mat2x3.hpp │ │ │ │ ├── mat2x4.hpp │ │ │ │ ├── mat3x2.hpp │ │ │ │ ├── mat3x3.hpp │ │ │ │ ├── mat3x4.hpp │ │ │ │ ├── mat4x2.hpp │ │ │ │ ├── mat4x3.hpp │ │ │ │ ├── mat4x4.hpp │ │ │ │ ├── matrix.hpp │ │ │ │ ├── packing.hpp │ │ │ │ ├── simd │ │ │ │ │ ├── common.h │ │ │ │ │ ├── exponential.h │ │ │ │ │ ├── geometric.h │ │ │ │ │ ├── integer.h │ │ │ │ │ ├── matrix.h │ │ │ │ │ ├── neon.h │ │ │ │ │ ├── packing.h │ │ │ │ │ ├── platform.h │ │ │ │ │ ├── trigonometric.h │ │ │ │ │ └── vector_relational.h │ │ │ │ ├── trigonometric.hpp │ │ │ │ ├── vec2.hpp │ │ │ │ ├── vec3.hpp │ │ │ │ ├── vec4.hpp │ │ │ │ └── vector_relational.hpp │ │ │ ├── manual.md │ │ │ ├── readme.md │ │ │ ├── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bug │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── bug_ms_vec_static.cpp │ │ │ │ ├── cmake │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_find_glm.cpp │ │ │ │ ├── core │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── core_cpp_constexpr.cpp │ │ │ │ │ ├── core_cpp_defaulted_ctor.cpp │ │ │ │ │ ├── core_force_aligned_gentypes.cpp │ │ │ │ │ ├── core_force_arch_unknown.cpp │ │ │ │ │ ├── core_force_compiler_unknown.cpp │ │ │ │ │ ├── core_force_ctor_init.cpp │ │ │ │ │ ├── core_force_cxx03.cpp │ │ │ │ │ ├── core_force_cxx98.cpp │ │ │ │ │ ├── core_force_cxx_unknown.cpp │ │ │ │ │ ├── core_force_depth_zero_to_one.cpp │ │ │ │ │ ├── core_force_explicit_ctor.cpp │ │ │ │ │ ├── core_force_inline.cpp │ │ │ │ │ ├── core_force_left_handed.cpp │ │ │ │ │ ├── core_force_platform_unknown.cpp │ │ │ │ │ ├── core_force_pure.cpp │ │ │ │ │ ├── core_force_quat_xyzw.cpp │ │ │ │ │ ├── core_force_size_t_length.cpp │ │ │ │ │ ├── core_force_unrestricted_gentype.cpp │ │ │ │ │ ├── core_force_xyzw_only.cpp │ │ │ │ │ ├── core_func_common.cpp │ │ │ │ │ ├── core_func_exponential.cpp │ │ │ │ │ ├── core_func_geometric.cpp │ │ │ │ │ ├── core_func_integer.cpp │ │ │ │ │ ├── core_func_integer_bit_count.cpp │ │ │ │ │ ├── core_func_integer_find_lsb.cpp │ │ │ │ │ ├── core_func_integer_find_msb.cpp │ │ │ │ │ ├── core_func_matrix.cpp │ │ │ │ │ ├── core_func_noise.cpp │ │ │ │ │ ├── core_func_packing.cpp │ │ │ │ │ ├── core_func_swizzle.cpp │ │ │ │ │ ├── core_func_trigonometric.cpp │ │ │ │ │ ├── core_func_vector_relational.cpp │ │ │ │ │ ├── core_setup_force_cxx98.cpp │ │ │ │ │ ├── core_setup_force_size_t_length.cpp │ │ │ │ │ ├── core_setup_message.cpp │ │ │ │ │ ├── core_setup_platform_unknown.cpp │ │ │ │ │ ├── core_setup_precision.cpp │ │ │ │ │ ├── core_type_aligned.cpp │ │ │ │ │ ├── core_type_cast.cpp │ │ │ │ │ ├── core_type_ctor.cpp │ │ │ │ │ ├── core_type_int.cpp │ │ │ │ │ ├── core_type_length.cpp │ │ │ │ │ ├── core_type_mat2x2.cpp │ │ │ │ │ ├── core_type_mat2x3.cpp │ │ │ │ │ ├── core_type_mat2x4.cpp │ │ │ │ │ ├── core_type_mat3x2.cpp │ │ │ │ │ ├── core_type_mat3x3.cpp │ │ │ │ │ ├── core_type_mat3x4.cpp │ │ │ │ │ ├── core_type_mat4x2.cpp │ │ │ │ │ ├── core_type_mat4x3.cpp │ │ │ │ │ ├── core_type_mat4x4.cpp │ │ │ │ │ ├── core_type_vec1.cpp │ │ │ │ │ ├── core_type_vec2.cpp │ │ │ │ │ ├── core_type_vec3.cpp │ │ │ │ │ └── core_type_vec4.cpp │ │ │ │ ├── ext │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ext_matrix_clip_space.cpp │ │ │ │ │ ├── ext_matrix_common.cpp │ │ │ │ │ ├── ext_matrix_int2x2_sized.cpp │ │ │ │ │ ├── ext_matrix_int2x3_sized.cpp │ │ │ │ │ ├── ext_matrix_int2x4_sized.cpp │ │ │ │ │ ├── ext_matrix_int3x2_sized.cpp │ │ │ │ │ ├── ext_matrix_int3x3_sized.cpp │ │ │ │ │ ├── ext_matrix_int3x4_sized.cpp │ │ │ │ │ ├── ext_matrix_int4x2_sized.cpp │ │ │ │ │ ├── ext_matrix_int4x3_sized.cpp │ │ │ │ │ ├── ext_matrix_int4x4_sized.cpp │ │ │ │ │ ├── ext_matrix_integer.cpp │ │ │ │ │ ├── ext_matrix_projection.cpp │ │ │ │ │ ├── ext_matrix_relational.cpp │ │ │ │ │ ├── ext_matrix_transform.cpp │ │ │ │ │ ├── ext_matrix_uint2x2_sized.cpp │ │ │ │ │ ├── ext_matrix_uint2x3_sized.cpp │ │ │ │ │ ├── ext_matrix_uint2x4_sized.cpp │ │ │ │ │ ├── ext_matrix_uint3x2_sized.cpp │ │ │ │ │ ├── ext_matrix_uint3x3_sized.cpp │ │ │ │ │ ├── ext_matrix_uint3x4_sized.cpp │ │ │ │ │ ├── ext_matrix_uint4x2_sized.cpp │ │ │ │ │ ├── ext_matrix_uint4x3_sized.cpp │ │ │ │ │ ├── ext_matrix_uint4x4_sized.cpp │ │ │ │ │ ├── ext_quaternion_common.cpp │ │ │ │ │ ├── ext_quaternion_exponential.cpp │ │ │ │ │ ├── ext_quaternion_geometric.cpp │ │ │ │ │ ├── ext_quaternion_relational.cpp │ │ │ │ │ ├── ext_quaternion_transform.cpp │ │ │ │ │ ├── ext_quaternion_trigonometric.cpp │ │ │ │ │ ├── ext_quaternion_type.cpp │ │ │ │ │ ├── ext_scalar_common.cpp │ │ │ │ │ ├── ext_scalar_constants.cpp │ │ │ │ │ ├── ext_scalar_int_sized.cpp │ │ │ │ │ ├── ext_scalar_integer.cpp │ │ │ │ │ ├── ext_scalar_packing.cpp │ │ │ │ │ ├── ext_scalar_reciprocal.cpp │ │ │ │ │ ├── ext_scalar_relational.cpp │ │ │ │ │ ├── ext_scalar_uint_sized.cpp │ │ │ │ │ ├── ext_scalar_ulp.cpp │ │ │ │ │ ├── ext_vec1.cpp │ │ │ │ │ ├── ext_vector_bool1.cpp │ │ │ │ │ ├── ext_vector_common.cpp │ │ │ │ │ ├── ext_vector_iec559.cpp │ │ │ │ │ ├── ext_vector_int1_sized.cpp │ │ │ │ │ ├── ext_vector_int2_sized.cpp │ │ │ │ │ ├── ext_vector_int3_sized.cpp │ │ │ │ │ ├── ext_vector_int4_sized.cpp │ │ │ │ │ ├── ext_vector_integer.cpp │ │ │ │ │ ├── ext_vector_integer_sized.cpp │ │ │ │ │ ├── ext_vector_packing.cpp │ │ │ │ │ ├── ext_vector_reciprocal.cpp │ │ │ │ │ ├── ext_vector_relational.cpp │ │ │ │ │ ├── ext_vector_uint1_sized.cpp │ │ │ │ │ ├── ext_vector_uint2_sized.cpp │ │ │ │ │ ├── ext_vector_uint3_sized.cpp │ │ │ │ │ ├── ext_vector_uint4_sized.cpp │ │ │ │ │ └── ext_vector_ulp.cpp │ │ │ │ ├── glm.cppcheck.xml │ │ │ │ ├── gtc │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── gtc_bitfield.cpp │ │ │ │ │ ├── gtc_color_space.cpp │ │ │ │ │ ├── gtc_constants.cpp │ │ │ │ │ ├── gtc_epsilon.cpp │ │ │ │ │ ├── gtc_integer.cpp │ │ │ │ │ ├── gtc_matrix_access.cpp │ │ │ │ │ ├── gtc_matrix_integer.cpp │ │ │ │ │ ├── gtc_matrix_inverse.cpp │ │ │ │ │ ├── gtc_matrix_transform.cpp │ │ │ │ │ ├── gtc_noise.cpp │ │ │ │ │ ├── gtc_packing.cpp │ │ │ │ │ ├── gtc_quaternion.cpp │ │ │ │ │ ├── gtc_random.cpp │ │ │ │ │ ├── gtc_reciprocal.cpp │ │ │ │ │ ├── gtc_round.cpp │ │ │ │ │ ├── gtc_type_aligned.cpp │ │ │ │ │ ├── gtc_type_precision.cpp │ │ │ │ │ ├── gtc_type_ptr.cpp │ │ │ │ │ ├── gtc_ulp.cpp │ │ │ │ │ ├── gtc_user_defined_types.cpp │ │ │ │ │ └── gtc_vec1.cpp │ │ │ │ ├── gtx │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── gtx.cpp │ │ │ │ │ ├── gtx_associated_min_max.cpp │ │ │ │ │ ├── gtx_closest_point.cpp │ │ │ │ │ ├── gtx_color_encoding.cpp │ │ │ │ │ ├── gtx_color_space.cpp │ │ │ │ │ ├── gtx_color_space_YCoCg.cpp │ │ │ │ │ ├── gtx_common.cpp │ │ │ │ │ ├── gtx_compatibility.cpp │ │ │ │ │ ├── gtx_component_wise.cpp │ │ │ │ │ ├── gtx_dual_quaternion.cpp │ │ │ │ │ ├── gtx_easing.cpp │ │ │ │ │ ├── gtx_euler_angle.cpp │ │ │ │ │ ├── gtx_extend.cpp │ │ │ │ │ ├── gtx_extended_min_max.cpp │ │ │ │ │ ├── gtx_extented_min_max.cpp │ │ │ │ │ ├── gtx_exterior_product.cpp │ │ │ │ │ ├── gtx_fast_exponential.cpp │ │ │ │ │ ├── gtx_fast_square_root.cpp │ │ │ │ │ ├── gtx_fast_trigonometry.cpp │ │ │ │ │ ├── gtx_functions.cpp │ │ │ │ │ ├── gtx_gradient_paint.cpp │ │ │ │ │ ├── gtx_handed_coordinate_space.cpp │ │ │ │ │ ├── gtx_hash.cpp │ │ │ │ │ ├── gtx_int_10_10_10_2.cpp │ │ │ │ │ ├── gtx_integer.cpp │ │ │ │ │ ├── gtx_intersect.cpp │ │ │ │ │ ├── gtx_io.cpp │ │ │ │ │ ├── gtx_load.cpp │ │ │ │ │ ├── gtx_log_base.cpp │ │ │ │ │ ├── gtx_matrix_cross_product.cpp │ │ │ │ │ ├── gtx_matrix_decompose.cpp │ │ │ │ │ ├── gtx_matrix_factorisation.cpp │ │ │ │ │ ├── gtx_matrix_interpolation.cpp │ │ │ │ │ ├── gtx_matrix_major_storage.cpp │ │ │ │ │ ├── gtx_matrix_operation.cpp │ │ │ │ │ ├── gtx_matrix_query.cpp │ │ │ │ │ ├── gtx_matrix_transform_2d.cpp │ │ │ │ │ ├── gtx_mixed_product.cpp │ │ │ │ │ ├── gtx_norm.cpp │ │ │ │ │ ├── gtx_normal.cpp │ │ │ │ │ ├── gtx_normalize_dot.cpp │ │ │ │ │ ├── gtx_number_precision.cpp │ │ │ │ │ ├── gtx_optimum_pow.cpp │ │ │ │ │ ├── gtx_orthonormalize.cpp │ │ │ │ │ ├── gtx_pca.cpp │ │ │ │ │ ├── gtx_perpendicular.cpp │ │ │ │ │ ├── gtx_polar_coordinates.cpp │ │ │ │ │ ├── gtx_projection.cpp │ │ │ │ │ ├── gtx_quaternion.cpp │ │ │ │ │ ├── gtx_random.cpp │ │ │ │ │ ├── gtx_range.cpp │ │ │ │ │ ├── gtx_rotate_normalized_axis.cpp │ │ │ │ │ ├── gtx_rotate_vector.cpp │ │ │ │ │ ├── gtx_scalar_multiplication.cpp │ │ │ │ │ ├── gtx_scalar_relational.cpp │ │ │ │ │ ├── gtx_simd_mat4.cpp │ │ │ │ │ ├── gtx_simd_vec4.cpp │ │ │ │ │ ├── gtx_spline.cpp │ │ │ │ │ ├── gtx_string_cast.cpp │ │ │ │ │ ├── gtx_texture.cpp │ │ │ │ │ ├── gtx_type_aligned.cpp │ │ │ │ │ ├── gtx_type_trait.cpp │ │ │ │ │ ├── gtx_vec_swizzle.cpp │ │ │ │ │ ├── gtx_vector_angle.cpp │ │ │ │ │ ├── gtx_vector_query.cpp │ │ │ │ │ └── gtx_wrap.cpp │ │ │ │ └── perf │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── perf_matrix_div.cpp │ │ │ │ │ ├── perf_matrix_inverse.cpp │ │ │ │ │ ├── perf_matrix_mul.cpp │ │ │ │ │ ├── perf_matrix_mul_vector.cpp │ │ │ │ │ ├── perf_matrix_transpose.cpp │ │ │ │ │ └── perf_vector_mul_matrix.cpp │ │ │ └── util │ │ │ │ ├── autoexp.txt │ │ │ │ ├── autoexp.vc2010.dat │ │ │ │ ├── glm.natvis │ │ │ │ └── usertype.dat │ │ │ └── stbi_image_write.h │ └── simple-knn │ │ ├── ext.cpp │ │ ├── setup.py │ │ ├── simple_knn.cu │ │ ├── simple_knn.h │ │ ├── simple_knn │ │ ├── .gitkeep │ │ └── _C.cpython-39-x86_64-linux-gnu.so │ │ ├── spatial.cu │ │ └── spatial.h ├── train.py └── utils │ ├── camera_utils.py │ ├── general_utils.py │ ├── graphics_utils.py │ ├── image_utils.py │ ├── loss_utils.py │ ├── sh_utils.py │ └── system_utils.py ├── gs_simulation.py ├── gs_simulation_multiobject.py ├── mpm_solver_warp ├── .gitignore ├── README.md ├── engine_utils.py ├── mpm_solver_warp.py ├── mpm_utils.py ├── run_sand.py ├── sand_column.h5 └── warp_utils.py ├── organize_code ├── GaussianSplattingLightning │ ├── .gitignore │ ├── .gitmodules │ ├── LICENSE.md │ ├── README.md │ ├── configs │ │ ├── .gitignore │ │ ├── appearance.yaml │ │ ├── background_sphere-cameras_center-random_background.yaml │ │ ├── background_sphere.yaml │ │ ├── blender.yaml │ │ ├── blender_gsplat.yaml │ │ ├── colmap_exp.yaml │ │ ├── ddp.yaml │ │ ├── ddp_not_find_unused.yaml │ │ ├── deformable_6dof_blender.yaml │ │ ├── deformable_6dof_real.yaml │ │ ├── deformable_blender.yaml │ │ ├── deformable_blender_rotate_xyz.yaml │ │ ├── deformable_real.yaml │ │ ├── distributed.yaml │ │ ├── gsplat-absgrad-experiment.yaml │ │ ├── gsplat-absgrad.yaml │ │ ├── gsplat-matrixcity-aerial.yaml │ │ ├── gsplat-matrixcity-aerial_street-example.yaml │ │ ├── gsplat-mcmc.yaml │ │ ├── gsplat.yaml │ │ ├── image_on_gpu.yaml │ │ ├── larger_dataset.yaml │ │ ├── light_gaussian │ │ │ ├── prune_finetune-gsplat-experiment.yaml │ │ │ ├── prune_finetune-gsplat.yaml │ │ │ ├── prune_finetune.yaml │ │ │ ├── train_densify_prune-gsplat-experiment.yaml │ │ │ └── train_densify_prune-gsplat.yaml │ │ ├── mcmc.yaml │ │ ├── mip_splatting_gsplat.yaml │ │ ├── pypreprocess_gsplat.yaml │ │ ├── random_background.yaml │ │ ├── reorient.yaml │ │ ├── segany_splatting.yaml │ │ ├── swag_baseline.yaml │ │ └── vanilla_2dgs.yaml │ ├── convert.py │ ├── internal │ │ ├── __init__.py │ │ ├── callbacks.py │ │ ├── cameras │ │ │ ├── __init__.py │ │ │ └── cameras.py │ │ ├── cli.py │ │ ├── configs │ │ │ ├── .gitignore │ │ │ ├── __init__.py │ │ │ ├── appearance.py │ │ │ ├── dataset.py │ │ │ ├── instantiate_config.py │ │ │ ├── light_gaussian.py │ │ │ ├── model.py │ │ │ ├── optimization.py │ │ │ ├── segany_splatting.py │ │ │ └── tcnn_encoding_config.py │ │ ├── dataparsers │ │ │ ├── MatrixCity.md │ │ │ ├── __init__.py │ │ │ ├── blender_dataparser.py │ │ │ ├── colmap_dataparser.py │ │ │ ├── dataparser.py │ │ │ ├── feature_3dgs_dataparser.py │ │ │ ├── matrix_city_dataparser.py │ │ │ ├── nerfies_dataparser.py │ │ │ ├── ngp_dataparser.py │ │ │ ├── nsvf_dataparser.py │ │ │ ├── phototourism_dataparser.py │ │ │ └── segany_colmap_dataparser.py │ │ ├── dataset.py │ │ ├── density_controllers │ │ │ ├── __init__.py │ │ │ ├── density_controller.py │ │ │ ├── distributed_vanilla_density_controller.py │ │ │ ├── mcmc_density_controller.py │ │ │ ├── static_density_controller.py │ │ │ └── vanilla_density_controller.py │ │ ├── encodings │ │ │ ├── __init__.py │ │ │ └── positional_encoding.py │ │ ├── gaussian_splatting.py │ │ ├── metrics │ │ │ ├── __init__.py │ │ │ ├── feature_3dgs_metrics.py │ │ │ ├── gs2d_metrics.py │ │ │ ├── mcmc_metrics.py │ │ │ ├── metric.py │ │ │ ├── vanilla_metrics.py │ │ │ └── visibility_map_metrics.py │ │ ├── model_components │ │ │ ├── __init__.py │ │ │ ├── gs4d_deformation.py │ │ │ ├── gs4d_grid.py │ │ │ └── gs4d_hexplane.py │ │ ├── models │ │ │ ├── .gitignore │ │ │ ├── __init__.py │ │ │ ├── appearance_model.py │ │ │ ├── deform_model.py │ │ │ ├── gaussian_model.py │ │ │ ├── gaussian_model_simplified.py │ │ │ ├── simplified_gaussian_model_manager.py │ │ │ ├── swag_model.py │ │ │ └── vanilla_deform_model.py │ │ ├── mp_strategy.py │ │ ├── renderers │ │ │ ├── .gitignore │ │ │ ├── __init__.py │ │ │ ├── appearance_mlp_renderer.py │ │ │ ├── deformable_renderer.py │ │ │ ├── feature_3dgs_renderer.py │ │ │ ├── gsplat_appearance_embedding_renderer.py │ │ │ ├── gsplat_appearance_embedding_visibility_map_renderer.py │ │ │ ├── gsplat_contrastive_feature_renderer.py │ │ │ ├── gsplat_distributed_renderer.py │ │ │ ├── gsplat_hit_pixel_count_renderer.py │ │ │ ├── gsplat_renderer.py │ │ │ ├── mip_splatting_gsplat_renderer.py │ │ │ ├── pypreprocess_gsplat_renderer.py │ │ │ ├── renderer.py │ │ │ ├── rgb_mlp_renderer.py │ │ │ ├── seganygs_renderer.py │ │ │ ├── swag_renderer.py │ │ │ ├── vanilla_2dgs_renderer.py │ │ │ ├── vanilla_deformable_renderer.py │ │ │ ├── vanilla_gs4d_renderer.py │ │ │ └── vanilla_renderer.py │ │ ├── segany_splatting.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── camera.py │ │ │ ├── colmap.py │ │ │ ├── common.py │ │ │ ├── edition.py │ │ │ ├── gaussian_model_loader.py │ │ │ ├── gaussian_projection.py │ │ │ ├── gaussian_utils.py │ │ │ ├── general_utils.py │ │ │ ├── graphics_utils.py │ │ │ ├── light_gaussian.py │ │ │ ├── network_factory.py │ │ │ ├── rigid_utils.py │ │ │ ├── rotation.py │ │ │ ├── seganygs.py │ │ │ ├── sh_utils.py │ │ │ ├── ssim.py │ │ │ └── visualizers.py │ │ └── viewer │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── renderer.py │ │ │ ├── training_viewer.py │ │ │ └── ui │ │ │ ├── __init__.py │ │ │ ├── edit_panel.py │ │ │ ├── render_panel.py │ │ │ ├── transform_panel.py │ │ │ └── up_direction_folder.py │ ├── main.py │ ├── notebooks │ │ ├── colmap_aerial_split.ipynb │ │ ├── gsplat.ipynb │ │ ├── matrix_city_aerial_split.ipynb │ │ ├── merge_partitions.ipynb │ │ ├── partition_light_gaussian_pruning.ipynb │ │ ├── preprocess.ipynb │ │ ├── prompt_segmenting.ipynb │ │ └── rotate_shs.ipynb │ ├── render.py │ ├── requirements.txt │ ├── rotate_gaussians.py │ ├── run.sh │ ├── seganygs.py │ ├── submodules │ │ ├── README.md │ │ ├── diff-gaussian-rasterization │ │ │ ├── .gitignore │ │ │ ├── .gitmodules │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── cuda_rasterizer │ │ │ │ ├── auxiliary.h │ │ │ │ ├── backward.cu │ │ │ │ ├── backward.h │ │ │ │ ├── config.h │ │ │ │ ├── forward.cu │ │ │ │ ├── forward.h │ │ │ │ ├── rasterizer.h │ │ │ │ ├── rasterizer_impl.cu │ │ │ │ └── rasterizer_impl.h │ │ │ ├── diff_gaussian_rasterization │ │ │ │ └── __init__.py │ │ │ ├── ext.cpp │ │ │ ├── rasterize_points.cu │ │ │ ├── rasterize_points.h │ │ │ ├── setup.py │ │ │ └── third_party │ │ │ │ ├── glm │ │ │ │ ├── .appveyor.yml │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── cmake │ │ │ │ │ └── cmake_uninstall.cmake.in │ │ │ │ ├── copying.txt │ │ │ │ ├── doc │ │ │ │ │ ├── api │ │ │ │ │ │ ├── a00001_source.html │ │ │ │ │ │ ├── a00002_source.html │ │ │ │ │ │ ├── a00003_source.html │ │ │ │ │ │ ├── a00004_source.html │ │ │ │ │ │ ├── a00005_source.html │ │ │ │ │ │ ├── a00006_source.html │ │ │ │ │ │ ├── a00007.html │ │ │ │ │ │ ├── a00007_source.html │ │ │ │ │ │ ├── a00008.html │ │ │ │ │ │ ├── a00008_source.html │ │ │ │ │ │ ├── a00009.html │ │ │ │ │ │ ├── a00009_source.html │ │ │ │ │ │ ├── a00010.html │ │ │ │ │ │ ├── a00010_source.html │ │ │ │ │ │ ├── a00011.html │ │ │ │ │ │ ├── a00011_source.html │ │ │ │ │ │ ├── a00012.html │ │ │ │ │ │ ├── a00012_source.html │ │ │ │ │ │ ├── a00013.html │ │ │ │ │ │ ├── a00013_source.html │ │ │ │ │ │ ├── a00014.html │ │ │ │ │ │ ├── a00014_source.html │ │ │ │ │ │ ├── a00015.html │ │ │ │ │ │ ├── a00015_source.html │ │ │ │ │ │ ├── a00016.html │ │ │ │ │ │ ├── a00016_source.html │ │ │ │ │ │ ├── a00017.html │ │ │ │ │ │ ├── a00017_source.html │ │ │ │ │ │ ├── a00018.html │ │ │ │ │ │ ├── a00018_source.html │ │ │ │ │ │ ├── a00019_source.html │ │ │ │ │ │ ├── a00020_source.html │ │ │ │ │ │ ├── a00021.html │ │ │ │ │ │ ├── a00021_source.html │ │ │ │ │ │ ├── a00022.html │ │ │ │ │ │ ├── a00022_source.html │ │ │ │ │ │ ├── a00023.html │ │ │ │ │ │ ├── a00023_source.html │ │ │ │ │ │ ├── a00024.html │ │ │ │ │ │ ├── a00024_source.html │ │ │ │ │ │ ├── a00025.html │ │ │ │ │ │ ├── a00025_source.html │ │ │ │ │ │ ├── a00026.html │ │ │ │ │ │ ├── a00026_source.html │ │ │ │ │ │ ├── a00027.html │ │ │ │ │ │ ├── a00027_source.html │ │ │ │ │ │ ├── a00028.html │ │ │ │ │ │ ├── a00028_source.html │ │ │ │ │ │ ├── a00029.html │ │ │ │ │ │ ├── a00029_source.html │ │ │ │ │ │ ├── a00030.html │ │ │ │ │ │ ├── a00030_source.html │ │ │ │ │ │ ├── a00031.html │ │ │ │ │ │ ├── a00031_source.html │ │ │ │ │ │ ├── a00032.html │ │ │ │ │ │ ├── a00032_source.html │ │ │ │ │ │ ├── a00033.html │ │ │ │ │ │ ├── a00033_source.html │ │ │ │ │ │ ├── a00034.html │ │ │ │ │ │ ├── a00034_source.html │ │ │ │ │ │ ├── a00035_source.html │ │ │ │ │ │ ├── a00036.html │ │ │ │ │ │ ├── a00036_source.html │ │ │ │ │ │ ├── a00037.html │ │ │ │ │ │ ├── a00037_source.html │ │ │ │ │ │ ├── a00038.html │ │ │ │ │ │ ├── a00038_source.html │ │ │ │ │ │ ├── a00039.html │ │ │ │ │ │ ├── a00039_source.html │ │ │ │ │ │ ├── a00040.html │ │ │ │ │ │ ├── a00040_source.html │ │ │ │ │ │ ├── a00041.html │ │ │ │ │ │ ├── a00041_source.html │ │ │ │ │ │ ├── a00042.html │ │ │ │ │ │ ├── a00042_source.html │ │ │ │ │ │ ├── a00043.html │ │ │ │ │ │ ├── a00043_source.html │ │ │ │ │ │ ├── a00044.html │ │ │ │ │ │ ├── a00044_source.html │ │ │ │ │ │ ├── a00045.html │ │ │ │ │ │ ├── a00045_source.html │ │ │ │ │ │ ├── a00046.html │ │ │ │ │ │ ├── a00046_source.html │ │ │ │ │ │ ├── a00047_source.html │ │ │ │ │ │ ├── a00048.html │ │ │ │ │ │ ├── a00048_source.html │ │ │ │ │ │ ├── a00049.html │ │ │ │ │ │ ├── a00049_source.html │ │ │ │ │ │ ├── a00050.html │ │ │ │ │ │ ├── a00050_source.html │ │ │ │ │ │ ├── a00051.html │ │ │ │ │ │ ├── a00051_source.html │ │ │ │ │ │ ├── a00052.html │ │ │ │ │ │ ├── a00052_source.html │ │ │ │ │ │ ├── a00053.html │ │ │ │ │ │ ├── a00053_source.html │ │ │ │ │ │ ├── a00054.html │ │ │ │ │ │ ├── a00054_source.html │ │ │ │ │ │ ├── a00055.html │ │ │ │ │ │ ├── a00055_source.html │ │ │ │ │ │ ├── a00056.html │ │ │ │ │ │ ├── a00056_source.html │ │ │ │ │ │ ├── a00057.html │ │ │ │ │ │ ├── a00057_source.html │ │ │ │ │ │ ├── a00058.html │ │ │ │ │ │ ├── a00058_source.html │ │ │ │ │ │ ├── a00059.html │ │ │ │ │ │ ├── a00059_source.html │ │ │ │ │ │ ├── a00060.html │ │ │ │ │ │ ├── a00060_source.html │ │ │ │ │ │ ├── a00061.html │ │ │ │ │ │ ├── a00061_source.html │ │ │ │ │ │ ├── a00062.html │ │ │ │ │ │ ├── a00062_source.html │ │ │ │ │ │ ├── a00063.html │ │ │ │ │ │ ├── a00063_source.html │ │ │ │ │ │ ├── a00064.html │ │ │ │ │ │ ├── a00064_source.html │ │ │ │ │ │ ├── a00065.html │ │ │ │ │ │ ├── a00065_source.html │ │ │ │ │ │ ├── a00066.html │ │ │ │ │ │ ├── a00066_source.html │ │ │ │ │ │ ├── a00067.html │ │ │ │ │ │ ├── a00067_source.html │ │ │ │ │ │ ├── a00068.html │ │ │ │ │ │ ├── a00068_source.html │ │ │ │ │ │ ├── a00069.html │ │ │ │ │ │ ├── a00069_source.html │ │ │ │ │ │ ├── a00070.html │ │ │ │ │ │ ├── a00070_source.html │ │ │ │ │ │ ├── a00071.html │ │ │ │ │ │ ├── a00071_source.html │ │ │ │ │ │ ├── a00072.html │ │ │ │ │ │ ├── a00072_source.html │ │ │ │ │ │ ├── a00073.html │ │ │ │ │ │ ├── a00073_source.html │ │ │ │ │ │ ├── a00074.html │ │ │ │ │ │ ├── a00074_source.html │ │ │ │ │ │ ├── a00075.html │ │ │ │ │ │ ├── a00075_source.html │ │ │ │ │ │ ├── a00076.html │ │ │ │ │ │ ├── a00076_source.html │ │ │ │ │ │ ├── a00077.html │ │ │ │ │ │ ├── a00077_source.html │ │ │ │ │ │ ├── a00078.html │ │ │ │ │ │ ├── a00078_source.html │ │ │ │ │ │ ├── a00079.html │ │ │ │ │ │ ├── a00079_source.html │ │ │ │ │ │ ├── a00080.html │ │ │ │ │ │ ├── a00080_source.html │ │ │ │ │ │ ├── a00081.html │ │ │ │ │ │ ├── a00081_source.html │ │ │ │ │ │ ├── a00082.html │ │ │ │ │ │ ├── a00082_source.html │ │ │ │ │ │ ├── a00083.html │ │ │ │ │ │ ├── a00083_source.html │ │ │ │ │ │ ├── a00084.html │ │ │ │ │ │ ├── a00084_source.html │ │ │ │ │ │ ├── a00085.html │ │ │ │ │ │ ├── a00085_source.html │ │ │ │ │ │ ├── a00086.html │ │ │ │ │ │ ├── a00086_source.html │ │ │ │ │ │ ├── a00087.html │ │ │ │ │ │ ├── a00087_source.html │ │ │ │ │ │ ├── a00088.html │ │ │ │ │ │ ├── a00088_source.html │ │ │ │ │ │ ├── a00089.html │ │ │ │ │ │ ├── a00089_source.html │ │ │ │ │ │ ├── a00090.html │ │ │ │ │ │ ├── a00090_source.html │ │ │ │ │ │ ├── a00091.html │ │ │ │ │ │ ├── a00091_source.html │ │ │ │ │ │ ├── a00092.html │ │ │ │ │ │ ├── a00092_source.html │ │ │ │ │ │ ├── a00093.html │ │ │ │ │ │ ├── a00093_source.html │ │ │ │ │ │ ├── a00094.html │ │ │ │ │ │ ├── a00094_source.html │ │ │ │ │ │ ├── a00095_source.html │ │ │ │ │ │ ├── a00096.html │ │ │ │ │ │ ├── a00096_source.html │ │ │ │ │ │ ├── a00097.html │ │ │ │ │ │ ├── a00097_source.html │ │ │ │ │ │ ├── a00098.html │ │ │ │ │ │ ├── a00098_source.html │ │ │ │ │ │ ├── a00099.html │ │ │ │ │ │ ├── a00099_source.html │ │ │ │ │ │ ├── a00100.html │ │ │ │ │ │ ├── a00100_source.html │ │ │ │ │ │ ├── a00101.html │ │ │ │ │ │ ├── a00101_source.html │ │ │ │ │ │ ├── a00102.html │ │ │ │ │ │ ├── a00102_source.html │ │ │ │ │ │ ├── a00103.html │ │ │ │ │ │ ├── a00103_source.html │ │ │ │ │ │ ├── a00104.html │ │ │ │ │ │ ├── a00104_source.html │ │ │ │ │ │ ├── a00105.html │ │ │ │ │ │ ├── a00105_source.html │ │ │ │ │ │ ├── a00106.html │ │ │ │ │ │ ├── a00106_source.html │ │ │ │ │ │ ├── a00107.html │ │ │ │ │ │ ├── a00107_source.html │ │ │ │ │ │ ├── a00108.html │ │ │ │ │ │ ├── a00108_source.html │ │ │ │ │ │ ├── a00109.html │ │ │ │ │ │ ├── a00109_source.html │ │ │ │ │ │ ├── a00110.html │ │ │ │ │ │ ├── a00110_source.html │ │ │ │ │ │ ├── a00111.html │ │ │ │ │ │ ├── a00111_source.html │ │ │ │ │ │ ├── a00112.html │ │ │ │ │ │ ├── a00112_source.html │ │ │ │ │ │ ├── a00113.html │ │ │ │ │ │ ├── a00113_source.html │ │ │ │ │ │ ├── a00114.html │ │ │ │ │ │ ├── a00114_source.html │ │ │ │ │ │ ├── a00115.html │ │ │ │ │ │ ├── a00115_source.html │ │ │ │ │ │ ├── a00116.html │ │ │ │ │ │ ├── a00116_source.html │ │ │ │ │ │ ├── a00117.html │ │ │ │ │ │ ├── a00117_source.html │ │ │ │ │ │ ├── a00118.html │ │ │ │ │ │ ├── a00118_source.html │ │ │ │ │ │ ├── a00119.html │ │ │ │ │ │ ├── a00119_source.html │ │ │ │ │ │ ├── a00120.html │ │ │ │ │ │ ├── a00120_source.html │ │ │ │ │ │ ├── a00121.html │ │ │ │ │ │ ├── a00121_source.html │ │ │ │ │ │ ├── a00122.html │ │ │ │ │ │ ├── a00122_source.html │ │ │ │ │ │ ├── a00123.html │ │ │ │ │ │ ├── a00123_source.html │ │ │ │ │ │ ├── a00124_source.html │ │ │ │ │ │ ├── a00125.html │ │ │ │ │ │ ├── a00125_source.html │ │ │ │ │ │ ├── a00126.html │ │ │ │ │ │ ├── a00126_source.html │ │ │ │ │ │ ├── a00127.html │ │ │ │ │ │ ├── a00127_source.html │ │ │ │ │ │ ├── a00128.html │ │ │ │ │ │ ├── a00128_source.html │ │ │ │ │ │ ├── a00129.html │ │ │ │ │ │ ├── a00129_source.html │ │ │ │ │ │ ├── a00130.html │ │ │ │ │ │ ├── a00130_source.html │ │ │ │ │ │ ├── a00131.html │ │ │ │ │ │ ├── a00131_source.html │ │ │ │ │ │ ├── a00132.html │ │ │ │ │ │ ├── a00132_source.html │ │ │ │ │ │ ├── a00133.html │ │ │ │ │ │ ├── a00133_source.html │ │ │ │ │ │ ├── a00134.html │ │ │ │ │ │ ├── a00134_source.html │ │ │ │ │ │ ├── a00135.html │ │ │ │ │ │ ├── a00135_source.html │ │ │ │ │ │ ├── a00136.html │ │ │ │ │ │ ├── a00136_source.html │ │ │ │ │ │ ├── a00137.html │ │ │ │ │ │ ├── a00137_source.html │ │ │ │ │ │ ├── a00138.html │ │ │ │ │ │ ├── a00138_source.html │ │ │ │ │ │ ├── a00139.html │ │ │ │ │ │ ├── a00139_source.html │ │ │ │ │ │ ├── a00140.html │ │ │ │ │ │ ├── a00140_source.html │ │ │ │ │ │ ├── a00141.html │ │ │ │ │ │ ├── a00141_source.html │ │ │ │ │ │ ├── a00142.html │ │ │ │ │ │ ├── a00142_source.html │ │ │ │ │ │ ├── a00143.html │ │ │ │ │ │ ├── a00143_source.html │ │ │ │ │ │ ├── a00144.html │ │ │ │ │ │ ├── a00144_source.html │ │ │ │ │ │ ├── a00145.html │ │ │ │ │ │ ├── a00145_source.html │ │ │ │ │ │ ├── a00146.html │ │ │ │ │ │ ├── a00146_source.html │ │ │ │ │ │ ├── a00147.html │ │ │ │ │ │ ├── a00147_source.html │ │ │ │ │ │ ├── a00148.html │ │ │ │ │ │ ├── a00148_source.html │ │ │ │ │ │ ├── a00149.html │ │ │ │ │ │ ├── a00149_source.html │ │ │ │ │ │ ├── a00150.html │ │ │ │ │ │ ├── a00150_source.html │ │ │ │ │ │ ├── a00151.html │ │ │ │ │ │ ├── a00151_source.html │ │ │ │ │ │ ├── a00152.html │ │ │ │ │ │ ├── a00152_source.html │ │ │ │ │ │ ├── a00153_source.html │ │ │ │ │ │ ├── a00154.html │ │ │ │ │ │ ├── a00154_source.html │ │ │ │ │ │ ├── a00155.html │ │ │ │ │ │ ├── a00155_source.html │ │ │ │ │ │ ├── a00156.html │ │ │ │ │ │ ├── a00156_source.html │ │ │ │ │ │ ├── a00157.html │ │ │ │ │ │ ├── a00157_source.html │ │ │ │ │ │ ├── a00158.html │ │ │ │ │ │ ├── a00158_source.html │ │ │ │ │ │ ├── a00159.html │ │ │ │ │ │ ├── a00159_source.html │ │ │ │ │ │ ├── a00160.html │ │ │ │ │ │ ├── a00160_source.html │ │ │ │ │ │ ├── a00161.html │ │ │ │ │ │ ├── a00161_source.html │ │ │ │ │ │ ├── a00162.html │ │ │ │ │ │ ├── a00162_source.html │ │ │ │ │ │ ├── a00163_source.html │ │ │ │ │ │ ├── a00164_source.html │ │ │ │ │ │ ├── a00165.html │ │ │ │ │ │ ├── a00165_source.html │ │ │ │ │ │ ├── a00166.html │ │ │ │ │ │ ├── a00166_source.html │ │ │ │ │ │ ├── a00167.html │ │ │ │ │ │ ├── a00167_source.html │ │ │ │ │ │ ├── a00168.html │ │ │ │ │ │ ├── a00168_source.html │ │ │ │ │ │ ├── a00169.html │ │ │ │ │ │ ├── a00169_source.html │ │ │ │ │ │ ├── a00170.html │ │ │ │ │ │ ├── a00170_source.html │ │ │ │ │ │ ├── a00171.html │ │ │ │ │ │ ├── a00171_source.html │ │ │ │ │ │ ├── a00172.html │ │ │ │ │ │ ├── a00172_source.html │ │ │ │ │ │ ├── a00173.html │ │ │ │ │ │ ├── a00173_source.html │ │ │ │ │ │ ├── a00174.html │ │ │ │ │ │ ├── a00174_source.html │ │ │ │ │ │ ├── a00175.html │ │ │ │ │ │ ├── a00175_source.html │ │ │ │ │ │ ├── a00176.html │ │ │ │ │ │ ├── a00176_source.html │ │ │ │ │ │ ├── a00177.html │ │ │ │ │ │ ├── a00177_source.html │ │ │ │ │ │ ├── a00178.html │ │ │ │ │ │ ├── a00178_source.html │ │ │ │ │ │ ├── a00179.html │ │ │ │ │ │ ├── a00179_source.html │ │ │ │ │ │ ├── a00180.html │ │ │ │ │ │ ├── a00180_source.html │ │ │ │ │ │ ├── a00181.html │ │ │ │ │ │ ├── a00181_source.html │ │ │ │ │ │ ├── a00182.html │ │ │ │ │ │ ├── a00182_source.html │ │ │ │ │ │ ├── a00183.html │ │ │ │ │ │ ├── a00183_source.html │ │ │ │ │ │ ├── a00184.html │ │ │ │ │ │ ├── a00184_source.html │ │ │ │ │ │ ├── a00185.html │ │ │ │ │ │ ├── a00185_source.html │ │ │ │ │ │ ├── a00186.html │ │ │ │ │ │ ├── a00186_source.html │ │ │ │ │ │ ├── a00187.html │ │ │ │ │ │ ├── a00187_source.html │ │ │ │ │ │ ├── a00188.html │ │ │ │ │ │ ├── a00188_source.html │ │ │ │ │ │ ├── a00189.html │ │ │ │ │ │ ├── a00189_source.html │ │ │ │ │ │ ├── a00190.html │ │ │ │ │ │ ├── a00190_source.html │ │ │ │ │ │ ├── a00191.html │ │ │ │ │ │ ├── a00191_source.html │ │ │ │ │ │ ├── a00192.html │ │ │ │ │ │ ├── a00192_source.html │ │ │ │ │ │ ├── a00193.html │ │ │ │ │ │ ├── a00193_source.html │ │ │ │ │ │ ├── a00194.html │ │ │ │ │ │ ├── a00194_source.html │ │ │ │ │ │ ├── a00195.html │ │ │ │ │ │ ├── a00195_source.html │ │ │ │ │ │ ├── a00196.html │ │ │ │ │ │ ├── a00196_source.html │ │ │ │ │ │ ├── a00197.html │ │ │ │ │ │ ├── a00197_source.html │ │ │ │ │ │ ├── a00198.html │ │ │ │ │ │ ├── a00198_source.html │ │ │ │ │ │ ├── a00199.html │ │ │ │ │ │ ├── a00199_source.html │ │ │ │ │ │ ├── a00200.html │ │ │ │ │ │ ├── a00200_source.html │ │ │ │ │ │ ├── a00201.html │ │ │ │ │ │ ├── a00201_source.html │ │ │ │ │ │ ├── a00202.html │ │ │ │ │ │ ├── a00202_source.html │ │ │ │ │ │ ├── a00203.html │ │ │ │ │ │ ├── a00203_source.html │ │ │ │ │ │ ├── a00204.html │ │ │ │ │ │ ├── a00204_source.html │ │ │ │ │ │ ├── a00205.html │ │ │ │ │ │ ├── a00205_source.html │ │ │ │ │ │ ├── a00206.html │ │ │ │ │ │ ├── a00206_source.html │ │ │ │ │ │ ├── a00207.html │ │ │ │ │ │ ├── a00207_source.html │ │ │ │ │ │ ├── a00208.html │ │ │ │ │ │ ├── a00208_source.html │ │ │ │ │ │ ├── a00209.html │ │ │ │ │ │ ├── a00209_source.html │ │ │ │ │ │ ├── a00210.html │ │ │ │ │ │ ├── a00210_source.html │ │ │ │ │ │ ├── a00211.html │ │ │ │ │ │ ├── a00211_source.html │ │ │ │ │ │ ├── a00212.html │ │ │ │ │ │ ├── a00212_source.html │ │ │ │ │ │ ├── a00213.html │ │ │ │ │ │ ├── a00213_source.html │ │ │ │ │ │ ├── a00214.html │ │ │ │ │ │ ├── a00214_source.html │ │ │ │ │ │ ├── a00215.html │ │ │ │ │ │ ├── a00215_source.html │ │ │ │ │ │ ├── a00216.html │ │ │ │ │ │ ├── a00216_source.html │ │ │ │ │ │ ├── a00217.html │ │ │ │ │ │ ├── a00217_source.html │ │ │ │ │ │ ├── a00218.html │ │ │ │ │ │ ├── a00218_source.html │ │ │ │ │ │ ├── a00219.html │ │ │ │ │ │ ├── a00219_source.html │ │ │ │ │ │ ├── a00220.html │ │ │ │ │ │ ├── a00220_source.html │ │ │ │ │ │ ├── a00221.html │ │ │ │ │ │ ├── a00221_source.html │ │ │ │ │ │ ├── a00222.html │ │ │ │ │ │ ├── a00222_source.html │ │ │ │ │ │ ├── a00223.html │ │ │ │ │ │ ├── a00223_source.html │ │ │ │ │ │ ├── a00224.html │ │ │ │ │ │ ├── a00224_source.html │ │ │ │ │ │ ├── a00225.html │ │ │ │ │ │ ├── a00225_source.html │ │ │ │ │ │ ├── a00226.html │ │ │ │ │ │ ├── a00226_source.html │ │ │ │ │ │ ├── a00227.html │ │ │ │ │ │ ├── a00227_source.html │ │ │ │ │ │ ├── a00228.html │ │ │ │ │ │ ├── a00228_source.html │ │ │ │ │ │ ├── a00229.html │ │ │ │ │ │ ├── a00229_source.html │ │ │ │ │ │ ├── a00230.html │ │ │ │ │ │ ├── a00230_source.html │ │ │ │ │ │ ├── a00231.html │ │ │ │ │ │ ├── a00231_source.html │ │ │ │ │ │ ├── a00232.html │ │ │ │ │ │ ├── a00232_source.html │ │ │ │ │ │ ├── a00233.html │ │ │ │ │ │ ├── a00233_source.html │ │ │ │ │ │ ├── a00234.html │ │ │ │ │ │ ├── a00234_source.html │ │ │ │ │ │ ├── a00235.html │ │ │ │ │ │ ├── a00235_source.html │ │ │ │ │ │ ├── a00241.html │ │ │ │ │ │ ├── a00242.html │ │ │ │ │ │ ├── a00243.html │ │ │ │ │ │ ├── a00244.html │ │ │ │ │ │ ├── a00245.html │ │ │ │ │ │ ├── a00246.html │ │ │ │ │ │ ├── a00247.html │ │ │ │ │ │ ├── a00248.html │ │ │ │ │ │ ├── a00249.html │ │ │ │ │ │ ├── a00250.html │ │ │ │ │ │ ├── a00251.html │ │ │ │ │ │ ├── a00252.html │ │ │ │ │ │ ├── a00253.html │ │ │ │ │ │ ├── a00254.html │ │ │ │ │ │ ├── a00255.html │ │ │ │ │ │ ├── a00256.html │ │ │ │ │ │ ├── a00257.html │ │ │ │ │ │ ├── a00258.html │ │ │ │ │ │ ├── a00259.html │ │ │ │ │ │ ├── a00260.html │ │ │ │ │ │ ├── a00261.html │ │ │ │ │ │ ├── a00262.html │ │ │ │ │ │ ├── a00263.html │ │ │ │ │ │ ├── a00264.html │ │ │ │ │ │ ├── a00265.html │ │ │ │ │ │ ├── a00266.html │ │ │ │ │ │ ├── a00267.html │ │ │ │ │ │ ├── a00268.html │ │ │ │ │ │ ├── a00269.html │ │ │ │ │ │ ├── a00270.html │ │ │ │ │ │ ├── a00271.html │ │ │ │ │ │ ├── a00272.html │ │ │ │ │ │ ├── a00273.html │ │ │ │ │ │ ├── a00274.html │ │ │ │ │ │ ├── a00275.html │ │ │ │ │ │ ├── a00276.html │ │ │ │ │ │ ├── a00277.html │ │ │ │ │ │ ├── a00278.html │ │ │ │ │ │ ├── a00279.html │ │ │ │ │ │ ├── a00280.html │ │ │ │ │ │ ├── a00281.html │ │ │ │ │ │ ├── a00282.html │ │ │ │ │ │ ├── a00283.html │ │ │ │ │ │ ├── a00284.html │ │ │ │ │ │ ├── a00285.html │ │ │ │ │ │ ├── a00286.html │ │ │ │ │ │ ├── a00287.html │ │ │ │ │ │ ├── a00288.html │ │ │ │ │ │ ├── a00289.html │ │ │ │ │ │ ├── a00290.html │ │ │ │ │ │ ├── a00291.html │ │ │ │ │ │ ├── a00292.html │ │ │ │ │ │ ├── a00293.html │ │ │ │ │ │ ├── a00294.html │ │ │ │ │ │ ├── a00295.html │ │ │ │ │ │ ├── a00296.html │ │ │ │ │ │ ├── a00297.html │ │ │ │ │ │ ├── a00298.html │ │ │ │ │ │ ├── a00299.html │ │ │ │ │ │ ├── a00300.html │ │ │ │ │ │ ├── a00301.html │ │ │ │ │ │ ├── a00302.html │ │ │ │ │ │ ├── a00303.html │ │ │ │ │ │ ├── a00304.html │ │ │ │ │ │ ├── a00305.html │ │ │ │ │ │ ├── a00306.html │ │ │ │ │ │ ├── a00307.html │ │ │ │ │ │ ├── a00308.html │ │ │ │ │ │ ├── a00309.html │ │ │ │ │ │ ├── a00310.html │ │ │ │ │ │ ├── a00311.html │ │ │ │ │ │ ├── a00312.html │ │ │ │ │ │ ├── a00313.html │ │ │ │ │ │ ├── a00314.html │ │ │ │ │ │ ├── a00315.html │ │ │ │ │ │ ├── a00316.html │ │ │ │ │ │ ├── a00317.html │ │ │ │ │ │ ├── a00318.html │ │ │ │ │ │ ├── a00319.html │ │ │ │ │ │ ├── a00320.html │ │ │ │ │ │ ├── a00321.html │ │ │ │ │ │ ├── a00322.html │ │ │ │ │ │ ├── a00323.html │ │ │ │ │ │ ├── a00324.html │ │ │ │ │ │ ├── a00325.html │ │ │ │ │ │ ├── a00326.html │ │ │ │ │ │ ├── a00327.html │ │ │ │ │ │ ├── a00328.html │ │ │ │ │ │ ├── a00329.html │ │ │ │ │ │ ├── a00330.html │ │ │ │ │ │ ├── a00331.html │ │ │ │ │ │ ├── a00332.html │ │ │ │ │ │ ├── a00333.html │ │ │ │ │ │ ├── a00334.html │ │ │ │ │ │ ├── a00335.html │ │ │ │ │ │ ├── a00336.html │ │ │ │ │ │ ├── a00337.html │ │ │ │ │ │ ├── a00338.html │ │ │ │ │ │ ├── a00339.html │ │ │ │ │ │ ├── a00340.html │ │ │ │ │ │ ├── a00341.html │ │ │ │ │ │ ├── a00342.html │ │ │ │ │ │ ├── a00343.html │ │ │ │ │ │ ├── a00344.html │ │ │ │ │ │ ├── a00345.html │ │ │ │ │ │ ├── a00346.html │ │ │ │ │ │ ├── a00347.html │ │ │ │ │ │ ├── a00348.html │ │ │ │ │ │ ├── a00349.html │ │ │ │ │ │ ├── a00350.html │ │ │ │ │ │ ├── a00351.html │ │ │ │ │ │ ├── a00352.html │ │ │ │ │ │ ├── a00353.html │ │ │ │ │ │ ├── a00354.html │ │ │ │ │ │ ├── a00355.html │ │ │ │ │ │ ├── a00356.html │ │ │ │ │ │ ├── a00357.html │ │ │ │ │ │ ├── a00358.html │ │ │ │ │ │ ├── a00359.html │ │ │ │ │ │ ├── a00360.html │ │ │ │ │ │ ├── a00361.html │ │ │ │ │ │ ├── a00362.html │ │ │ │ │ │ ├── a00363.html │ │ │ │ │ │ ├── a00364.html │ │ │ │ │ │ ├── a00365.html │ │ │ │ │ │ ├── a00366.html │ │ │ │ │ │ ├── a00367.html │ │ │ │ │ │ ├── a00368.html │ │ │ │ │ │ ├── a00369.html │ │ │ │ │ │ ├── a00370.html │ │ │ │ │ │ ├── a00371.html │ │ │ │ │ │ ├── a00372.html │ │ │ │ │ │ ├── a00373.html │ │ │ │ │ │ ├── a00374.html │ │ │ │ │ │ ├── arrowdown.png │ │ │ │ │ │ ├── arrowright.png │ │ │ │ │ │ ├── bc_s.png │ │ │ │ │ │ ├── bdwn.png │ │ │ │ │ │ ├── closed.png │ │ │ │ │ │ ├── dir_033f5edb0915b828d2c46ed4804e5503.html │ │ │ │ │ │ ├── dir_3a581ba30d25676e4b797b1f96d53b45.html │ │ │ │ │ │ ├── dir_44e5e654415abd9ca6fdeaddaff8565e.html │ │ │ │ │ │ ├── dir_4c6bd29c73fa4e5a2509e1c15f846751.html │ │ │ │ │ │ ├── dir_5189610d3ba09ec39b766fb99b34cd93.html │ │ │ │ │ │ ├── dir_6b66465792d005310484819a0eb0b0d3.html │ │ │ │ │ │ ├── dir_9e5fe034a00e89334fd5186c3e7db156.html │ │ │ │ │ │ ├── dir_a8bee7be44182a33f3820393ae0b105d.html │ │ │ │ │ │ ├── dir_cef2d71d502cb69a9252bca2297d9549.html │ │ │ │ │ │ ├── dir_d9496f0844b48bc7e53b5af8c99b9ab2.html │ │ │ │ │ │ ├── dir_f35778ec600a1b9bbc4524e62e226aa2.html │ │ │ │ │ │ ├── doc.png │ │ │ │ │ │ ├── doxygen.css │ │ │ │ │ │ ├── doxygen.png │ │ │ │ │ │ ├── dynsections.js │ │ │ │ │ │ ├── files.html │ │ │ │ │ │ ├── folderclosed.png │ │ │ │ │ │ ├── folderopen.png │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── logo-mini.png │ │ │ │ │ │ ├── modules.html │ │ │ │ │ │ ├── nav_f.png │ │ │ │ │ │ ├── nav_g.png │ │ │ │ │ │ ├── nav_h.png │ │ │ │ │ │ ├── open.png │ │ │ │ │ │ ├── search │ │ │ │ │ │ │ ├── all_0.html │ │ │ │ │ │ │ ├── all_0.js │ │ │ │ │ │ │ ├── all_1.html │ │ │ │ │ │ │ ├── all_1.js │ │ │ │ │ │ │ ├── all_10.html │ │ │ │ │ │ │ ├── all_10.js │ │ │ │ │ │ │ ├── all_11.html │ │ │ │ │ │ │ ├── all_11.js │ │ │ │ │ │ │ ├── all_12.html │ │ │ │ │ │ │ ├── all_12.js │ │ │ │ │ │ │ ├── all_13.html │ │ │ │ │ │ │ ├── all_13.js │ │ │ │ │ │ │ ├── all_14.html │ │ │ │ │ │ │ ├── all_14.js │ │ │ │ │ │ │ ├── all_15.html │ │ │ │ │ │ │ ├── all_15.js │ │ │ │ │ │ │ ├── all_16.html │ │ │ │ │ │ │ ├── all_16.js │ │ │ │ │ │ │ ├── all_2.html │ │ │ │ │ │ │ ├── all_2.js │ │ │ │ │ │ │ ├── all_3.html │ │ │ │ │ │ │ ├── all_3.js │ │ │ │ │ │ │ ├── all_4.html │ │ │ │ │ │ │ ├── all_4.js │ │ │ │ │ │ │ ├── all_5.html │ │ │ │ │ │ │ ├── all_5.js │ │ │ │ │ │ │ ├── all_6.html │ │ │ │ │ │ │ ├── all_6.js │ │ │ │ │ │ │ ├── all_7.html │ │ │ │ │ │ │ ├── all_7.js │ │ │ │ │ │ │ ├── all_8.html │ │ │ │ │ │ │ ├── all_8.js │ │ │ │ │ │ │ ├── all_9.html │ │ │ │ │ │ │ ├── all_9.js │ │ │ │ │ │ │ ├── all_a.html │ │ │ │ │ │ │ ├── all_a.js │ │ │ │ │ │ │ ├── all_b.html │ │ │ │ │ │ │ ├── all_b.js │ │ │ │ │ │ │ ├── all_c.html │ │ │ │ │ │ │ ├── all_c.js │ │ │ │ │ │ │ ├── all_d.html │ │ │ │ │ │ │ ├── all_d.js │ │ │ │ │ │ │ ├── all_e.html │ │ │ │ │ │ │ ├── all_e.js │ │ │ │ │ │ │ ├── all_f.html │ │ │ │ │ │ │ ├── all_f.js │ │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ │ ├── files_0.html │ │ │ │ │ │ │ ├── files_0.js │ │ │ │ │ │ │ ├── files_1.html │ │ │ │ │ │ │ ├── files_1.js │ │ │ │ │ │ │ ├── files_10.html │ │ │ │ │ │ │ ├── files_10.js │ │ │ │ │ │ │ ├── files_11.html │ │ │ │ │ │ │ ├── files_11.js │ │ │ │ │ │ │ ├── files_12.html │ │ │ │ │ │ │ ├── files_12.js │ │ │ │ │ │ │ ├── files_13.html │ │ │ │ │ │ │ ├── files_13.js │ │ │ │ │ │ │ ├── files_14.html │ │ │ │ │ │ │ ├── files_14.js │ │ │ │ │ │ │ ├── files_2.html │ │ │ │ │ │ │ ├── files_2.js │ │ │ │ │ │ │ ├── files_3.html │ │ │ │ │ │ │ ├── files_3.js │ │ │ │ │ │ │ ├── files_4.html │ │ │ │ │ │ │ ├── files_4.js │ │ │ │ │ │ │ ├── files_5.html │ │ │ │ │ │ │ ├── files_5.js │ │ │ │ │ │ │ ├── files_6.html │ │ │ │ │ │ │ ├── files_6.js │ │ │ │ │ │ │ ├── files_7.html │ │ │ │ │ │ │ ├── files_7.js │ │ │ │ │ │ │ ├── files_8.html │ │ │ │ │ │ │ ├── files_8.js │ │ │ │ │ │ │ ├── files_9.html │ │ │ │ │ │ │ ├── files_9.js │ │ │ │ │ │ │ ├── files_a.html │ │ │ │ │ │ │ ├── files_a.js │ │ │ │ │ │ │ ├── files_b.html │ │ │ │ │ │ │ ├── files_b.js │ │ │ │ │ │ │ ├── files_c.html │ │ │ │ │ │ │ ├── files_c.js │ │ │ │ │ │ │ ├── files_d.html │ │ │ │ │ │ │ ├── files_d.js │ │ │ │ │ │ │ ├── files_e.html │ │ │ │ │ │ │ ├── files_e.js │ │ │ │ │ │ │ ├── files_f.html │ │ │ │ │ │ │ ├── files_f.js │ │ │ │ │ │ │ ├── functions_0.html │ │ │ │ │ │ │ ├── functions_0.js │ │ │ │ │ │ │ ├── functions_1.html │ │ │ │ │ │ │ ├── functions_1.js │ │ │ │ │ │ │ ├── functions_10.html │ │ │ │ │ │ │ ├── functions_10.js │ │ │ │ │ │ │ ├── functions_11.html │ │ │ │ │ │ │ ├── functions_11.js │ │ │ │ │ │ │ ├── functions_12.html │ │ │ │ │ │ │ ├── functions_12.js │ │ │ │ │ │ │ ├── functions_13.html │ │ │ │ │ │ │ ├── functions_13.js │ │ │ │ │ │ │ ├── functions_14.html │ │ │ │ │ │ │ ├── functions_14.js │ │ │ │ │ │ │ ├── functions_15.html │ │ │ │ │ │ │ ├── functions_15.js │ │ │ │ │ │ │ ├── functions_16.html │ │ │ │ │ │ │ ├── functions_16.js │ │ │ │ │ │ │ ├── functions_2.html │ │ │ │ │ │ │ ├── functions_2.js │ │ │ │ │ │ │ ├── functions_3.html │ │ │ │ │ │ │ ├── functions_3.js │ │ │ │ │ │ │ ├── functions_4.html │ │ │ │ │ │ │ ├── functions_4.js │ │ │ │ │ │ │ ├── functions_5.html │ │ │ │ │ │ │ ├── functions_5.js │ │ │ │ │ │ │ ├── functions_6.html │ │ │ │ │ │ │ ├── functions_6.js │ │ │ │ │ │ │ ├── functions_7.html │ │ │ │ │ │ │ ├── functions_7.js │ │ │ │ │ │ │ ├── functions_8.html │ │ │ │ │ │ │ ├── functions_8.js │ │ │ │ │ │ │ ├── functions_9.html │ │ │ │ │ │ │ ├── functions_9.js │ │ │ │ │ │ │ ├── functions_a.html │ │ │ │ │ │ │ ├── functions_a.js │ │ │ │ │ │ │ ├── functions_b.html │ │ │ │ │ │ │ ├── functions_b.js │ │ │ │ │ │ │ ├── functions_c.html │ │ │ │ │ │ │ ├── functions_c.js │ │ │ │ │ │ │ ├── functions_d.html │ │ │ │ │ │ │ ├── functions_d.js │ │ │ │ │ │ │ ├── functions_e.html │ │ │ │ │ │ │ ├── functions_e.js │ │ │ │ │ │ │ ├── functions_f.html │ │ │ │ │ │ │ ├── functions_f.js │ │ │ │ │ │ │ ├── groups_0.html │ │ │ │ │ │ │ ├── groups_0.js │ │ │ │ │ │ │ ├── groups_1.html │ │ │ │ │ │ │ ├── groups_1.js │ │ │ │ │ │ │ ├── groups_2.html │ │ │ │ │ │ │ ├── groups_2.js │ │ │ │ │ │ │ ├── groups_3.html │ │ │ │ │ │ │ ├── groups_3.js │ │ │ │ │ │ │ ├── groups_4.html │ │ │ │ │ │ │ ├── groups_4.js │ │ │ │ │ │ │ ├── groups_5.html │ │ │ │ │ │ │ ├── groups_5.js │ │ │ │ │ │ │ ├── groups_6.html │ │ │ │ │ │ │ ├── groups_6.js │ │ │ │ │ │ │ ├── groups_7.html │ │ │ │ │ │ │ ├── groups_7.js │ │ │ │ │ │ │ ├── groups_8.html │ │ │ │ │ │ │ ├── groups_8.js │ │ │ │ │ │ │ ├── groups_9.html │ │ │ │ │ │ │ ├── groups_9.js │ │ │ │ │ │ │ ├── mag_sel.png │ │ │ │ │ │ │ ├── nomatches.html │ │ │ │ │ │ │ ├── pages_0.html │ │ │ │ │ │ │ ├── pages_0.js │ │ │ │ │ │ │ ├── search.css │ │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ │ ├── search_l.png │ │ │ │ │ │ │ ├── search_m.png │ │ │ │ │ │ │ ├── search_r.png │ │ │ │ │ │ │ ├── searchdata.js │ │ │ │ │ │ │ ├── typedefs_0.html │ │ │ │ │ │ │ ├── typedefs_0.js │ │ │ │ │ │ │ ├── typedefs_1.html │ │ │ │ │ │ │ ├── typedefs_1.js │ │ │ │ │ │ │ ├── typedefs_2.html │ │ │ │ │ │ │ ├── typedefs_2.js │ │ │ │ │ │ │ ├── typedefs_3.html │ │ │ │ │ │ │ ├── typedefs_3.js │ │ │ │ │ │ │ ├── typedefs_4.html │ │ │ │ │ │ │ ├── typedefs_4.js │ │ │ │ │ │ │ ├── typedefs_5.html │ │ │ │ │ │ │ ├── typedefs_5.js │ │ │ │ │ │ │ ├── typedefs_6.html │ │ │ │ │ │ │ ├── typedefs_6.js │ │ │ │ │ │ │ ├── typedefs_7.html │ │ │ │ │ │ │ ├── typedefs_7.js │ │ │ │ │ │ │ ├── typedefs_8.html │ │ │ │ │ │ │ ├── typedefs_8.js │ │ │ │ │ │ │ ├── typedefs_9.html │ │ │ │ │ │ │ ├── typedefs_9.js │ │ │ │ │ │ │ ├── typedefs_a.html │ │ │ │ │ │ │ ├── typedefs_a.js │ │ │ │ │ │ │ ├── typedefs_b.html │ │ │ │ │ │ │ ├── typedefs_b.js │ │ │ │ │ │ │ ├── typedefs_c.html │ │ │ │ │ │ │ ├── typedefs_c.js │ │ │ │ │ │ │ ├── typedefs_d.html │ │ │ │ │ │ │ └── typedefs_d.js │ │ │ │ │ │ ├── splitbar.png │ │ │ │ │ │ ├── sync_off.png │ │ │ │ │ │ ├── sync_on.png │ │ │ │ │ │ ├── tab_a.png │ │ │ │ │ │ ├── tab_b.png │ │ │ │ │ │ ├── tab_h.png │ │ │ │ │ │ ├── tab_s.png │ │ │ │ │ │ └── tabs.css │ │ │ │ │ ├── man.doxy │ │ │ │ │ ├── manual.pdf │ │ │ │ │ ├── manual │ │ │ │ │ │ ├── frontpage1.png │ │ │ │ │ │ ├── frontpage2.png │ │ │ │ │ │ ├── g-truc.png │ │ │ │ │ │ ├── logo-mini.png │ │ │ │ │ │ ├── noise-perlin1.jpg │ │ │ │ │ │ ├── noise-perlin2.jpg │ │ │ │ │ │ ├── noise-perlin3.jpg │ │ │ │ │ │ ├── noise-perlin4.png │ │ │ │ │ │ ├── noise-perlin5.png │ │ │ │ │ │ ├── noise-perlin6.png │ │ │ │ │ │ ├── noise-simplex1.jpg │ │ │ │ │ │ ├── noise-simplex2.jpg │ │ │ │ │ │ ├── noise-simplex3.jpg │ │ │ │ │ │ ├── random-ballrand.png │ │ │ │ │ │ ├── random-circularrand.png │ │ │ │ │ │ ├── random-diskrand.png │ │ │ │ │ │ ├── random-gaussrand.png │ │ │ │ │ │ ├── random-linearrand.png │ │ │ │ │ │ ├── random-sphericalrand.png │ │ │ │ │ │ ├── references-cinder.png │ │ │ │ │ │ ├── references-glsl4book.jpg │ │ │ │ │ │ ├── references-leosfortune.jpeg │ │ │ │ │ │ ├── references-leosfortune2.jpg │ │ │ │ │ │ ├── references-opencloth1.png │ │ │ │ │ │ ├── references-opencloth3.png │ │ │ │ │ │ ├── references-outerra1.jpg │ │ │ │ │ │ ├── references-outerra2.jpg │ │ │ │ │ │ ├── references-outerra3.jpg │ │ │ │ │ │ └── references-outerra4.jpg │ │ │ │ │ └── theme │ │ │ │ │ │ ├── bc_s.png │ │ │ │ │ │ ├── bdwn.png │ │ │ │ │ │ ├── closed.png │ │ │ │ │ │ ├── doc.png │ │ │ │ │ │ ├── doxygen.css │ │ │ │ │ │ ├── doxygen.png │ │ │ │ │ │ ├── folderclosed.png │ │ │ │ │ │ ├── folderopen.png │ │ │ │ │ │ ├── logo-mini.png │ │ │ │ │ │ ├── nav_f.png │ │ │ │ │ │ ├── nav_g.png │ │ │ │ │ │ ├── nav_h.png │ │ │ │ │ │ ├── open.png │ │ │ │ │ │ ├── splitbar.png │ │ │ │ │ │ ├── sync_off.png │ │ │ │ │ │ ├── sync_on.png │ │ │ │ │ │ ├── tab_a.png │ │ │ │ │ │ ├── tab_b.png │ │ │ │ │ │ ├── tab_h.png │ │ │ │ │ │ └── tab_s.png │ │ │ │ ├── glm │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── common.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── _features.hpp │ │ │ │ │ │ ├── _fixes.hpp │ │ │ │ │ │ ├── _noise.hpp │ │ │ │ │ │ ├── _swizzle.hpp │ │ │ │ │ │ ├── _swizzle_func.hpp │ │ │ │ │ │ ├── _vectorize.hpp │ │ │ │ │ │ ├── compute_common.hpp │ │ │ │ │ │ ├── compute_vector_relational.hpp │ │ │ │ │ │ ├── func_common.inl │ │ │ │ │ │ ├── func_common_simd.inl │ │ │ │ │ │ ├── func_exponential.inl │ │ │ │ │ │ ├── func_exponential_simd.inl │ │ │ │ │ │ ├── func_geometric.inl │ │ │ │ │ │ ├── func_geometric_simd.inl │ │ │ │ │ │ ├── func_integer.inl │ │ │ │ │ │ ├── func_integer_simd.inl │ │ │ │ │ │ ├── func_matrix.inl │ │ │ │ │ │ ├── func_matrix_simd.inl │ │ │ │ │ │ ├── func_packing.inl │ │ │ │ │ │ ├── func_packing_simd.inl │ │ │ │ │ │ ├── func_trigonometric.inl │ │ │ │ │ │ ├── func_trigonometric_simd.inl │ │ │ │ │ │ ├── func_vector_relational.inl │ │ │ │ │ │ ├── func_vector_relational_simd.inl │ │ │ │ │ │ ├── glm.cpp │ │ │ │ │ │ ├── qualifier.hpp │ │ │ │ │ │ ├── setup.hpp │ │ │ │ │ │ ├── type_float.hpp │ │ │ │ │ │ ├── type_half.hpp │ │ │ │ │ │ ├── type_half.inl │ │ │ │ │ │ ├── type_mat2x2.hpp │ │ │ │ │ │ ├── type_mat2x2.inl │ │ │ │ │ │ ├── type_mat2x3.hpp │ │ │ │ │ │ ├── type_mat2x3.inl │ │ │ │ │ │ ├── type_mat2x4.hpp │ │ │ │ │ │ ├── type_mat2x4.inl │ │ │ │ │ │ ├── type_mat3x2.hpp │ │ │ │ │ │ ├── type_mat3x2.inl │ │ │ │ │ │ ├── type_mat3x3.hpp │ │ │ │ │ │ ├── type_mat3x3.inl │ │ │ │ │ │ ├── type_mat3x4.hpp │ │ │ │ │ │ ├── type_mat3x4.inl │ │ │ │ │ │ ├── type_mat4x2.hpp │ │ │ │ │ │ ├── type_mat4x2.inl │ │ │ │ │ │ ├── type_mat4x3.hpp │ │ │ │ │ │ ├── type_mat4x3.inl │ │ │ │ │ │ ├── type_mat4x4.hpp │ │ │ │ │ │ ├── type_mat4x4.inl │ │ │ │ │ │ ├── type_mat4x4_simd.inl │ │ │ │ │ │ ├── type_quat.hpp │ │ │ │ │ │ ├── type_quat.inl │ │ │ │ │ │ ├── type_quat_simd.inl │ │ │ │ │ │ ├── type_vec1.hpp │ │ │ │ │ │ ├── type_vec1.inl │ │ │ │ │ │ ├── type_vec2.hpp │ │ │ │ │ │ ├── type_vec2.inl │ │ │ │ │ │ ├── type_vec3.hpp │ │ │ │ │ │ ├── type_vec3.inl │ │ │ │ │ │ ├── type_vec4.hpp │ │ │ │ │ │ ├── type_vec4.inl │ │ │ │ │ │ └── type_vec4_simd.inl │ │ │ │ │ ├── exponential.hpp │ │ │ │ │ ├── ext.hpp │ │ │ │ │ ├── ext │ │ │ │ │ │ ├── _matrix_vectorize.hpp │ │ │ │ │ │ ├── matrix_clip_space.hpp │ │ │ │ │ │ ├── matrix_clip_space.inl │ │ │ │ │ │ ├── matrix_common.hpp │ │ │ │ │ │ ├── matrix_common.inl │ │ │ │ │ │ ├── matrix_double2x2.hpp │ │ │ │ │ │ ├── matrix_double2x2_precision.hpp │ │ │ │ │ │ ├── matrix_double2x3.hpp │ │ │ │ │ │ ├── matrix_double2x3_precision.hpp │ │ │ │ │ │ ├── matrix_double2x4.hpp │ │ │ │ │ │ ├── matrix_double2x4_precision.hpp │ │ │ │ │ │ ├── matrix_double3x2.hpp │ │ │ │ │ │ ├── matrix_double3x2_precision.hpp │ │ │ │ │ │ ├── matrix_double3x3.hpp │ │ │ │ │ │ ├── matrix_double3x3_precision.hpp │ │ │ │ │ │ ├── matrix_double3x4.hpp │ │ │ │ │ │ ├── matrix_double3x4_precision.hpp │ │ │ │ │ │ ├── matrix_double4x2.hpp │ │ │ │ │ │ ├── matrix_double4x2_precision.hpp │ │ │ │ │ │ ├── matrix_double4x3.hpp │ │ │ │ │ │ ├── matrix_double4x3_precision.hpp │ │ │ │ │ │ ├── matrix_double4x4.hpp │ │ │ │ │ │ ├── matrix_double4x4_precision.hpp │ │ │ │ │ │ ├── matrix_float2x2.hpp │ │ │ │ │ │ ├── matrix_float2x2_precision.hpp │ │ │ │ │ │ ├── matrix_float2x3.hpp │ │ │ │ │ │ ├── matrix_float2x3_precision.hpp │ │ │ │ │ │ ├── matrix_float2x4.hpp │ │ │ │ │ │ ├── matrix_float2x4_precision.hpp │ │ │ │ │ │ ├── matrix_float3x2.hpp │ │ │ │ │ │ ├── matrix_float3x2_precision.hpp │ │ │ │ │ │ ├── matrix_float3x3.hpp │ │ │ │ │ │ ├── matrix_float3x3_precision.hpp │ │ │ │ │ │ ├── matrix_float3x4.hpp │ │ │ │ │ │ ├── matrix_float3x4_precision.hpp │ │ │ │ │ │ ├── matrix_float4x2.hpp │ │ │ │ │ │ ├── matrix_float4x2_precision.hpp │ │ │ │ │ │ ├── matrix_float4x3.hpp │ │ │ │ │ │ ├── matrix_float4x3_precision.hpp │ │ │ │ │ │ ├── matrix_float4x4.hpp │ │ │ │ │ │ ├── matrix_float4x4_precision.hpp │ │ │ │ │ │ ├── matrix_int2x2.hpp │ │ │ │ │ │ ├── matrix_int2x2_sized.hpp │ │ │ │ │ │ ├── matrix_int2x3.hpp │ │ │ │ │ │ ├── matrix_int2x3_sized.hpp │ │ │ │ │ │ ├── matrix_int2x4.hpp │ │ │ │ │ │ ├── matrix_int2x4_sized.hpp │ │ │ │ │ │ ├── matrix_int3x2.hpp │ │ │ │ │ │ ├── matrix_int3x2_sized.hpp │ │ │ │ │ │ ├── matrix_int3x3.hpp │ │ │ │ │ │ ├── matrix_int3x3_sized.hpp │ │ │ │ │ │ ├── matrix_int3x4.hpp │ │ │ │ │ │ ├── matrix_int3x4_sized.hpp │ │ │ │ │ │ ├── matrix_int4x2.hpp │ │ │ │ │ │ ├── matrix_int4x2_sized.hpp │ │ │ │ │ │ ├── matrix_int4x3.hpp │ │ │ │ │ │ ├── matrix_int4x3_sized.hpp │ │ │ │ │ │ ├── matrix_int4x4.hpp │ │ │ │ │ │ ├── matrix_int4x4_sized.hpp │ │ │ │ │ │ ├── matrix_integer.hpp │ │ │ │ │ │ ├── matrix_integer.inl │ │ │ │ │ │ ├── matrix_projection.hpp │ │ │ │ │ │ ├── matrix_projection.inl │ │ │ │ │ │ ├── matrix_relational.hpp │ │ │ │ │ │ ├── matrix_relational.inl │ │ │ │ │ │ ├── matrix_transform.hpp │ │ │ │ │ │ ├── matrix_transform.inl │ │ │ │ │ │ ├── matrix_uint2x2.hpp │ │ │ │ │ │ ├── matrix_uint2x2_sized.hpp │ │ │ │ │ │ ├── matrix_uint2x3.hpp │ │ │ │ │ │ ├── matrix_uint2x3_sized.hpp │ │ │ │ │ │ ├── matrix_uint2x4.hpp │ │ │ │ │ │ ├── matrix_uint2x4_sized.hpp │ │ │ │ │ │ ├── matrix_uint3x2.hpp │ │ │ │ │ │ ├── matrix_uint3x2_sized.hpp │ │ │ │ │ │ ├── matrix_uint3x3.hpp │ │ │ │ │ │ ├── matrix_uint3x3_sized.hpp │ │ │ │ │ │ ├── matrix_uint3x4.hpp │ │ │ │ │ │ ├── matrix_uint3x4_sized.hpp │ │ │ │ │ │ ├── matrix_uint4x2.hpp │ │ │ │ │ │ ├── matrix_uint4x2_sized.hpp │ │ │ │ │ │ ├── matrix_uint4x3.hpp │ │ │ │ │ │ ├── matrix_uint4x3_sized.hpp │ │ │ │ │ │ ├── matrix_uint4x4.hpp │ │ │ │ │ │ ├── matrix_uint4x4_sized.hpp │ │ │ │ │ │ ├── quaternion_common.hpp │ │ │ │ │ │ ├── quaternion_common.inl │ │ │ │ │ │ ├── quaternion_common_simd.inl │ │ │ │ │ │ ├── quaternion_double.hpp │ │ │ │ │ │ ├── quaternion_double_precision.hpp │ │ │ │ │ │ ├── quaternion_exponential.hpp │ │ │ │ │ │ ├── quaternion_exponential.inl │ │ │ │ │ │ ├── quaternion_float.hpp │ │ │ │ │ │ ├── quaternion_float_precision.hpp │ │ │ │ │ │ ├── quaternion_geometric.hpp │ │ │ │ │ │ ├── quaternion_geometric.inl │ │ │ │ │ │ ├── quaternion_relational.hpp │ │ │ │ │ │ ├── quaternion_relational.inl │ │ │ │ │ │ ├── quaternion_transform.hpp │ │ │ │ │ │ ├── quaternion_transform.inl │ │ │ │ │ │ ├── quaternion_trigonometric.hpp │ │ │ │ │ │ ├── quaternion_trigonometric.inl │ │ │ │ │ │ ├── scalar_common.hpp │ │ │ │ │ │ ├── scalar_common.inl │ │ │ │ │ │ ├── scalar_constants.hpp │ │ │ │ │ │ ├── scalar_constants.inl │ │ │ │ │ │ ├── scalar_int_sized.hpp │ │ │ │ │ │ ├── scalar_integer.hpp │ │ │ │ │ │ ├── scalar_integer.inl │ │ │ │ │ │ ├── scalar_packing.hpp │ │ │ │ │ │ ├── scalar_packing.inl │ │ │ │ │ │ ├── scalar_reciprocal.hpp │ │ │ │ │ │ ├── scalar_reciprocal.inl │ │ │ │ │ │ ├── scalar_relational.hpp │ │ │ │ │ │ ├── scalar_relational.inl │ │ │ │ │ │ ├── scalar_uint_sized.hpp │ │ │ │ │ │ ├── scalar_ulp.hpp │ │ │ │ │ │ ├── scalar_ulp.inl │ │ │ │ │ │ ├── vector_bool1.hpp │ │ │ │ │ │ ├── vector_bool1_precision.hpp │ │ │ │ │ │ ├── vector_bool2.hpp │ │ │ │ │ │ ├── vector_bool2_precision.hpp │ │ │ │ │ │ ├── vector_bool3.hpp │ │ │ │ │ │ ├── vector_bool3_precision.hpp │ │ │ │ │ │ ├── vector_bool4.hpp │ │ │ │ │ │ ├── vector_bool4_precision.hpp │ │ │ │ │ │ ├── vector_common.hpp │ │ │ │ │ │ ├── vector_common.inl │ │ │ │ │ │ ├── vector_double1.hpp │ │ │ │ │ │ ├── vector_double1_precision.hpp │ │ │ │ │ │ ├── vector_double2.hpp │ │ │ │ │ │ ├── vector_double2_precision.hpp │ │ │ │ │ │ ├── vector_double3.hpp │ │ │ │ │ │ ├── vector_double3_precision.hpp │ │ │ │ │ │ ├── vector_double4.hpp │ │ │ │ │ │ ├── vector_double4_precision.hpp │ │ │ │ │ │ ├── vector_float1.hpp │ │ │ │ │ │ ├── vector_float1_precision.hpp │ │ │ │ │ │ ├── vector_float2.hpp │ │ │ │ │ │ ├── vector_float2_precision.hpp │ │ │ │ │ │ ├── vector_float3.hpp │ │ │ │ │ │ ├── vector_float3_precision.hpp │ │ │ │ │ │ ├── vector_float4.hpp │ │ │ │ │ │ ├── vector_float4_precision.hpp │ │ │ │ │ │ ├── vector_int1.hpp │ │ │ │ │ │ ├── vector_int1_sized.hpp │ │ │ │ │ │ ├── vector_int2.hpp │ │ │ │ │ │ ├── vector_int2_sized.hpp │ │ │ │ │ │ ├── vector_int3.hpp │ │ │ │ │ │ ├── vector_int3_sized.hpp │ │ │ │ │ │ ├── vector_int4.hpp │ │ │ │ │ │ ├── vector_int4_sized.hpp │ │ │ │ │ │ ├── vector_integer.hpp │ │ │ │ │ │ ├── vector_integer.inl │ │ │ │ │ │ ├── vector_packing.hpp │ │ │ │ │ │ ├── vector_packing.inl │ │ │ │ │ │ ├── vector_reciprocal.hpp │ │ │ │ │ │ ├── vector_reciprocal.inl │ │ │ │ │ │ ├── vector_relational.hpp │ │ │ │ │ │ ├── vector_relational.inl │ │ │ │ │ │ ├── vector_uint1.hpp │ │ │ │ │ │ ├── vector_uint1_sized.hpp │ │ │ │ │ │ ├── vector_uint2.hpp │ │ │ │ │ │ ├── vector_uint2_sized.hpp │ │ │ │ │ │ ├── vector_uint3.hpp │ │ │ │ │ │ ├── vector_uint3_sized.hpp │ │ │ │ │ │ ├── vector_uint4.hpp │ │ │ │ │ │ ├── vector_uint4_sized.hpp │ │ │ │ │ │ ├── vector_ulp.hpp │ │ │ │ │ │ └── vector_ulp.inl │ │ │ │ │ ├── fwd.hpp │ │ │ │ │ ├── geometric.hpp │ │ │ │ │ ├── glm.hpp │ │ │ │ │ ├── gtc │ │ │ │ │ │ ├── bitfield.hpp │ │ │ │ │ │ ├── bitfield.inl │ │ │ │ │ │ ├── color_space.hpp │ │ │ │ │ │ ├── color_space.inl │ │ │ │ │ │ ├── constants.hpp │ │ │ │ │ │ ├── constants.inl │ │ │ │ │ │ ├── epsilon.hpp │ │ │ │ │ │ ├── epsilon.inl │ │ │ │ │ │ ├── integer.hpp │ │ │ │ │ │ ├── integer.inl │ │ │ │ │ │ ├── matrix_access.hpp │ │ │ │ │ │ ├── matrix_access.inl │ │ │ │ │ │ ├── matrix_integer.hpp │ │ │ │ │ │ ├── matrix_inverse.hpp │ │ │ │ │ │ ├── matrix_inverse.inl │ │ │ │ │ │ ├── matrix_transform.hpp │ │ │ │ │ │ ├── matrix_transform.inl │ │ │ │ │ │ ├── noise.hpp │ │ │ │ │ │ ├── noise.inl │ │ │ │ │ │ ├── packing.hpp │ │ │ │ │ │ ├── packing.inl │ │ │ │ │ │ ├── quaternion.hpp │ │ │ │ │ │ ├── quaternion.inl │ │ │ │ │ │ ├── quaternion_simd.inl │ │ │ │ │ │ ├── random.hpp │ │ │ │ │ │ ├── random.inl │ │ │ │ │ │ ├── reciprocal.hpp │ │ │ │ │ │ ├── round.hpp │ │ │ │ │ │ ├── round.inl │ │ │ │ │ │ ├── type_aligned.hpp │ │ │ │ │ │ ├── type_precision.hpp │ │ │ │ │ │ ├── type_precision.inl │ │ │ │ │ │ ├── type_ptr.hpp │ │ │ │ │ │ ├── type_ptr.inl │ │ │ │ │ │ ├── ulp.hpp │ │ │ │ │ │ ├── ulp.inl │ │ │ │ │ │ └── vec1.hpp │ │ │ │ │ ├── gtx │ │ │ │ │ │ ├── associated_min_max.hpp │ │ │ │ │ │ ├── associated_min_max.inl │ │ │ │ │ │ ├── bit.hpp │ │ │ │ │ │ ├── bit.inl │ │ │ │ │ │ ├── closest_point.hpp │ │ │ │ │ │ ├── closest_point.inl │ │ │ │ │ │ ├── color_encoding.hpp │ │ │ │ │ │ ├── color_encoding.inl │ │ │ │ │ │ ├── color_space.hpp │ │ │ │ │ │ ├── color_space.inl │ │ │ │ │ │ ├── color_space_YCoCg.hpp │ │ │ │ │ │ ├── color_space_YCoCg.inl │ │ │ │ │ │ ├── common.hpp │ │ │ │ │ │ ├── common.inl │ │ │ │ │ │ ├── compatibility.hpp │ │ │ │ │ │ ├── compatibility.inl │ │ │ │ │ │ ├── component_wise.hpp │ │ │ │ │ │ ├── component_wise.inl │ │ │ │ │ │ ├── dual_quaternion.hpp │ │ │ │ │ │ ├── dual_quaternion.inl │ │ │ │ │ │ ├── easing.hpp │ │ │ │ │ │ ├── easing.inl │ │ │ │ │ │ ├── euler_angles.hpp │ │ │ │ │ │ ├── euler_angles.inl │ │ │ │ │ │ ├── extend.hpp │ │ │ │ │ │ ├── extend.inl │ │ │ │ │ │ ├── extended_min_max.hpp │ │ │ │ │ │ ├── extended_min_max.inl │ │ │ │ │ │ ├── exterior_product.hpp │ │ │ │ │ │ ├── exterior_product.inl │ │ │ │ │ │ ├── fast_exponential.hpp │ │ │ │ │ │ ├── fast_exponential.inl │ │ │ │ │ │ ├── fast_square_root.hpp │ │ │ │ │ │ ├── fast_square_root.inl │ │ │ │ │ │ ├── fast_trigonometry.hpp │ │ │ │ │ │ ├── fast_trigonometry.inl │ │ │ │ │ │ ├── float_notmalize.inl │ │ │ │ │ │ ├── functions.hpp │ │ │ │ │ │ ├── functions.inl │ │ │ │ │ │ ├── gradient_paint.hpp │ │ │ │ │ │ ├── gradient_paint.inl │ │ │ │ │ │ ├── handed_coordinate_space.hpp │ │ │ │ │ │ ├── handed_coordinate_space.inl │ │ │ │ │ │ ├── hash.hpp │ │ │ │ │ │ ├── hash.inl │ │ │ │ │ │ ├── integer.hpp │ │ │ │ │ │ ├── integer.inl │ │ │ │ │ │ ├── intersect.hpp │ │ │ │ │ │ ├── intersect.inl │ │ │ │ │ │ ├── io.hpp │ │ │ │ │ │ ├── io.inl │ │ │ │ │ │ ├── log_base.hpp │ │ │ │ │ │ ├── log_base.inl │ │ │ │ │ │ ├── matrix_cross_product.hpp │ │ │ │ │ │ ├── matrix_cross_product.inl │ │ │ │ │ │ ├── matrix_decompose.hpp │ │ │ │ │ │ ├── matrix_decompose.inl │ │ │ │ │ │ ├── matrix_factorisation.hpp │ │ │ │ │ │ ├── matrix_factorisation.inl │ │ │ │ │ │ ├── matrix_interpolation.hpp │ │ │ │ │ │ ├── matrix_interpolation.inl │ │ │ │ │ │ ├── matrix_major_storage.hpp │ │ │ │ │ │ ├── matrix_major_storage.inl │ │ │ │ │ │ ├── matrix_operation.hpp │ │ │ │ │ │ ├── matrix_operation.inl │ │ │ │ │ │ ├── matrix_query.hpp │ │ │ │ │ │ ├── matrix_query.inl │ │ │ │ │ │ ├── matrix_transform_2d.hpp │ │ │ │ │ │ ├── matrix_transform_2d.inl │ │ │ │ │ │ ├── mixed_product.hpp │ │ │ │ │ │ ├── mixed_product.inl │ │ │ │ │ │ ├── norm.hpp │ │ │ │ │ │ ├── norm.inl │ │ │ │ │ │ ├── normal.hpp │ │ │ │ │ │ ├── normal.inl │ │ │ │ │ │ ├── normalize_dot.hpp │ │ │ │ │ │ ├── normalize_dot.inl │ │ │ │ │ │ ├── number_precision.hpp │ │ │ │ │ │ ├── number_precision.inl │ │ │ │ │ │ ├── optimum_pow.hpp │ │ │ │ │ │ ├── optimum_pow.inl │ │ │ │ │ │ ├── orthonormalize.hpp │ │ │ │ │ │ ├── orthonormalize.inl │ │ │ │ │ │ ├── pca.hpp │ │ │ │ │ │ ├── pca.inl │ │ │ │ │ │ ├── perpendicular.hpp │ │ │ │ │ │ ├── perpendicular.inl │ │ │ │ │ │ ├── polar_coordinates.hpp │ │ │ │ │ │ ├── polar_coordinates.inl │ │ │ │ │ │ ├── projection.hpp │ │ │ │ │ │ ├── projection.inl │ │ │ │ │ │ ├── quaternion.hpp │ │ │ │ │ │ ├── quaternion.inl │ │ │ │ │ │ ├── range.hpp │ │ │ │ │ │ ├── raw_data.hpp │ │ │ │ │ │ ├── raw_data.inl │ │ │ │ │ │ ├── rotate_normalized_axis.hpp │ │ │ │ │ │ ├── rotate_normalized_axis.inl │ │ │ │ │ │ ├── rotate_vector.hpp │ │ │ │ │ │ ├── rotate_vector.inl │ │ │ │ │ │ ├── scalar_multiplication.hpp │ │ │ │ │ │ ├── scalar_relational.hpp │ │ │ │ │ │ ├── scalar_relational.inl │ │ │ │ │ │ ├── spline.hpp │ │ │ │ │ │ ├── spline.inl │ │ │ │ │ │ ├── std_based_type.hpp │ │ │ │ │ │ ├── std_based_type.inl │ │ │ │ │ │ ├── string_cast.hpp │ │ │ │ │ │ ├── string_cast.inl │ │ │ │ │ │ ├── texture.hpp │ │ │ │ │ │ ├── texture.inl │ │ │ │ │ │ ├── transform.hpp │ │ │ │ │ │ ├── transform.inl │ │ │ │ │ │ ├── transform2.hpp │ │ │ │ │ │ ├── transform2.inl │ │ │ │ │ │ ├── type_aligned.hpp │ │ │ │ │ │ ├── type_aligned.inl │ │ │ │ │ │ ├── type_trait.hpp │ │ │ │ │ │ ├── type_trait.inl │ │ │ │ │ │ ├── vec_swizzle.hpp │ │ │ │ │ │ ├── vector_angle.hpp │ │ │ │ │ │ ├── vector_angle.inl │ │ │ │ │ │ ├── vector_query.hpp │ │ │ │ │ │ ├── vector_query.inl │ │ │ │ │ │ ├── wrap.hpp │ │ │ │ │ │ └── wrap.inl │ │ │ │ │ ├── integer.hpp │ │ │ │ │ ├── mat2x2.hpp │ │ │ │ │ ├── mat2x3.hpp │ │ │ │ │ ├── mat2x4.hpp │ │ │ │ │ ├── mat3x2.hpp │ │ │ │ │ ├── mat3x3.hpp │ │ │ │ │ ├── mat3x4.hpp │ │ │ │ │ ├── mat4x2.hpp │ │ │ │ │ ├── mat4x3.hpp │ │ │ │ │ ├── mat4x4.hpp │ │ │ │ │ ├── matrix.hpp │ │ │ │ │ ├── packing.hpp │ │ │ │ │ ├── simd │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ ├── exponential.h │ │ │ │ │ │ ├── geometric.h │ │ │ │ │ │ ├── integer.h │ │ │ │ │ │ ├── matrix.h │ │ │ │ │ │ ├── neon.h │ │ │ │ │ │ ├── packing.h │ │ │ │ │ │ ├── platform.h │ │ │ │ │ │ ├── trigonometric.h │ │ │ │ │ │ └── vector_relational.h │ │ │ │ │ ├── trigonometric.hpp │ │ │ │ │ ├── vec2.hpp │ │ │ │ │ ├── vec3.hpp │ │ │ │ │ ├── vec4.hpp │ │ │ │ │ └── vector_relational.hpp │ │ │ │ ├── manual.md │ │ │ │ ├── readme.md │ │ │ │ ├── test │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── bug │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── bug_ms_vec_static.cpp │ │ │ │ │ ├── cmake │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── test_find_glm.cpp │ │ │ │ │ ├── core │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── core_cpp_constexpr.cpp │ │ │ │ │ │ ├── core_cpp_defaulted_ctor.cpp │ │ │ │ │ │ ├── core_force_aligned_gentypes.cpp │ │ │ │ │ │ ├── core_force_arch_unknown.cpp │ │ │ │ │ │ ├── core_force_compiler_unknown.cpp │ │ │ │ │ │ ├── core_force_ctor_init.cpp │ │ │ │ │ │ ├── core_force_cxx03.cpp │ │ │ │ │ │ ├── core_force_cxx98.cpp │ │ │ │ │ │ ├── core_force_cxx_unknown.cpp │ │ │ │ │ │ ├── core_force_depth_zero_to_one.cpp │ │ │ │ │ │ ├── core_force_explicit_ctor.cpp │ │ │ │ │ │ ├── core_force_inline.cpp │ │ │ │ │ │ ├── core_force_left_handed.cpp │ │ │ │ │ │ ├── core_force_platform_unknown.cpp │ │ │ │ │ │ ├── core_force_pure.cpp │ │ │ │ │ │ ├── core_force_quat_xyzw.cpp │ │ │ │ │ │ ├── core_force_size_t_length.cpp │ │ │ │ │ │ ├── core_force_unrestricted_gentype.cpp │ │ │ │ │ │ ├── core_force_xyzw_only.cpp │ │ │ │ │ │ ├── core_func_common.cpp │ │ │ │ │ │ ├── core_func_exponential.cpp │ │ │ │ │ │ ├── core_func_geometric.cpp │ │ │ │ │ │ ├── core_func_integer.cpp │ │ │ │ │ │ ├── core_func_integer_bit_count.cpp │ │ │ │ │ │ ├── core_func_integer_find_lsb.cpp │ │ │ │ │ │ ├── core_func_integer_find_msb.cpp │ │ │ │ │ │ ├── core_func_matrix.cpp │ │ │ │ │ │ ├── core_func_noise.cpp │ │ │ │ │ │ ├── core_func_packing.cpp │ │ │ │ │ │ ├── core_func_swizzle.cpp │ │ │ │ │ │ ├── core_func_trigonometric.cpp │ │ │ │ │ │ ├── core_func_vector_relational.cpp │ │ │ │ │ │ ├── core_setup_force_cxx98.cpp │ │ │ │ │ │ ├── core_setup_force_size_t_length.cpp │ │ │ │ │ │ ├── core_setup_message.cpp │ │ │ │ │ │ ├── core_setup_platform_unknown.cpp │ │ │ │ │ │ ├── core_setup_precision.cpp │ │ │ │ │ │ ├── core_type_aligned.cpp │ │ │ │ │ │ ├── core_type_cast.cpp │ │ │ │ │ │ ├── core_type_ctor.cpp │ │ │ │ │ │ ├── core_type_int.cpp │ │ │ │ │ │ ├── core_type_length.cpp │ │ │ │ │ │ ├── core_type_mat2x2.cpp │ │ │ │ │ │ ├── core_type_mat2x3.cpp │ │ │ │ │ │ ├── core_type_mat2x4.cpp │ │ │ │ │ │ ├── core_type_mat3x2.cpp │ │ │ │ │ │ ├── core_type_mat3x3.cpp │ │ │ │ │ │ ├── core_type_mat3x4.cpp │ │ │ │ │ │ ├── core_type_mat4x2.cpp │ │ │ │ │ │ ├── core_type_mat4x3.cpp │ │ │ │ │ │ ├── core_type_mat4x4.cpp │ │ │ │ │ │ ├── core_type_vec1.cpp │ │ │ │ │ │ ├── core_type_vec2.cpp │ │ │ │ │ │ ├── core_type_vec3.cpp │ │ │ │ │ │ └── core_type_vec4.cpp │ │ │ │ │ ├── ext │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── ext_matrix_clip_space.cpp │ │ │ │ │ │ ├── ext_matrix_common.cpp │ │ │ │ │ │ ├── ext_matrix_int2x2_sized.cpp │ │ │ │ │ │ ├── ext_matrix_int2x3_sized.cpp │ │ │ │ │ │ ├── ext_matrix_int2x4_sized.cpp │ │ │ │ │ │ ├── ext_matrix_int3x2_sized.cpp │ │ │ │ │ │ ├── ext_matrix_int3x3_sized.cpp │ │ │ │ │ │ ├── ext_matrix_int3x4_sized.cpp │ │ │ │ │ │ ├── ext_matrix_int4x2_sized.cpp │ │ │ │ │ │ ├── ext_matrix_int4x3_sized.cpp │ │ │ │ │ │ ├── ext_matrix_int4x4_sized.cpp │ │ │ │ │ │ ├── ext_matrix_integer.cpp │ │ │ │ │ │ ├── ext_matrix_projection.cpp │ │ │ │ │ │ ├── ext_matrix_relational.cpp │ │ │ │ │ │ ├── ext_matrix_transform.cpp │ │ │ │ │ │ ├── ext_matrix_uint2x2_sized.cpp │ │ │ │ │ │ ├── ext_matrix_uint2x3_sized.cpp │ │ │ │ │ │ ├── ext_matrix_uint2x4_sized.cpp │ │ │ │ │ │ ├── ext_matrix_uint3x2_sized.cpp │ │ │ │ │ │ ├── ext_matrix_uint3x3_sized.cpp │ │ │ │ │ │ ├── ext_matrix_uint3x4_sized.cpp │ │ │ │ │ │ ├── ext_matrix_uint4x2_sized.cpp │ │ │ │ │ │ ├── ext_matrix_uint4x3_sized.cpp │ │ │ │ │ │ ├── ext_matrix_uint4x4_sized.cpp │ │ │ │ │ │ ├── ext_quaternion_common.cpp │ │ │ │ │ │ ├── ext_quaternion_exponential.cpp │ │ │ │ │ │ ├── ext_quaternion_geometric.cpp │ │ │ │ │ │ ├── ext_quaternion_relational.cpp │ │ │ │ │ │ ├── ext_quaternion_transform.cpp │ │ │ │ │ │ ├── ext_quaternion_trigonometric.cpp │ │ │ │ │ │ ├── ext_quaternion_type.cpp │ │ │ │ │ │ ├── ext_scalar_common.cpp │ │ │ │ │ │ ├── ext_scalar_constants.cpp │ │ │ │ │ │ ├── ext_scalar_int_sized.cpp │ │ │ │ │ │ ├── ext_scalar_integer.cpp │ │ │ │ │ │ ├── ext_scalar_packing.cpp │ │ │ │ │ │ ├── ext_scalar_reciprocal.cpp │ │ │ │ │ │ ├── ext_scalar_relational.cpp │ │ │ │ │ │ ├── ext_scalar_uint_sized.cpp │ │ │ │ │ │ ├── ext_scalar_ulp.cpp │ │ │ │ │ │ ├── ext_vec1.cpp │ │ │ │ │ │ ├── ext_vector_bool1.cpp │ │ │ │ │ │ ├── ext_vector_common.cpp │ │ │ │ │ │ ├── ext_vector_iec559.cpp │ │ │ │ │ │ ├── ext_vector_int1_sized.cpp │ │ │ │ │ │ ├── ext_vector_int2_sized.cpp │ │ │ │ │ │ ├── ext_vector_int3_sized.cpp │ │ │ │ │ │ ├── ext_vector_int4_sized.cpp │ │ │ │ │ │ ├── ext_vector_integer.cpp │ │ │ │ │ │ ├── ext_vector_integer_sized.cpp │ │ │ │ │ │ ├── ext_vector_packing.cpp │ │ │ │ │ │ ├── ext_vector_reciprocal.cpp │ │ │ │ │ │ ├── ext_vector_relational.cpp │ │ │ │ │ │ ├── ext_vector_uint1_sized.cpp │ │ │ │ │ │ ├── ext_vector_uint2_sized.cpp │ │ │ │ │ │ ├── ext_vector_uint3_sized.cpp │ │ │ │ │ │ ├── ext_vector_uint4_sized.cpp │ │ │ │ │ │ └── ext_vector_ulp.cpp │ │ │ │ │ ├── glm.cppcheck │ │ │ │ │ ├── gtc │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── gtc_bitfield.cpp │ │ │ │ │ │ ├── gtc_color_space.cpp │ │ │ │ │ │ ├── gtc_constants.cpp │ │ │ │ │ │ ├── gtc_epsilon.cpp │ │ │ │ │ │ ├── gtc_integer.cpp │ │ │ │ │ │ ├── gtc_matrix_access.cpp │ │ │ │ │ │ ├── gtc_matrix_integer.cpp │ │ │ │ │ │ ├── gtc_matrix_inverse.cpp │ │ │ │ │ │ ├── gtc_matrix_transform.cpp │ │ │ │ │ │ ├── gtc_noise.cpp │ │ │ │ │ │ ├── gtc_packing.cpp │ │ │ │ │ │ ├── gtc_quaternion.cpp │ │ │ │ │ │ ├── gtc_random.cpp │ │ │ │ │ │ ├── gtc_reciprocal.cpp │ │ │ │ │ │ ├── gtc_round.cpp │ │ │ │ │ │ ├── gtc_type_aligned.cpp │ │ │ │ │ │ ├── gtc_type_precision.cpp │ │ │ │ │ │ ├── gtc_type_ptr.cpp │ │ │ │ │ │ ├── gtc_ulp.cpp │ │ │ │ │ │ ├── gtc_user_defined_types.cpp │ │ │ │ │ │ └── gtc_vec1.cpp │ │ │ │ │ ├── gtx │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── gtx.cpp │ │ │ │ │ │ ├── gtx_associated_min_max.cpp │ │ │ │ │ │ ├── gtx_closest_point.cpp │ │ │ │ │ │ ├── gtx_color_encoding.cpp │ │ │ │ │ │ ├── gtx_color_space.cpp │ │ │ │ │ │ ├── gtx_color_space_YCoCg.cpp │ │ │ │ │ │ ├── gtx_common.cpp │ │ │ │ │ │ ├── gtx_compatibility.cpp │ │ │ │ │ │ ├── gtx_component_wise.cpp │ │ │ │ │ │ ├── gtx_dual_quaternion.cpp │ │ │ │ │ │ ├── gtx_easing.cpp │ │ │ │ │ │ ├── gtx_euler_angle.cpp │ │ │ │ │ │ ├── gtx_extend.cpp │ │ │ │ │ │ ├── gtx_extended_min_max.cpp │ │ │ │ │ │ ├── gtx_extented_min_max.cpp │ │ │ │ │ │ ├── gtx_exterior_product.cpp │ │ │ │ │ │ ├── gtx_fast_exponential.cpp │ │ │ │ │ │ ├── gtx_fast_square_root.cpp │ │ │ │ │ │ ├── gtx_fast_trigonometry.cpp │ │ │ │ │ │ ├── gtx_functions.cpp │ │ │ │ │ │ ├── gtx_gradient_paint.cpp │ │ │ │ │ │ ├── gtx_handed_coordinate_space.cpp │ │ │ │ │ │ ├── gtx_hash.cpp │ │ │ │ │ │ ├── gtx_int_10_10_10_2.cpp │ │ │ │ │ │ ├── gtx_integer.cpp │ │ │ │ │ │ ├── gtx_intersect.cpp │ │ │ │ │ │ ├── gtx_io.cpp │ │ │ │ │ │ ├── gtx_load.cpp │ │ │ │ │ │ ├── gtx_log_base.cpp │ │ │ │ │ │ ├── gtx_matrix_cross_product.cpp │ │ │ │ │ │ ├── gtx_matrix_decompose.cpp │ │ │ │ │ │ ├── gtx_matrix_factorisation.cpp │ │ │ │ │ │ ├── gtx_matrix_interpolation.cpp │ │ │ │ │ │ ├── gtx_matrix_major_storage.cpp │ │ │ │ │ │ ├── gtx_matrix_operation.cpp │ │ │ │ │ │ ├── gtx_matrix_query.cpp │ │ │ │ │ │ ├── gtx_matrix_transform_2d.cpp │ │ │ │ │ │ ├── gtx_mixed_product.cpp │ │ │ │ │ │ ├── gtx_norm.cpp │ │ │ │ │ │ ├── gtx_normal.cpp │ │ │ │ │ │ ├── gtx_normalize_dot.cpp │ │ │ │ │ │ ├── gtx_number_precision.cpp │ │ │ │ │ │ ├── gtx_optimum_pow.cpp │ │ │ │ │ │ ├── gtx_orthonormalize.cpp │ │ │ │ │ │ ├── gtx_pca.cpp │ │ │ │ │ │ ├── gtx_perpendicular.cpp │ │ │ │ │ │ ├── gtx_polar_coordinates.cpp │ │ │ │ │ │ ├── gtx_projection.cpp │ │ │ │ │ │ ├── gtx_quaternion.cpp │ │ │ │ │ │ ├── gtx_random.cpp │ │ │ │ │ │ ├── gtx_range.cpp │ │ │ │ │ │ ├── gtx_rotate_normalized_axis.cpp │ │ │ │ │ │ ├── gtx_rotate_vector.cpp │ │ │ │ │ │ ├── gtx_scalar_multiplication.cpp │ │ │ │ │ │ ├── gtx_scalar_relational.cpp │ │ │ │ │ │ ├── gtx_simd_mat4.cpp │ │ │ │ │ │ ├── gtx_simd_vec4.cpp │ │ │ │ │ │ ├── gtx_spline.cpp │ │ │ │ │ │ ├── gtx_string_cast.cpp │ │ │ │ │ │ ├── gtx_texture.cpp │ │ │ │ │ │ ├── gtx_type_aligned.cpp │ │ │ │ │ │ ├── gtx_type_trait.cpp │ │ │ │ │ │ ├── gtx_vec_swizzle.cpp │ │ │ │ │ │ ├── gtx_vector_angle.cpp │ │ │ │ │ │ ├── gtx_vector_query.cpp │ │ │ │ │ │ └── gtx_wrap.cpp │ │ │ │ │ └── perf │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── perf_matrix_div.cpp │ │ │ │ │ │ ├── perf_matrix_inverse.cpp │ │ │ │ │ │ ├── perf_matrix_mul.cpp │ │ │ │ │ │ ├── perf_matrix_mul_vector.cpp │ │ │ │ │ │ ├── perf_matrix_transpose.cpp │ │ │ │ │ │ └── perf_vector_mul_matrix.cpp │ │ │ │ └── util │ │ │ │ │ ├── autoexp.txt │ │ │ │ │ ├── autoexp.vc2010.dat │ │ │ │ │ ├── glm.natvis │ │ │ │ │ └── usertype.dat │ │ │ │ └── stbi_image_write.h │ │ ├── mcmc_relocation │ │ │ ├── CMakeLists.txt │ │ │ ├── ext.cpp │ │ │ ├── mcmc_relocation.cu │ │ │ ├── mcmc_relocation │ │ │ │ └── __init__.py │ │ │ └── setup.py │ │ └── simple-knn │ │ │ ├── ext.cpp │ │ │ ├── setup.py │ │ │ ├── simple_knn.cu │ │ │ ├── simple_knn.h │ │ │ ├── simple_knn │ │ │ └── .gitkeep │ │ │ ├── spatial.cu │ │ │ └── spatial.h │ ├── test.py │ ├── tests │ │ ├── .gitignore │ │ ├── dataset │ │ │ ├── .gitignore │ │ │ └── nerfies_dataparser_test.py │ │ ├── deformable_model_test.py │ │ ├── gaussian_model_test.py │ │ ├── gaussian_projection_test.py │ │ ├── network_factory_test.py │ │ └── positional_encoding_test.py │ ├── utils │ │ ├── add_pypath.py │ │ ├── auto_hyper_parameter.py │ │ ├── ckpt2ply.py │ │ ├── colmap_undistort_mask.py │ │ ├── common.py │ │ ├── convert2splat.py │ │ ├── distibuted_tasks.py │ │ ├── edit_with_histories.py │ │ ├── eval_blender.py │ │ ├── eval_mipnerf360.py │ │ ├── finetune_partition.py │ │ ├── gaussian_transform.py │ │ ├── generate_image_apperance_groups.py │ │ ├── generate_image_apperance_groups_by_exposure.py │ │ ├── generate_image_list.py │ │ ├── get_sam_embeddings.py │ │ ├── get_sam_mask_scales.py │ │ ├── get_sam_masks.py │ │ ├── image_downsample.py │ │ ├── matrix_city_depth_to_point_cloud.py │ │ ├── matrix_city_frame_group_slice.py │ │ ├── matrix_city_group_continuous_frame.py │ │ ├── merge_distributed_ckpts.py │ │ ├── merge_ply.py │ │ ├── requirements.txt │ │ ├── show_cameras.py │ │ └── train_colmap_partitions.py │ └── viewer.py ├── JointPointFields │ ├── step1_poisson_recons.py │ ├── step2_get_coarse_obj.py │ └── step3_repair_scene_gaussian.py ├── PGSR │ ├── README.md │ ├── arguments │ │ └── __init__.py │ ├── full_eval.py │ ├── gaussian_renderer │ │ ├── __init__.py │ │ └── network_gui.py │ ├── lpipsPyTorch │ │ ├── __init__.py │ │ └── modules │ │ │ ├── lpips.py │ │ │ ├── networks.py │ │ │ └── utils.py │ ├── metrics.py │ ├── raw_scene │ │ ├── __init__.py │ │ ├── app_model.py │ │ ├── cameras.py │ │ ├── colmap_loader.py │ │ ├── dataset_readers.py │ │ └── gaussian_model.py │ ├── render.py │ ├── render_orientnormals.py │ ├── requirements.txt │ ├── run.sh │ ├── scene_obj │ │ ├── __init__.py │ │ ├── app_model.py │ │ ├── cameras.py │ │ ├── colmap_loader.py │ │ ├── dataset_readers.py │ │ └── gaussian_model.py │ ├── scene_surface │ │ ├── __init__.py │ │ ├── app_model.py │ │ ├── cameras.py │ │ ├── colmap_loader.py │ │ ├── dataset_readers.py │ │ └── gaussian_model.py │ ├── scripts │ │ ├── dtu_eval.py │ │ ├── preprocess │ │ │ ├── convert.py │ │ │ ├── convert_data_to_json.py │ │ │ ├── convert_dtu.py │ │ │ ├── convert_tnt.py │ │ │ ├── database.py │ │ │ └── read_write_model.py │ │ ├── render_dtu.py │ │ ├── render_tnt.py │ │ ├── run_dtu.py │ │ ├── run_mip360.py │ │ ├── run_tnt.py │ │ └── tnt_eval │ │ │ ├── README.md │ │ │ ├── config.py │ │ │ ├── evaluation.py │ │ │ ├── plot.py │ │ │ ├── registration.py │ │ │ ├── requirements.txt │ │ │ ├── run.py │ │ │ ├── trajectory_io.py │ │ │ └── util.py │ ├── submodules │ │ ├── diff-plane-rasterization │ │ │ ├── .gitignore │ │ │ ├── .gitmodules │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── cuda_rasterizer │ │ │ │ ├── auxiliary.h │ │ │ │ ├── backward.cu │ │ │ │ ├── backward.h │ │ │ │ ├── config.h │ │ │ │ ├── forward.cu │ │ │ │ ├── forward.h │ │ │ │ ├── rasterizer.h │ │ │ │ ├── rasterizer_impl.cu │ │ │ │ └── rasterizer_impl.h │ │ │ ├── diff_plane_rasterization │ │ │ │ └── __init__.py │ │ │ ├── ext.cpp │ │ │ ├── rasterize_points.cu │ │ │ ├── rasterize_points.h │ │ │ ├── setup.py │ │ │ └── third_party │ │ │ │ ├── glm │ │ │ │ ├── .appveyor.yml │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── cmake │ │ │ │ │ └── cmake_uninstall.cmake.in │ │ │ │ ├── copying.txt │ │ │ │ ├── doc │ │ │ │ │ ├── api │ │ │ │ │ │ ├── a00001_source.html │ │ │ │ │ │ ├── a00002_source.html │ │ │ │ │ │ ├── a00003_source.html │ │ │ │ │ │ ├── a00004_source.html │ │ │ │ │ │ ├── a00005_source.html │ │ │ │ │ │ ├── a00006_source.html │ │ │ │ │ │ ├── a00007.html │ │ │ │ │ │ ├── a00007_source.html │ │ │ │ │ │ ├── a00008.html │ │ │ │ │ │ ├── a00008_source.html │ │ │ │ │ │ ├── a00009.html │ │ │ │ │ │ ├── a00009_source.html │ │ │ │ │ │ ├── a00010.html │ │ │ │ │ │ ├── a00010_source.html │ │ │ │ │ │ ├── a00011.html │ │ │ │ │ │ ├── a00011_source.html │ │ │ │ │ │ ├── a00012.html │ │ │ │ │ │ ├── a00012_source.html │ │ │ │ │ │ ├── a00013.html │ │ │ │ │ │ ├── a00013_source.html │ │ │ │ │ │ ├── a00014.html │ │ │ │ │ │ ├── a00014_source.html │ │ │ │ │ │ ├── a00015.html │ │ │ │ │ │ ├── a00015_source.html │ │ │ │ │ │ ├── a00016.html │ │ │ │ │ │ ├── a00016_source.html │ │ │ │ │ │ ├── a00017.html │ │ │ │ │ │ ├── a00017_source.html │ │ │ │ │ │ ├── a00018.html │ │ │ │ │ │ ├── a00018_source.html │ │ │ │ │ │ ├── a00019_source.html │ │ │ │ │ │ ├── a00020_source.html │ │ │ │ │ │ ├── a00021.html │ │ │ │ │ │ ├── a00021_source.html │ │ │ │ │ │ ├── a00022.html │ │ │ │ │ │ ├── a00022_source.html │ │ │ │ │ │ ├── a00023.html │ │ │ │ │ │ ├── a00023_source.html │ │ │ │ │ │ ├── a00024.html │ │ │ │ │ │ ├── a00024_source.html │ │ │ │ │ │ ├── a00025.html │ │ │ │ │ │ ├── a00025_source.html │ │ │ │ │ │ ├── a00026.html │ │ │ │ │ │ ├── a00026_source.html │ │ │ │ │ │ ├── a00027.html │ │ │ │ │ │ ├── a00027_source.html │ │ │ │ │ │ ├── a00028.html │ │ │ │ │ │ ├── a00028_source.html │ │ │ │ │ │ ├── a00029.html │ │ │ │ │ │ ├── a00029_source.html │ │ │ │ │ │ ├── a00030.html │ │ │ │ │ │ ├── a00030_source.html │ │ │ │ │ │ ├── a00031.html │ │ │ │ │ │ ├── a00031_source.html │ │ │ │ │ │ ├── a00032.html │ │ │ │ │ │ ├── a00032_source.html │ │ │ │ │ │ ├── a00033.html │ │ │ │ │ │ ├── a00033_source.html │ │ │ │ │ │ ├── a00034.html │ │ │ │ │ │ ├── a00034_source.html │ │ │ │ │ │ ├── a00035_source.html │ │ │ │ │ │ ├── a00036.html │ │ │ │ │ │ ├── a00036_source.html │ │ │ │ │ │ ├── a00037.html │ │ │ │ │ │ ├── a00037_source.html │ │ │ │ │ │ ├── a00038.html │ │ │ │ │ │ ├── a00038_source.html │ │ │ │ │ │ ├── a00039.html │ │ │ │ │ │ ├── a00039_source.html │ │ │ │ │ │ ├── a00040.html │ │ │ │ │ │ ├── a00040_source.html │ │ │ │ │ │ ├── a00041.html │ │ │ │ │ │ ├── a00041_source.html │ │ │ │ │ │ ├── a00042.html │ │ │ │ │ │ ├── a00042_source.html │ │ │ │ │ │ ├── a00043.html │ │ │ │ │ │ ├── a00043_source.html │ │ │ │ │ │ ├── a00044.html │ │ │ │ │ │ ├── a00044_source.html │ │ │ │ │ │ ├── a00045.html │ │ │ │ │ │ ├── a00045_source.html │ │ │ │ │ │ ├── a00046.html │ │ │ │ │ │ ├── a00046_source.html │ │ │ │ │ │ ├── a00047_source.html │ │ │ │ │ │ ├── a00048.html │ │ │ │ │ │ ├── a00048_source.html │ │ │ │ │ │ ├── a00049.html │ │ │ │ │ │ ├── a00049_source.html │ │ │ │ │ │ ├── a00050.html │ │ │ │ │ │ ├── a00050_source.html │ │ │ │ │ │ ├── a00051.html │ │ │ │ │ │ ├── a00051_source.html │ │ │ │ │ │ ├── a00052.html │ │ │ │ │ │ ├── a00052_source.html │ │ │ │ │ │ ├── a00053.html │ │ │ │ │ │ ├── a00053_source.html │ │ │ │ │ │ ├── a00054.html │ │ │ │ │ │ ├── a00054_source.html │ │ │ │ │ │ ├── a00055.html │ │ │ │ │ │ ├── a00055_source.html │ │ │ │ │ │ ├── a00056.html │ │ │ │ │ │ ├── a00056_source.html │ │ │ │ │ │ ├── a00057.html │ │ │ │ │ │ ├── a00057_source.html │ │ │ │ │ │ ├── a00058.html │ │ │ │ │ │ ├── a00058_source.html │ │ │ │ │ │ ├── a00059.html │ │ │ │ │ │ ├── a00059_source.html │ │ │ │ │ │ ├── a00060.html │ │ │ │ │ │ ├── a00060_source.html │ │ │ │ │ │ ├── a00061.html │ │ │ │ │ │ ├── a00061_source.html │ │ │ │ │ │ ├── a00062.html │ │ │ │ │ │ ├── a00062_source.html │ │ │ │ │ │ ├── a00063.html │ │ │ │ │ │ ├── a00063_source.html │ │ │ │ │ │ ├── a00064.html │ │ │ │ │ │ ├── a00064_source.html │ │ │ │ │ │ ├── a00065.html │ │ │ │ │ │ ├── a00065_source.html │ │ │ │ │ │ ├── a00066.html │ │ │ │ │ │ ├── a00066_source.html │ │ │ │ │ │ ├── a00067.html │ │ │ │ │ │ ├── a00067_source.html │ │ │ │ │ │ ├── a00068.html │ │ │ │ │ │ ├── a00068_source.html │ │ │ │ │ │ ├── a00069.html │ │ │ │ │ │ ├── a00069_source.html │ │ │ │ │ │ ├── a00070.html │ │ │ │ │ │ ├── a00070_source.html │ │ │ │ │ │ ├── a00071.html │ │ │ │ │ │ ├── a00071_source.html │ │ │ │ │ │ ├── a00072.html │ │ │ │ │ │ ├── a00072_source.html │ │ │ │ │ │ ├── a00073.html │ │ │ │ │ │ ├── a00073_source.html │ │ │ │ │ │ ├── a00074.html │ │ │ │ │ │ ├── a00074_source.html │ │ │ │ │ │ ├── a00075.html │ │ │ │ │ │ ├── a00075_source.html │ │ │ │ │ │ ├── a00076.html │ │ │ │ │ │ ├── a00076_source.html │ │ │ │ │ │ ├── a00077.html │ │ │ │ │ │ ├── a00077_source.html │ │ │ │ │ │ ├── a00078.html │ │ │ │ │ │ ├── a00078_source.html │ │ │ │ │ │ ├── a00079.html │ │ │ │ │ │ ├── a00079_source.html │ │ │ │ │ │ ├── a00080.html │ │ │ │ │ │ ├── a00080_source.html │ │ │ │ │ │ ├── a00081.html │ │ │ │ │ │ ├── a00081_source.html │ │ │ │ │ │ ├── a00082.html │ │ │ │ │ │ ├── a00082_source.html │ │ │ │ │ │ ├── a00083.html │ │ │ │ │ │ ├── a00083_source.html │ │ │ │ │ │ ├── a00084.html │ │ │ │ │ │ ├── a00084_source.html │ │ │ │ │ │ ├── a00085.html │ │ │ │ │ │ ├── a00085_source.html │ │ │ │ │ │ ├── a00086.html │ │ │ │ │ │ ├── a00086_source.html │ │ │ │ │ │ ├── a00087.html │ │ │ │ │ │ ├── a00087_source.html │ │ │ │ │ │ ├── a00088.html │ │ │ │ │ │ ├── a00088_source.html │ │ │ │ │ │ ├── a00089.html │ │ │ │ │ │ ├── a00089_source.html │ │ │ │ │ │ ├── a00090.html │ │ │ │ │ │ ├── a00090_source.html │ │ │ │ │ │ ├── a00091.html │ │ │ │ │ │ ├── a00091_source.html │ │ │ │ │ │ ├── a00092.html │ │ │ │ │ │ ├── a00092_source.html │ │ │ │ │ │ ├── a00093.html │ │ │ │ │ │ ├── a00093_source.html │ │ │ │ │ │ ├── a00094.html │ │ │ │ │ │ ├── a00094_source.html │ │ │ │ │ │ ├── a00095_source.html │ │ │ │ │ │ ├── a00096.html │ │ │ │ │ │ ├── a00096_source.html │ │ │ │ │ │ ├── a00097.html │ │ │ │ │ │ ├── a00097_source.html │ │ │ │ │ │ ├── a00098.html │ │ │ │ │ │ ├── a00098_source.html │ │ │ │ │ │ ├── a00099.html │ │ │ │ │ │ ├── a00099_source.html │ │ │ │ │ │ ├── a00100.html │ │ │ │ │ │ ├── a00100_source.html │ │ │ │ │ │ ├── a00101.html │ │ │ │ │ │ ├── a00101_source.html │ │ │ │ │ │ ├── a00102.html │ │ │ │ │ │ ├── a00102_source.html │ │ │ │ │ │ ├── a00103.html │ │ │ │ │ │ ├── a00103_source.html │ │ │ │ │ │ ├── a00104.html │ │ │ │ │ │ ├── a00104_source.html │ │ │ │ │ │ ├── a00105.html │ │ │ │ │ │ ├── a00105_source.html │ │ │ │ │ │ ├── a00106.html │ │ │ │ │ │ ├── a00106_source.html │ │ │ │ │ │ ├── a00107.html │ │ │ │ │ │ ├── a00107_source.html │ │ │ │ │ │ ├── a00108.html │ │ │ │ │ │ ├── a00108_source.html │ │ │ │ │ │ ├── a00109.html │ │ │ │ │ │ ├── a00109_source.html │ │ │ │ │ │ ├── a00110.html │ │ │ │ │ │ ├── a00110_source.html │ │ │ │ │ │ ├── a00111.html │ │ │ │ │ │ ├── a00111_source.html │ │ │ │ │ │ ├── a00112.html │ │ │ │ │ │ ├── a00112_source.html │ │ │ │ │ │ ├── a00113.html │ │ │ │ │ │ ├── a00113_source.html │ │ │ │ │ │ ├── a00114.html │ │ │ │ │ │ ├── a00114_source.html │ │ │ │ │ │ ├── a00115.html │ │ │ │ │ │ ├── a00115_source.html │ │ │ │ │ │ ├── a00116.html │ │ │ │ │ │ ├── a00116_source.html │ │ │ │ │ │ ├── a00117.html │ │ │ │ │ │ ├── a00117_source.html │ │ │ │ │ │ ├── a00118.html │ │ │ │ │ │ ├── a00118_source.html │ │ │ │ │ │ ├── a00119.html │ │ │ │ │ │ ├── a00119_source.html │ │ │ │ │ │ ├── a00120.html │ │ │ │ │ │ ├── a00120_source.html │ │ │ │ │ │ ├── a00121.html │ │ │ │ │ │ ├── a00121_source.html │ │ │ │ │ │ ├── a00122.html │ │ │ │ │ │ ├── a00122_source.html │ │ │ │ │ │ ├── a00123.html │ │ │ │ │ │ ├── a00123_source.html │ │ │ │ │ │ ├── a00124_source.html │ │ │ │ │ │ ├── a00125.html │ │ │ │ │ │ ├── a00125_source.html │ │ │ │ │ │ ├── a00126.html │ │ │ │ │ │ ├── a00126_source.html │ │ │ │ │ │ ├── a00127.html │ │ │ │ │ │ ├── a00127_source.html │ │ │ │ │ │ ├── a00128.html │ │ │ │ │ │ ├── a00128_source.html │ │ │ │ │ │ ├── a00129.html │ │ │ │ │ │ ├── a00129_source.html │ │ │ │ │ │ ├── a00130.html │ │ │ │ │ │ ├── a00130_source.html │ │ │ │ │ │ ├── a00131.html │ │ │ │ │ │ ├── a00131_source.html │ │ │ │ │ │ ├── a00132.html │ │ │ │ │ │ ├── a00132_source.html │ │ │ │ │ │ ├── a00133.html │ │ │ │ │ │ ├── a00133_source.html │ │ │ │ │ │ ├── a00134.html │ │ │ │ │ │ ├── a00134_source.html │ │ │ │ │ │ ├── a00135.html │ │ │ │ │ │ ├── a00135_source.html │ │ │ │ │ │ ├── a00136.html │ │ │ │ │ │ ├── a00136_source.html │ │ │ │ │ │ ├── a00137.html │ │ │ │ │ │ ├── a00137_source.html │ │ │ │ │ │ ├── a00138.html │ │ │ │ │ │ ├── a00138_source.html │ │ │ │ │ │ ├── a00139.html │ │ │ │ │ │ ├── a00139_source.html │ │ │ │ │ │ ├── a00140.html │ │ │ │ │ │ ├── a00140_source.html │ │ │ │ │ │ ├── a00141.html │ │ │ │ │ │ ├── a00141_source.html │ │ │ │ │ │ ├── a00142.html │ │ │ │ │ │ ├── a00142_source.html │ │ │ │ │ │ ├── a00143.html │ │ │ │ │ │ ├── a00143_source.html │ │ │ │ │ │ ├── a00144.html │ │ │ │ │ │ ├── a00144_source.html │ │ │ │ │ │ ├── a00145.html │ │ │ │ │ │ ├── a00145_source.html │ │ │ │ │ │ ├── a00146.html │ │ │ │ │ │ ├── a00146_source.html │ │ │ │ │ │ ├── a00147.html │ │ │ │ │ │ ├── a00147_source.html │ │ │ │ │ │ ├── a00148.html │ │ │ │ │ │ ├── a00148_source.html │ │ │ │ │ │ ├── a00149.html │ │ │ │ │ │ ├── a00149_source.html │ │ │ │ │ │ ├── a00150.html │ │ │ │ │ │ ├── a00150_source.html │ │ │ │ │ │ ├── a00151.html │ │ │ │ │ │ ├── a00151_source.html │ │ │ │ │ │ ├── a00152.html │ │ │ │ │ │ ├── a00152_source.html │ │ │ │ │ │ ├── a00153_source.html │ │ │ │ │ │ ├── a00154.html │ │ │ │ │ │ ├── a00154_source.html │ │ │ │ │ │ ├── a00155.html │ │ │ │ │ │ ├── a00155_source.html │ │ │ │ │ │ ├── a00156.html │ │ │ │ │ │ ├── a00156_source.html │ │ │ │ │ │ ├── a00157.html │ │ │ │ │ │ ├── a00157_source.html │ │ │ │ │ │ ├── a00158.html │ │ │ │ │ │ ├── a00158_source.html │ │ │ │ │ │ ├── a00159.html │ │ │ │ │ │ ├── a00159_source.html │ │ │ │ │ │ ├── a00160.html │ │ │ │ │ │ ├── a00160_source.html │ │ │ │ │ │ ├── a00161.html │ │ │ │ │ │ ├── a00161_source.html │ │ │ │ │ │ ├── a00162.html │ │ │ │ │ │ ├── a00162_source.html │ │ │ │ │ │ ├── a00163_source.html │ │ │ │ │ │ ├── a00164_source.html │ │ │ │ │ │ ├── a00165.html │ │ │ │ │ │ ├── a00165_source.html │ │ │ │ │ │ ├── a00166.html │ │ │ │ │ │ ├── a00166_source.html │ │ │ │ │ │ ├── a00167.html │ │ │ │ │ │ ├── a00167_source.html │ │ │ │ │ │ ├── a00168.html │ │ │ │ │ │ ├── a00168_source.html │ │ │ │ │ │ ├── a00169.html │ │ │ │ │ │ ├── a00169_source.html │ │ │ │ │ │ ├── a00170.html │ │ │ │ │ │ ├── a00170_source.html │ │ │ │ │ │ ├── a00171.html │ │ │ │ │ │ ├── a00171_source.html │ │ │ │ │ │ ├── a00172.html │ │ │ │ │ │ ├── a00172_source.html │ │ │ │ │ │ ├── a00173.html │ │ │ │ │ │ ├── a00173_source.html │ │ │ │ │ │ ├── a00174.html │ │ │ │ │ │ ├── a00174_source.html │ │ │ │ │ │ ├── a00175.html │ │ │ │ │ │ ├── a00175_source.html │ │ │ │ │ │ ├── a00176.html │ │ │ │ │ │ ├── a00176_source.html │ │ │ │ │ │ ├── a00177.html │ │ │ │ │ │ ├── a00177_source.html │ │ │ │ │ │ ├── a00178.html │ │ │ │ │ │ ├── a00178_source.html │ │ │ │ │ │ ├── a00179.html │ │ │ │ │ │ ├── a00179_source.html │ │ │ │ │ │ ├── a00180.html │ │ │ │ │ │ ├── a00180_source.html │ │ │ │ │ │ ├── a00181.html │ │ │ │ │ │ ├── a00181_source.html │ │ │ │ │ │ ├── a00182.html │ │ │ │ │ │ ├── a00182_source.html │ │ │ │ │ │ ├── a00183.html │ │ │ │ │ │ ├── a00183_source.html │ │ │ │ │ │ ├── a00184.html │ │ │ │ │ │ ├── a00184_source.html │ │ │ │ │ │ ├── a00185.html │ │ │ │ │ │ ├── a00185_source.html │ │ │ │ │ │ ├── a00186.html │ │ │ │ │ │ ├── a00186_source.html │ │ │ │ │ │ ├── a00187.html │ │ │ │ │ │ ├── a00187_source.html │ │ │ │ │ │ ├── a00188.html │ │ │ │ │ │ ├── a00188_source.html │ │ │ │ │ │ ├── a00189.html │ │ │ │ │ │ ├── a00189_source.html │ │ │ │ │ │ ├── a00190.html │ │ │ │ │ │ ├── a00190_source.html │ │ │ │ │ │ ├── a00191.html │ │ │ │ │ │ ├── a00191_source.html │ │ │ │ │ │ ├── a00192.html │ │ │ │ │ │ ├── a00192_source.html │ │ │ │ │ │ ├── a00193.html │ │ │ │ │ │ ├── a00193_source.html │ │ │ │ │ │ ├── a00194.html │ │ │ │ │ │ ├── a00194_source.html │ │ │ │ │ │ ├── a00195.html │ │ │ │ │ │ ├── a00195_source.html │ │ │ │ │ │ ├── a00196.html │ │ │ │ │ │ ├── a00196_source.html │ │ │ │ │ │ ├── a00197.html │ │ │ │ │ │ ├── a00197_source.html │ │ │ │ │ │ ├── a00198.html │ │ │ │ │ │ ├── a00198_source.html │ │ │ │ │ │ ├── a00199.html │ │ │ │ │ │ ├── a00199_source.html │ │ │ │ │ │ ├── a00200.html │ │ │ │ │ │ ├── a00200_source.html │ │ │ │ │ │ ├── a00201.html │ │ │ │ │ │ ├── a00201_source.html │ │ │ │ │ │ ├── a00202.html │ │ │ │ │ │ ├── a00202_source.html │ │ │ │ │ │ ├── a00203.html │ │ │ │ │ │ ├── a00203_source.html │ │ │ │ │ │ ├── a00204.html │ │ │ │ │ │ ├── a00204_source.html │ │ │ │ │ │ ├── a00205.html │ │ │ │ │ │ ├── a00205_source.html │ │ │ │ │ │ ├── a00206.html │ │ │ │ │ │ ├── a00206_source.html │ │ │ │ │ │ ├── a00207.html │ │ │ │ │ │ ├── a00207_source.html │ │ │ │ │ │ ├── a00208.html │ │ │ │ │ │ ├── a00208_source.html │ │ │ │ │ │ ├── a00209.html │ │ │ │ │ │ ├── a00209_source.html │ │ │ │ │ │ ├── a00210.html │ │ │ │ │ │ ├── a00210_source.html │ │ │ │ │ │ ├── a00211.html │ │ │ │ │ │ ├── a00211_source.html │ │ │ │ │ │ ├── a00212.html │ │ │ │ │ │ ├── a00212_source.html │ │ │ │ │ │ ├── a00213.html │ │ │ │ │ │ ├── a00213_source.html │ │ │ │ │ │ ├── a00214.html │ │ │ │ │ │ ├── a00214_source.html │ │ │ │ │ │ ├── a00215.html │ │ │ │ │ │ ├── a00215_source.html │ │ │ │ │ │ ├── a00216.html │ │ │ │ │ │ ├── a00216_source.html │ │ │ │ │ │ ├── a00217.html │ │ │ │ │ │ ├── a00217_source.html │ │ │ │ │ │ ├── a00218.html │ │ │ │ │ │ ├── a00218_source.html │ │ │ │ │ │ ├── a00219.html │ │ │ │ │ │ ├── a00219_source.html │ │ │ │ │ │ ├── a00220.html │ │ │ │ │ │ ├── a00220_source.html │ │ │ │ │ │ ├── a00221.html │ │ │ │ │ │ ├── a00221_source.html │ │ │ │ │ │ ├── a00222.html │ │ │ │ │ │ ├── a00222_source.html │ │ │ │ │ │ ├── a00223.html │ │ │ │ │ │ ├── a00223_source.html │ │ │ │ │ │ ├── a00224.html │ │ │ │ │ │ ├── a00224_source.html │ │ │ │ │ │ ├── a00225.html │ │ │ │ │ │ ├── a00225_source.html │ │ │ │ │ │ ├── a00226.html │ │ │ │ │ │ ├── a00226_source.html │ │ │ │ │ │ ├── a00227.html │ │ │ │ │ │ ├── a00227_source.html │ │ │ │ │ │ ├── a00228.html │ │ │ │ │ │ ├── a00228_source.html │ │ │ │ │ │ ├── a00229.html │ │ │ │ │ │ ├── a00229_source.html │ │ │ │ │ │ ├── a00230.html │ │ │ │ │ │ ├── a00230_source.html │ │ │ │ │ │ ├── a00231.html │ │ │ │ │ │ ├── a00231_source.html │ │ │ │ │ │ ├── a00232.html │ │ │ │ │ │ ├── a00232_source.html │ │ │ │ │ │ ├── a00233.html │ │ │ │ │ │ ├── a00233_source.html │ │ │ │ │ │ ├── a00234.html │ │ │ │ │ │ ├── a00234_source.html │ │ │ │ │ │ ├── a00235.html │ │ │ │ │ │ ├── a00235_source.html │ │ │ │ │ │ ├── a00241.html │ │ │ │ │ │ ├── a00242.html │ │ │ │ │ │ ├── a00243.html │ │ │ │ │ │ ├── a00244.html │ │ │ │ │ │ ├── a00245.html │ │ │ │ │ │ ├── a00246.html │ │ │ │ │ │ ├── a00247.html │ │ │ │ │ │ ├── a00248.html │ │ │ │ │ │ ├── a00249.html │ │ │ │ │ │ ├── a00250.html │ │ │ │ │ │ ├── a00251.html │ │ │ │ │ │ ├── a00252.html │ │ │ │ │ │ ├── a00253.html │ │ │ │ │ │ ├── a00254.html │ │ │ │ │ │ ├── a00255.html │ │ │ │ │ │ ├── a00256.html │ │ │ │ │ │ ├── a00257.html │ │ │ │ │ │ ├── a00258.html │ │ │ │ │ │ ├── a00259.html │ │ │ │ │ │ ├── a00260.html │ │ │ │ │ │ ├── a00261.html │ │ │ │ │ │ ├── a00262.html │ │ │ │ │ │ ├── a00263.html │ │ │ │ │ │ ├── a00264.html │ │ │ │ │ │ ├── a00265.html │ │ │ │ │ │ ├── a00266.html │ │ │ │ │ │ ├── a00267.html │ │ │ │ │ │ ├── a00268.html │ │ │ │ │ │ ├── a00269.html │ │ │ │ │ │ ├── a00270.html │ │ │ │ │ │ ├── a00271.html │ │ │ │ │ │ ├── a00272.html │ │ │ │ │ │ ├── a00273.html │ │ │ │ │ │ ├── a00274.html │ │ │ │ │ │ ├── a00275.html │ │ │ │ │ │ ├── a00276.html │ │ │ │ │ │ ├── a00277.html │ │ │ │ │ │ ├── a00278.html │ │ │ │ │ │ ├── a00279.html │ │ │ │ │ │ ├── a00280.html │ │ │ │ │ │ ├── a00281.html │ │ │ │ │ │ ├── a00282.html │ │ │ │ │ │ ├── a00283.html │ │ │ │ │ │ ├── a00284.html │ │ │ │ │ │ ├── a00285.html │ │ │ │ │ │ ├── a00286.html │ │ │ │ │ │ ├── a00287.html │ │ │ │ │ │ ├── a00288.html │ │ │ │ │ │ ├── a00289.html │ │ │ │ │ │ ├── a00290.html │ │ │ │ │ │ ├── a00291.html │ │ │ │ │ │ ├── a00292.html │ │ │ │ │ │ ├── a00293.html │ │ │ │ │ │ ├── a00294.html │ │ │ │ │ │ ├── a00295.html │ │ │ │ │ │ ├── a00296.html │ │ │ │ │ │ ├── a00297.html │ │ │ │ │ │ ├── a00298.html │ │ │ │ │ │ ├── a00299.html │ │ │ │ │ │ ├── a00300.html │ │ │ │ │ │ ├── a00301.html │ │ │ │ │ │ ├── a00302.html │ │ │ │ │ │ ├── a00303.html │ │ │ │ │ │ ├── a00304.html │ │ │ │ │ │ ├── a00305.html │ │ │ │ │ │ ├── a00306.html │ │ │ │ │ │ ├── a00307.html │ │ │ │ │ │ ├── a00308.html │ │ │ │ │ │ ├── a00309.html │ │ │ │ │ │ ├── a00310.html │ │ │ │ │ │ ├── a00311.html │ │ │ │ │ │ ├── a00312.html │ │ │ │ │ │ ├── a00313.html │ │ │ │ │ │ ├── a00314.html │ │ │ │ │ │ ├── a00315.html │ │ │ │ │ │ ├── a00316.html │ │ │ │ │ │ ├── a00317.html │ │ │ │ │ │ ├── a00318.html │ │ │ │ │ │ ├── a00319.html │ │ │ │ │ │ ├── a00320.html │ │ │ │ │ │ ├── a00321.html │ │ │ │ │ │ ├── a00322.html │ │ │ │ │ │ ├── a00323.html │ │ │ │ │ │ ├── a00324.html │ │ │ │ │ │ ├── a00325.html │ │ │ │ │ │ ├── a00326.html │ │ │ │ │ │ ├── a00327.html │ │ │ │ │ │ ├── a00328.html │ │ │ │ │ │ ├── a00329.html │ │ │ │ │ │ ├── a00330.html │ │ │ │ │ │ ├── a00331.html │ │ │ │ │ │ ├── a00332.html │ │ │ │ │ │ ├── a00333.html │ │ │ │ │ │ ├── a00334.html │ │ │ │ │ │ ├── a00335.html │ │ │ │ │ │ ├── a00336.html │ │ │ │ │ │ ├── a00337.html │ │ │ │ │ │ ├── a00338.html │ │ │ │ │ │ ├── a00339.html │ │ │ │ │ │ ├── a00340.html │ │ │ │ │ │ ├── a00341.html │ │ │ │ │ │ ├── a00342.html │ │ │ │ │ │ ├── a00343.html │ │ │ │ │ │ ├── a00344.html │ │ │ │ │ │ ├── a00345.html │ │ │ │ │ │ ├── a00346.html │ │ │ │ │ │ ├── a00347.html │ │ │ │ │ │ ├── a00348.html │ │ │ │ │ │ ├── a00349.html │ │ │ │ │ │ ├── a00350.html │ │ │ │ │ │ ├── a00351.html │ │ │ │ │ │ ├── a00352.html │ │ │ │ │ │ ├── a00353.html │ │ │ │ │ │ ├── a00354.html │ │ │ │ │ │ ├── a00355.html │ │ │ │ │ │ ├── a00356.html │ │ │ │ │ │ ├── a00357.html │ │ │ │ │ │ ├── a00358.html │ │ │ │ │ │ ├── a00359.html │ │ │ │ │ │ ├── a00360.html │ │ │ │ │ │ ├── a00361.html │ │ │ │ │ │ ├── a00362.html │ │ │ │ │ │ ├── a00363.html │ │ │ │ │ │ ├── a00364.html │ │ │ │ │ │ ├── a00365.html │ │ │ │ │ │ ├── a00366.html │ │ │ │ │ │ ├── a00367.html │ │ │ │ │ │ ├── a00368.html │ │ │ │ │ │ ├── a00369.html │ │ │ │ │ │ ├── a00370.html │ │ │ │ │ │ ├── a00371.html │ │ │ │ │ │ ├── a00372.html │ │ │ │ │ │ ├── a00373.html │ │ │ │ │ │ ├── a00374.html │ │ │ │ │ │ ├── arrowdown.png │ │ │ │ │ │ ├── arrowright.png │ │ │ │ │ │ ├── bc_s.png │ │ │ │ │ │ ├── bdwn.png │ │ │ │ │ │ ├── closed.png │ │ │ │ │ │ ├── dir_033f5edb0915b828d2c46ed4804e5503.html │ │ │ │ │ │ ├── dir_3a581ba30d25676e4b797b1f96d53b45.html │ │ │ │ │ │ ├── dir_44e5e654415abd9ca6fdeaddaff8565e.html │ │ │ │ │ │ ├── dir_4c6bd29c73fa4e5a2509e1c15f846751.html │ │ │ │ │ │ ├── dir_5189610d3ba09ec39b766fb99b34cd93.html │ │ │ │ │ │ ├── dir_6b66465792d005310484819a0eb0b0d3.html │ │ │ │ │ │ ├── dir_9e5fe034a00e89334fd5186c3e7db156.html │ │ │ │ │ │ ├── dir_a8bee7be44182a33f3820393ae0b105d.html │ │ │ │ │ │ ├── dir_cef2d71d502cb69a9252bca2297d9549.html │ │ │ │ │ │ ├── dir_d9496f0844b48bc7e53b5af8c99b9ab2.html │ │ │ │ │ │ ├── dir_f35778ec600a1b9bbc4524e62e226aa2.html │ │ │ │ │ │ ├── doc.png │ │ │ │ │ │ ├── doxygen.css │ │ │ │ │ │ ├── doxygen.png │ │ │ │ │ │ ├── dynsections.js │ │ │ │ │ │ ├── files.html │ │ │ │ │ │ ├── folderclosed.png │ │ │ │ │ │ ├── folderopen.png │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── logo-mini.png │ │ │ │ │ │ ├── modules.html │ │ │ │ │ │ ├── nav_f.png │ │ │ │ │ │ ├── nav_g.png │ │ │ │ │ │ ├── nav_h.png │ │ │ │ │ │ ├── open.png │ │ │ │ │ │ ├── search │ │ │ │ │ │ │ ├── all_0.html │ │ │ │ │ │ │ ├── all_0.js │ │ │ │ │ │ │ ├── all_1.html │ │ │ │ │ │ │ ├── all_1.js │ │ │ │ │ │ │ ├── all_10.html │ │ │ │ │ │ │ ├── all_10.js │ │ │ │ │ │ │ ├── all_11.html │ │ │ │ │ │ │ ├── all_11.js │ │ │ │ │ │ │ ├── all_12.html │ │ │ │ │ │ │ ├── all_12.js │ │ │ │ │ │ │ ├── all_13.html │ │ │ │ │ │ │ ├── all_13.js │ │ │ │ │ │ │ ├── all_14.html │ │ │ │ │ │ │ ├── all_14.js │ │ │ │ │ │ │ ├── all_15.html │ │ │ │ │ │ │ ├── all_15.js │ │ │ │ │ │ │ ├── all_16.html │ │ │ │ │ │ │ ├── all_16.js │ │ │ │ │ │ │ ├── all_2.html │ │ │ │ │ │ │ ├── all_2.js │ │ │ │ │ │ │ ├── all_3.html │ │ │ │ │ │ │ ├── all_3.js │ │ │ │ │ │ │ ├── all_4.html │ │ │ │ │ │ │ ├── all_4.js │ │ │ │ │ │ │ ├── all_5.html │ │ │ │ │ │ │ ├── all_5.js │ │ │ │ │ │ │ ├── all_6.html │ │ │ │ │ │ │ ├── all_6.js │ │ │ │ │ │ │ ├── all_7.html │ │ │ │ │ │ │ ├── all_7.js │ │ │ │ │ │ │ ├── all_8.html │ │ │ │ │ │ │ ├── all_8.js │ │ │ │ │ │ │ ├── all_9.html │ │ │ │ │ │ │ ├── all_9.js │ │ │ │ │ │ │ ├── all_a.html │ │ │ │ │ │ │ ├── all_a.js │ │ │ │ │ │ │ ├── all_b.html │ │ │ │ │ │ │ ├── all_b.js │ │ │ │ │ │ │ ├── all_c.html │ │ │ │ │ │ │ ├── all_c.js │ │ │ │ │ │ │ ├── all_d.html │ │ │ │ │ │ │ ├── all_d.js │ │ │ │ │ │ │ ├── all_e.html │ │ │ │ │ │ │ ├── all_e.js │ │ │ │ │ │ │ ├── all_f.html │ │ │ │ │ │ │ ├── all_f.js │ │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ │ ├── files_0.html │ │ │ │ │ │ │ ├── files_0.js │ │ │ │ │ │ │ ├── files_1.html │ │ │ │ │ │ │ ├── files_1.js │ │ │ │ │ │ │ ├── files_10.html │ │ │ │ │ │ │ ├── files_10.js │ │ │ │ │ │ │ ├── files_11.html │ │ │ │ │ │ │ ├── files_11.js │ │ │ │ │ │ │ ├── files_12.html │ │ │ │ │ │ │ ├── files_12.js │ │ │ │ │ │ │ ├── files_13.html │ │ │ │ │ │ │ ├── files_13.js │ │ │ │ │ │ │ ├── files_14.html │ │ │ │ │ │ │ ├── files_14.js │ │ │ │ │ │ │ ├── files_2.html │ │ │ │ │ │ │ ├── files_2.js │ │ │ │ │ │ │ ├── files_3.html │ │ │ │ │ │ │ ├── files_3.js │ │ │ │ │ │ │ ├── files_4.html │ │ │ │ │ │ │ ├── files_4.js │ │ │ │ │ │ │ ├── files_5.html │ │ │ │ │ │ │ ├── files_5.js │ │ │ │ │ │ │ ├── files_6.html │ │ │ │ │ │ │ ├── files_6.js │ │ │ │ │ │ │ ├── files_7.html │ │ │ │ │ │ │ ├── files_7.js │ │ │ │ │ │ │ ├── files_8.html │ │ │ │ │ │ │ ├── files_8.js │ │ │ │ │ │ │ ├── files_9.html │ │ │ │ │ │ │ ├── files_9.js │ │ │ │ │ │ │ ├── files_a.html │ │ │ │ │ │ │ ├── files_a.js │ │ │ │ │ │ │ ├── files_b.html │ │ │ │ │ │ │ ├── files_b.js │ │ │ │ │ │ │ ├── files_c.html │ │ │ │ │ │ │ ├── files_c.js │ │ │ │ │ │ │ ├── files_d.html │ │ │ │ │ │ │ ├── files_d.js │ │ │ │ │ │ │ ├── files_e.html │ │ │ │ │ │ │ ├── files_e.js │ │ │ │ │ │ │ ├── files_f.html │ │ │ │ │ │ │ ├── files_f.js │ │ │ │ │ │ │ ├── functions_0.html │ │ │ │ │ │ │ ├── functions_0.js │ │ │ │ │ │ │ ├── functions_1.html │ │ │ │ │ │ │ ├── functions_1.js │ │ │ │ │ │ │ ├── functions_10.html │ │ │ │ │ │ │ ├── functions_10.js │ │ │ │ │ │ │ ├── functions_11.html │ │ │ │ │ │ │ ├── functions_11.js │ │ │ │ │ │ │ ├── functions_12.html │ │ │ │ │ │ │ ├── functions_12.js │ │ │ │ │ │ │ ├── functions_13.html │ │ │ │ │ │ │ ├── functions_13.js │ │ │ │ │ │ │ ├── functions_14.html │ │ │ │ │ │ │ ├── functions_14.js │ │ │ │ │ │ │ ├── functions_15.html │ │ │ │ │ │ │ ├── functions_15.js │ │ │ │ │ │ │ ├── functions_16.html │ │ │ │ │ │ │ ├── functions_16.js │ │ │ │ │ │ │ ├── functions_2.html │ │ │ │ │ │ │ ├── functions_2.js │ │ │ │ │ │ │ ├── functions_3.html │ │ │ │ │ │ │ ├── functions_3.js │ │ │ │ │ │ │ ├── functions_4.html │ │ │ │ │ │ │ ├── functions_4.js │ │ │ │ │ │ │ ├── functions_5.html │ │ │ │ │ │ │ ├── functions_5.js │ │ │ │ │ │ │ ├── functions_6.html │ │ │ │ │ │ │ ├── functions_6.js │ │ │ │ │ │ │ ├── functions_7.html │ │ │ │ │ │ │ ├── functions_7.js │ │ │ │ │ │ │ ├── functions_8.html │ │ │ │ │ │ │ ├── functions_8.js │ │ │ │ │ │ │ ├── functions_9.html │ │ │ │ │ │ │ ├── functions_9.js │ │ │ │ │ │ │ ├── functions_a.html │ │ │ │ │ │ │ ├── functions_a.js │ │ │ │ │ │ │ ├── functions_b.html │ │ │ │ │ │ │ ├── functions_b.js │ │ │ │ │ │ │ ├── functions_c.html │ │ │ │ │ │ │ ├── functions_c.js │ │ │ │ │ │ │ ├── functions_d.html │ │ │ │ │ │ │ ├── functions_d.js │ │ │ │ │ │ │ ├── functions_e.html │ │ │ │ │ │ │ ├── functions_e.js │ │ │ │ │ │ │ ├── functions_f.html │ │ │ │ │ │ │ ├── functions_f.js │ │ │ │ │ │ │ ├── groups_0.html │ │ │ │ │ │ │ ├── groups_0.js │ │ │ │ │ │ │ ├── groups_1.html │ │ │ │ │ │ │ ├── groups_1.js │ │ │ │ │ │ │ ├── groups_2.html │ │ │ │ │ │ │ ├── groups_2.js │ │ │ │ │ │ │ ├── groups_3.html │ │ │ │ │ │ │ ├── groups_3.js │ │ │ │ │ │ │ ├── groups_4.html │ │ │ │ │ │ │ ├── groups_4.js │ │ │ │ │ │ │ ├── groups_5.html │ │ │ │ │ │ │ ├── groups_5.js │ │ │ │ │ │ │ ├── groups_6.html │ │ │ │ │ │ │ ├── groups_6.js │ │ │ │ │ │ │ ├── groups_7.html │ │ │ │ │ │ │ ├── groups_7.js │ │ │ │ │ │ │ ├── groups_8.html │ │ │ │ │ │ │ ├── groups_8.js │ │ │ │ │ │ │ ├── groups_9.html │ │ │ │ │ │ │ ├── groups_9.js │ │ │ │ │ │ │ ├── mag_sel.png │ │ │ │ │ │ │ ├── nomatches.html │ │ │ │ │ │ │ ├── pages_0.html │ │ │ │ │ │ │ ├── pages_0.js │ │ │ │ │ │ │ ├── search.css │ │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ │ ├── search_l.png │ │ │ │ │ │ │ ├── search_m.png │ │ │ │ │ │ │ ├── search_r.png │ │ │ │ │ │ │ ├── searchdata.js │ │ │ │ │ │ │ ├── typedefs_0.html │ │ │ │ │ │ │ ├── typedefs_0.js │ │ │ │ │ │ │ ├── typedefs_1.html │ │ │ │ │ │ │ ├── typedefs_1.js │ │ │ │ │ │ │ ├── typedefs_2.html │ │ │ │ │ │ │ ├── typedefs_2.js │ │ │ │ │ │ │ ├── typedefs_3.html │ │ │ │ │ │ │ ├── typedefs_3.js │ │ │ │ │ │ │ ├── typedefs_4.html │ │ │ │ │ │ │ ├── typedefs_4.js │ │ │ │ │ │ │ ├── typedefs_5.html │ │ │ │ │ │ │ ├── typedefs_5.js │ │ │ │ │ │ │ ├── typedefs_6.html │ │ │ │ │ │ │ ├── typedefs_6.js │ │ │ │ │ │ │ ├── typedefs_7.html │ │ │ │ │ │ │ ├── typedefs_7.js │ │ │ │ │ │ │ ├── typedefs_8.html │ │ │ │ │ │ │ ├── typedefs_8.js │ │ │ │ │ │ │ ├── typedefs_9.html │ │ │ │ │ │ │ ├── typedefs_9.js │ │ │ │ │ │ │ ├── typedefs_a.html │ │ │ │ │ │ │ ├── typedefs_a.js │ │ │ │ │ │ │ ├── typedefs_b.html │ │ │ │ │ │ │ ├── typedefs_b.js │ │ │ │ │ │ │ ├── typedefs_c.html │ │ │ │ │ │ │ ├── typedefs_c.js │ │ │ │ │ │ │ ├── typedefs_d.html │ │ │ │ │ │ │ └── typedefs_d.js │ │ │ │ │ │ ├── splitbar.png │ │ │ │ │ │ ├── sync_off.png │ │ │ │ │ │ ├── sync_on.png │ │ │ │ │ │ ├── tab_a.png │ │ │ │ │ │ ├── tab_b.png │ │ │ │ │ │ ├── tab_h.png │ │ │ │ │ │ ├── tab_s.png │ │ │ │ │ │ └── tabs.css │ │ │ │ │ ├── man.doxy │ │ │ │ │ ├── manual.pdf │ │ │ │ │ ├── manual │ │ │ │ │ │ ├── frontpage1.png │ │ │ │ │ │ ├── frontpage2.png │ │ │ │ │ │ ├── g-truc.png │ │ │ │ │ │ ├── logo-mini.png │ │ │ │ │ │ ├── noise-perlin1.jpg │ │ │ │ │ │ ├── noise-perlin2.jpg │ │ │ │ │ │ ├── noise-perlin3.jpg │ │ │ │ │ │ ├── noise-perlin4.png │ │ │ │ │ │ ├── noise-perlin5.png │ │ │ │ │ │ ├── noise-perlin6.png │ │ │ │ │ │ ├── noise-simplex1.jpg │ │ │ │ │ │ ├── noise-simplex2.jpg │ │ │ │ │ │ ├── noise-simplex3.jpg │ │ │ │ │ │ ├── random-ballrand.png │ │ │ │ │ │ ├── random-circularrand.png │ │ │ │ │ │ ├── random-diskrand.png │ │ │ │ │ │ ├── random-gaussrand.png │ │ │ │ │ │ ├── random-linearrand.png │ │ │ │ │ │ ├── random-sphericalrand.png │ │ │ │ │ │ ├── references-cinder.png │ │ │ │ │ │ ├── references-glsl4book.jpg │ │ │ │ │ │ ├── references-leosfortune.jpeg │ │ │ │ │ │ ├── references-leosfortune2.jpg │ │ │ │ │ │ ├── references-opencloth1.png │ │ │ │ │ │ ├── references-opencloth3.png │ │ │ │ │ │ ├── references-outerra1.jpg │ │ │ │ │ │ ├── references-outerra2.jpg │ │ │ │ │ │ ├── references-outerra3.jpg │ │ │ │ │ │ └── references-outerra4.jpg │ │ │ │ │ └── theme │ │ │ │ │ │ ├── bc_s.png │ │ │ │ │ │ ├── bdwn.png │ │ │ │ │ │ ├── closed.png │ │ │ │ │ │ ├── doc.png │ │ │ │ │ │ ├── doxygen.css │ │ │ │ │ │ ├── doxygen.png │ │ │ │ │ │ ├── folderclosed.png │ │ │ │ │ │ ├── folderopen.png │ │ │ │ │ │ ├── logo-mini.png │ │ │ │ │ │ ├── nav_f.png │ │ │ │ │ │ ├── nav_g.png │ │ │ │ │ │ ├── nav_h.png │ │ │ │ │ │ ├── open.png │ │ │ │ │ │ ├── splitbar.png │ │ │ │ │ │ ├── sync_off.png │ │ │ │ │ │ ├── sync_on.png │ │ │ │ │ │ ├── tab_a.png │ │ │ │ │ │ ├── tab_b.png │ │ │ │ │ │ ├── tab_h.png │ │ │ │ │ │ └── tab_s.png │ │ │ │ ├── glm │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── common.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── _features.hpp │ │ │ │ │ │ ├── _fixes.hpp │ │ │ │ │ │ ├── _noise.hpp │ │ │ │ │ │ ├── _swizzle.hpp │ │ │ │ │ │ ├── _swizzle_func.hpp │ │ │ │ │ │ ├── _vectorize.hpp │ │ │ │ │ │ ├── compute_common.hpp │ │ │ │ │ │ ├── compute_vector_relational.hpp │ │ │ │ │ │ ├── func_common.inl │ │ │ │ │ │ ├── func_common_simd.inl │ │ │ │ │ │ ├── func_exponential.inl │ │ │ │ │ │ ├── func_exponential_simd.inl │ │ │ │ │ │ ├── func_geometric.inl │ │ │ │ │ │ ├── func_geometric_simd.inl │ │ │ │ │ │ ├── func_integer.inl │ │ │ │ │ │ ├── func_integer_simd.inl │ │ │ │ │ │ ├── func_matrix.inl │ │ │ │ │ │ ├── func_matrix_simd.inl │ │ │ │ │ │ ├── func_packing.inl │ │ │ │ │ │ ├── func_packing_simd.inl │ │ │ │ │ │ ├── func_trigonometric.inl │ │ │ │ │ │ ├── func_trigonometric_simd.inl │ │ │ │ │ │ ├── func_vector_relational.inl │ │ │ │ │ │ ├── func_vector_relational_simd.inl │ │ │ │ │ │ ├── glm.cpp │ │ │ │ │ │ ├── qualifier.hpp │ │ │ │ │ │ ├── setup.hpp │ │ │ │ │ │ ├── type_float.hpp │ │ │ │ │ │ ├── type_half.hpp │ │ │ │ │ │ ├── type_half.inl │ │ │ │ │ │ ├── type_mat2x2.hpp │ │ │ │ │ │ ├── type_mat2x2.inl │ │ │ │ │ │ ├── type_mat2x3.hpp │ │ │ │ │ │ ├── type_mat2x3.inl │ │ │ │ │ │ ├── type_mat2x4.hpp │ │ │ │ │ │ ├── type_mat2x4.inl │ │ │ │ │ │ ├── type_mat3x2.hpp │ │ │ │ │ │ ├── type_mat3x2.inl │ │ │ │ │ │ ├── type_mat3x3.hpp │ │ │ │ │ │ ├── type_mat3x3.inl │ │ │ │ │ │ ├── type_mat3x4.hpp │ │ │ │ │ │ ├── type_mat3x4.inl │ │ │ │ │ │ ├── type_mat4x2.hpp │ │ │ │ │ │ ├── type_mat4x2.inl │ │ │ │ │ │ ├── type_mat4x3.hpp │ │ │ │ │ │ ├── type_mat4x3.inl │ │ │ │ │ │ ├── type_mat4x4.hpp │ │ │ │ │ │ ├── type_mat4x4.inl │ │ │ │ │ │ ├── type_mat4x4_simd.inl │ │ │ │ │ │ ├── type_quat.hpp │ │ │ │ │ │ ├── type_quat.inl │ │ │ │ │ │ ├── type_quat_simd.inl │ │ │ │ │ │ ├── type_vec1.hpp │ │ │ │ │ │ ├── type_vec1.inl │ │ │ │ │ │ ├── type_vec2.hpp │ │ │ │ │ │ ├── type_vec2.inl │ │ │ │ │ │ ├── type_vec3.hpp │ │ │ │ │ │ ├── type_vec3.inl │ │ │ │ │ │ ├── type_vec4.hpp │ │ │ │ │ │ ├── type_vec4.inl │ │ │ │ │ │ └── type_vec4_simd.inl │ │ │ │ │ ├── exponential.hpp │ │ │ │ │ ├── ext.hpp │ │ │ │ │ ├── ext │ │ │ │ │ │ ├── _matrix_vectorize.hpp │ │ │ │ │ │ ├── matrix_clip_space.hpp │ │ │ │ │ │ ├── matrix_clip_space.inl │ │ │ │ │ │ ├── matrix_common.hpp │ │ │ │ │ │ ├── matrix_common.inl │ │ │ │ │ │ ├── matrix_double2x2.hpp │ │ │ │ │ │ ├── matrix_double2x2_precision.hpp │ │ │ │ │ │ ├── matrix_double2x3.hpp │ │ │ │ │ │ ├── matrix_double2x3_precision.hpp │ │ │ │ │ │ ├── matrix_double2x4.hpp │ │ │ │ │ │ ├── matrix_double2x4_precision.hpp │ │ │ │ │ │ ├── matrix_double3x2.hpp │ │ │ │ │ │ ├── matrix_double3x2_precision.hpp │ │ │ │ │ │ ├── matrix_double3x3.hpp │ │ │ │ │ │ ├── matrix_double3x3_precision.hpp │ │ │ │ │ │ ├── matrix_double3x4.hpp │ │ │ │ │ │ ├── matrix_double3x4_precision.hpp │ │ │ │ │ │ ├── matrix_double4x2.hpp │ │ │ │ │ │ ├── matrix_double4x2_precision.hpp │ │ │ │ │ │ ├── matrix_double4x3.hpp │ │ │ │ │ │ ├── matrix_double4x3_precision.hpp │ │ │ │ │ │ ├── matrix_double4x4.hpp │ │ │ │ │ │ ├── matrix_double4x4_precision.hpp │ │ │ │ │ │ ├── matrix_float2x2.hpp │ │ │ │ │ │ ├── matrix_float2x2_precision.hpp │ │ │ │ │ │ ├── matrix_float2x3.hpp │ │ │ │ │ │ ├── matrix_float2x3_precision.hpp │ │ │ │ │ │ ├── matrix_float2x4.hpp │ │ │ │ │ │ ├── matrix_float2x4_precision.hpp │ │ │ │ │ │ ├── matrix_float3x2.hpp │ │ │ │ │ │ ├── matrix_float3x2_precision.hpp │ │ │ │ │ │ ├── matrix_float3x3.hpp │ │ │ │ │ │ ├── matrix_float3x3_precision.hpp │ │ │ │ │ │ ├── matrix_float3x4.hpp │ │ │ │ │ │ ├── matrix_float3x4_precision.hpp │ │ │ │ │ │ ├── matrix_float4x2.hpp │ │ │ │ │ │ ├── matrix_float4x2_precision.hpp │ │ │ │ │ │ ├── matrix_float4x3.hpp │ │ │ │ │ │ ├── matrix_float4x3_precision.hpp │ │ │ │ │ │ ├── matrix_float4x4.hpp │ │ │ │ │ │ ├── matrix_float4x4_precision.hpp │ │ │ │ │ │ ├── matrix_int2x2.hpp │ │ │ │ │ │ ├── matrix_int2x2_sized.hpp │ │ │ │ │ │ ├── matrix_int2x3.hpp │ │ │ │ │ │ ├── matrix_int2x3_sized.hpp │ │ │ │ │ │ ├── matrix_int2x4.hpp │ │ │ │ │ │ ├── matrix_int2x4_sized.hpp │ │ │ │ │ │ ├── matrix_int3x2.hpp │ │ │ │ │ │ ├── matrix_int3x2_sized.hpp │ │ │ │ │ │ ├── matrix_int3x3.hpp │ │ │ │ │ │ ├── matrix_int3x3_sized.hpp │ │ │ │ │ │ ├── matrix_int3x4.hpp │ │ │ │ │ │ ├── matrix_int3x4_sized.hpp │ │ │ │ │ │ ├── matrix_int4x2.hpp │ │ │ │ │ │ ├── matrix_int4x2_sized.hpp │ │ │ │ │ │ ├── matrix_int4x3.hpp │ │ │ │ │ │ ├── matrix_int4x3_sized.hpp │ │ │ │ │ │ ├── matrix_int4x4.hpp │ │ │ │ │ │ ├── matrix_int4x4_sized.hpp │ │ │ │ │ │ ├── matrix_integer.hpp │ │ │ │ │ │ ├── matrix_integer.inl │ │ │ │ │ │ ├── matrix_projection.hpp │ │ │ │ │ │ ├── matrix_projection.inl │ │ │ │ │ │ ├── matrix_relational.hpp │ │ │ │ │ │ ├── matrix_relational.inl │ │ │ │ │ │ ├── matrix_transform.hpp │ │ │ │ │ │ ├── matrix_transform.inl │ │ │ │ │ │ ├── matrix_uint2x2.hpp │ │ │ │ │ │ ├── matrix_uint2x2_sized.hpp │ │ │ │ │ │ ├── matrix_uint2x3.hpp │ │ │ │ │ │ ├── matrix_uint2x3_sized.hpp │ │ │ │ │ │ ├── matrix_uint2x4.hpp │ │ │ │ │ │ ├── matrix_uint2x4_sized.hpp │ │ │ │ │ │ ├── matrix_uint3x2.hpp │ │ │ │ │ │ ├── matrix_uint3x2_sized.hpp │ │ │ │ │ │ ├── matrix_uint3x3.hpp │ │ │ │ │ │ ├── matrix_uint3x3_sized.hpp │ │ │ │ │ │ ├── matrix_uint3x4.hpp │ │ │ │ │ │ ├── matrix_uint3x4_sized.hpp │ │ │ │ │ │ ├── matrix_uint4x2.hpp │ │ │ │ │ │ ├── matrix_uint4x2_sized.hpp │ │ │ │ │ │ ├── matrix_uint4x3.hpp │ │ │ │ │ │ ├── matrix_uint4x3_sized.hpp │ │ │ │ │ │ ├── matrix_uint4x4.hpp │ │ │ │ │ │ ├── matrix_uint4x4_sized.hpp │ │ │ │ │ │ ├── quaternion_common.hpp │ │ │ │ │ │ ├── quaternion_common.inl │ │ │ │ │ │ ├── quaternion_common_simd.inl │ │ │ │ │ │ ├── quaternion_double.hpp │ │ │ │ │ │ ├── quaternion_double_precision.hpp │ │ │ │ │ │ ├── quaternion_exponential.hpp │ │ │ │ │ │ ├── quaternion_exponential.inl │ │ │ │ │ │ ├── quaternion_float.hpp │ │ │ │ │ │ ├── quaternion_float_precision.hpp │ │ │ │ │ │ ├── quaternion_geometric.hpp │ │ │ │ │ │ ├── quaternion_geometric.inl │ │ │ │ │ │ ├── quaternion_relational.hpp │ │ │ │ │ │ ├── quaternion_relational.inl │ │ │ │ │ │ ├── quaternion_transform.hpp │ │ │ │ │ │ ├── quaternion_transform.inl │ │ │ │ │ │ ├── quaternion_trigonometric.hpp │ │ │ │ │ │ ├── quaternion_trigonometric.inl │ │ │ │ │ │ ├── scalar_common.hpp │ │ │ │ │ │ ├── scalar_common.inl │ │ │ │ │ │ ├── scalar_constants.hpp │ │ │ │ │ │ ├── scalar_constants.inl │ │ │ │ │ │ ├── scalar_int_sized.hpp │ │ │ │ │ │ ├── scalar_integer.hpp │ │ │ │ │ │ ├── scalar_integer.inl │ │ │ │ │ │ ├── scalar_packing.hpp │ │ │ │ │ │ ├── scalar_packing.inl │ │ │ │ │ │ ├── scalar_reciprocal.hpp │ │ │ │ │ │ ├── scalar_reciprocal.inl │ │ │ │ │ │ ├── scalar_relational.hpp │ │ │ │ │ │ ├── scalar_relational.inl │ │ │ │ │ │ ├── scalar_uint_sized.hpp │ │ │ │ │ │ ├── scalar_ulp.hpp │ │ │ │ │ │ ├── scalar_ulp.inl │ │ │ │ │ │ ├── vector_bool1.hpp │ │ │ │ │ │ ├── vector_bool1_precision.hpp │ │ │ │ │ │ ├── vector_bool2.hpp │ │ │ │ │ │ ├── vector_bool2_precision.hpp │ │ │ │ │ │ ├── vector_bool3.hpp │ │ │ │ │ │ ├── vector_bool3_precision.hpp │ │ │ │ │ │ ├── vector_bool4.hpp │ │ │ │ │ │ ├── vector_bool4_precision.hpp │ │ │ │ │ │ ├── vector_common.hpp │ │ │ │ │ │ ├── vector_common.inl │ │ │ │ │ │ ├── vector_double1.hpp │ │ │ │ │ │ ├── vector_double1_precision.hpp │ │ │ │ │ │ ├── vector_double2.hpp │ │ │ │ │ │ ├── vector_double2_precision.hpp │ │ │ │ │ │ ├── vector_double3.hpp │ │ │ │ │ │ ├── vector_double3_precision.hpp │ │ │ │ │ │ ├── vector_double4.hpp │ │ │ │ │ │ ├── vector_double4_precision.hpp │ │ │ │ │ │ ├── vector_float1.hpp │ │ │ │ │ │ ├── vector_float1_precision.hpp │ │ │ │ │ │ ├── vector_float2.hpp │ │ │ │ │ │ ├── vector_float2_precision.hpp │ │ │ │ │ │ ├── vector_float3.hpp │ │ │ │ │ │ ├── vector_float3_precision.hpp │ │ │ │ │ │ ├── vector_float4.hpp │ │ │ │ │ │ ├── vector_float4_precision.hpp │ │ │ │ │ │ ├── vector_int1.hpp │ │ │ │ │ │ ├── vector_int1_sized.hpp │ │ │ │ │ │ ├── vector_int2.hpp │ │ │ │ │ │ ├── vector_int2_sized.hpp │ │ │ │ │ │ ├── vector_int3.hpp │ │ │ │ │ │ ├── vector_int3_sized.hpp │ │ │ │ │ │ ├── vector_int4.hpp │ │ │ │ │ │ ├── vector_int4_sized.hpp │ │ │ │ │ │ ├── vector_integer.hpp │ │ │ │ │ │ ├── vector_integer.inl │ │ │ │ │ │ ├── vector_packing.hpp │ │ │ │ │ │ ├── vector_packing.inl │ │ │ │ │ │ ├── vector_reciprocal.hpp │ │ │ │ │ │ ├── vector_reciprocal.inl │ │ │ │ │ │ ├── vector_relational.hpp │ │ │ │ │ │ ├── vector_relational.inl │ │ │ │ │ │ ├── vector_uint1.hpp │ │ │ │ │ │ ├── vector_uint1_sized.hpp │ │ │ │ │ │ ├── vector_uint2.hpp │ │ │ │ │ │ ├── vector_uint2_sized.hpp │ │ │ │ │ │ ├── vector_uint3.hpp │ │ │ │ │ │ ├── vector_uint3_sized.hpp │ │ │ │ │ │ ├── vector_uint4.hpp │ │ │ │ │ │ ├── vector_uint4_sized.hpp │ │ │ │ │ │ ├── vector_ulp.hpp │ │ │ │ │ │ └── vector_ulp.inl │ │ │ │ │ ├── fwd.hpp │ │ │ │ │ ├── geometric.hpp │ │ │ │ │ ├── glm.hpp │ │ │ │ │ ├── gtc │ │ │ │ │ │ ├── bitfield.hpp │ │ │ │ │ │ ├── bitfield.inl │ │ │ │ │ │ ├── color_space.hpp │ │ │ │ │ │ ├── color_space.inl │ │ │ │ │ │ ├── constants.hpp │ │ │ │ │ │ ├── constants.inl │ │ │ │ │ │ ├── epsilon.hpp │ │ │ │ │ │ ├── epsilon.inl │ │ │ │ │ │ ├── integer.hpp │ │ │ │ │ │ ├── integer.inl │ │ │ │ │ │ ├── matrix_access.hpp │ │ │ │ │ │ ├── matrix_access.inl │ │ │ │ │ │ ├── matrix_integer.hpp │ │ │ │ │ │ ├── matrix_inverse.hpp │ │ │ │ │ │ ├── matrix_inverse.inl │ │ │ │ │ │ ├── matrix_transform.hpp │ │ │ │ │ │ ├── matrix_transform.inl │ │ │ │ │ │ ├── noise.hpp │ │ │ │ │ │ ├── noise.inl │ │ │ │ │ │ ├── packing.hpp │ │ │ │ │ │ ├── packing.inl │ │ │ │ │ │ ├── quaternion.hpp │ │ │ │ │ │ ├── quaternion.inl │ │ │ │ │ │ ├── quaternion_simd.inl │ │ │ │ │ │ ├── random.hpp │ │ │ │ │ │ ├── random.inl │ │ │ │ │ │ ├── reciprocal.hpp │ │ │ │ │ │ ├── round.hpp │ │ │ │ │ │ ├── round.inl │ │ │ │ │ │ ├── type_aligned.hpp │ │ │ │ │ │ ├── type_precision.hpp │ │ │ │ │ │ ├── type_precision.inl │ │ │ │ │ │ ├── type_ptr.hpp │ │ │ │ │ │ ├── type_ptr.inl │ │ │ │ │ │ ├── ulp.hpp │ │ │ │ │ │ ├── ulp.inl │ │ │ │ │ │ └── vec1.hpp │ │ │ │ │ ├── gtx │ │ │ │ │ │ ├── associated_min_max.hpp │ │ │ │ │ │ ├── associated_min_max.inl │ │ │ │ │ │ ├── bit.hpp │ │ │ │ │ │ ├── bit.inl │ │ │ │ │ │ ├── closest_point.hpp │ │ │ │ │ │ ├── closest_point.inl │ │ │ │ │ │ ├── color_encoding.hpp │ │ │ │ │ │ ├── color_encoding.inl │ │ │ │ │ │ ├── color_space.hpp │ │ │ │ │ │ ├── color_space.inl │ │ │ │ │ │ ├── color_space_YCoCg.hpp │ │ │ │ │ │ ├── color_space_YCoCg.inl │ │ │ │ │ │ ├── common.hpp │ │ │ │ │ │ ├── common.inl │ │ │ │ │ │ ├── compatibility.hpp │ │ │ │ │ │ ├── compatibility.inl │ │ │ │ │ │ ├── component_wise.hpp │ │ │ │ │ │ ├── component_wise.inl │ │ │ │ │ │ ├── dual_quaternion.hpp │ │ │ │ │ │ ├── dual_quaternion.inl │ │ │ │ │ │ ├── easing.hpp │ │ │ │ │ │ ├── easing.inl │ │ │ │ │ │ ├── euler_angles.hpp │ │ │ │ │ │ ├── euler_angles.inl │ │ │ │ │ │ ├── extend.hpp │ │ │ │ │ │ ├── extend.inl │ │ │ │ │ │ ├── extended_min_max.hpp │ │ │ │ │ │ ├── extended_min_max.inl │ │ │ │ │ │ ├── exterior_product.hpp │ │ │ │ │ │ ├── exterior_product.inl │ │ │ │ │ │ ├── fast_exponential.hpp │ │ │ │ │ │ ├── fast_exponential.inl │ │ │ │ │ │ ├── fast_square_root.hpp │ │ │ │ │ │ ├── fast_square_root.inl │ │ │ │ │ │ ├── fast_trigonometry.hpp │ │ │ │ │ │ ├── fast_trigonometry.inl │ │ │ │ │ │ ├── float_notmalize.inl │ │ │ │ │ │ ├── functions.hpp │ │ │ │ │ │ ├── functions.inl │ │ │ │ │ │ ├── gradient_paint.hpp │ │ │ │ │ │ ├── gradient_paint.inl │ │ │ │ │ │ ├── handed_coordinate_space.hpp │ │ │ │ │ │ ├── handed_coordinate_space.inl │ │ │ │ │ │ ├── hash.hpp │ │ │ │ │ │ ├── hash.inl │ │ │ │ │ │ ├── integer.hpp │ │ │ │ │ │ ├── integer.inl │ │ │ │ │ │ ├── intersect.hpp │ │ │ │ │ │ ├── intersect.inl │ │ │ │ │ │ ├── io.hpp │ │ │ │ │ │ ├── io.inl │ │ │ │ │ │ ├── log_base.hpp │ │ │ │ │ │ ├── log_base.inl │ │ │ │ │ │ ├── matrix_cross_product.hpp │ │ │ │ │ │ ├── matrix_cross_product.inl │ │ │ │ │ │ ├── matrix_decompose.hpp │ │ │ │ │ │ ├── matrix_decompose.inl │ │ │ │ │ │ ├── matrix_factorisation.hpp │ │ │ │ │ │ ├── matrix_factorisation.inl │ │ │ │ │ │ ├── matrix_interpolation.hpp │ │ │ │ │ │ ├── matrix_interpolation.inl │ │ │ │ │ │ ├── matrix_major_storage.hpp │ │ │ │ │ │ ├── matrix_major_storage.inl │ │ │ │ │ │ ├── matrix_operation.hpp │ │ │ │ │ │ ├── matrix_operation.inl │ │ │ │ │ │ ├── matrix_query.hpp │ │ │ │ │ │ ├── matrix_query.inl │ │ │ │ │ │ ├── matrix_transform_2d.hpp │ │ │ │ │ │ ├── matrix_transform_2d.inl │ │ │ │ │ │ ├── mixed_product.hpp │ │ │ │ │ │ ├── mixed_product.inl │ │ │ │ │ │ ├── norm.hpp │ │ │ │ │ │ ├── norm.inl │ │ │ │ │ │ ├── normal.hpp │ │ │ │ │ │ ├── normal.inl │ │ │ │ │ │ ├── normalize_dot.hpp │ │ │ │ │ │ ├── normalize_dot.inl │ │ │ │ │ │ ├── number_precision.hpp │ │ │ │ │ │ ├── number_precision.inl │ │ │ │ │ │ ├── optimum_pow.hpp │ │ │ │ │ │ ├── optimum_pow.inl │ │ │ │ │ │ ├── orthonormalize.hpp │ │ │ │ │ │ ├── orthonormalize.inl │ │ │ │ │ │ ├── pca.hpp │ │ │ │ │ │ ├── pca.inl │ │ │ │ │ │ ├── perpendicular.hpp │ │ │ │ │ │ ├── perpendicular.inl │ │ │ │ │ │ ├── polar_coordinates.hpp │ │ │ │ │ │ ├── polar_coordinates.inl │ │ │ │ │ │ ├── projection.hpp │ │ │ │ │ │ ├── projection.inl │ │ │ │ │ │ ├── quaternion.hpp │ │ │ │ │ │ ├── quaternion.inl │ │ │ │ │ │ ├── range.hpp │ │ │ │ │ │ ├── raw_data.hpp │ │ │ │ │ │ ├── raw_data.inl │ │ │ │ │ │ ├── rotate_normalized_axis.hpp │ │ │ │ │ │ ├── rotate_normalized_axis.inl │ │ │ │ │ │ ├── rotate_vector.hpp │ │ │ │ │ │ ├── rotate_vector.inl │ │ │ │ │ │ ├── scalar_multiplication.hpp │ │ │ │ │ │ ├── scalar_relational.hpp │ │ │ │ │ │ ├── scalar_relational.inl │ │ │ │ │ │ ├── spline.hpp │ │ │ │ │ │ ├── spline.inl │ │ │ │ │ │ ├── std_based_type.hpp │ │ │ │ │ │ ├── std_based_type.inl │ │ │ │ │ │ ├── string_cast.hpp │ │ │ │ │ │ ├── string_cast.inl │ │ │ │ │ │ ├── texture.hpp │ │ │ │ │ │ ├── texture.inl │ │ │ │ │ │ ├── transform.hpp │ │ │ │ │ │ ├── transform.inl │ │ │ │ │ │ ├── transform2.hpp │ │ │ │ │ │ ├── transform2.inl │ │ │ │ │ │ ├── type_aligned.hpp │ │ │ │ │ │ ├── type_aligned.inl │ │ │ │ │ │ ├── type_trait.hpp │ │ │ │ │ │ ├── type_trait.inl │ │ │ │ │ │ ├── vec_swizzle.hpp │ │ │ │ │ │ ├── vector_angle.hpp │ │ │ │ │ │ ├── vector_angle.inl │ │ │ │ │ │ ├── vector_query.hpp │ │ │ │ │ │ ├── vector_query.inl │ │ │ │ │ │ ├── wrap.hpp │ │ │ │ │ │ └── wrap.inl │ │ │ │ │ ├── integer.hpp │ │ │ │ │ ├── mat2x2.hpp │ │ │ │ │ ├── mat2x3.hpp │ │ │ │ │ ├── mat2x4.hpp │ │ │ │ │ ├── mat3x2.hpp │ │ │ │ │ ├── mat3x3.hpp │ │ │ │ │ ├── mat3x4.hpp │ │ │ │ │ ├── mat4x2.hpp │ │ │ │ │ ├── mat4x3.hpp │ │ │ │ │ ├── mat4x4.hpp │ │ │ │ │ ├── matrix.hpp │ │ │ │ │ ├── packing.hpp │ │ │ │ │ ├── simd │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ ├── exponential.h │ │ │ │ │ │ ├── geometric.h │ │ │ │ │ │ ├── integer.h │ │ │ │ │ │ ├── matrix.h │ │ │ │ │ │ ├── neon.h │ │ │ │ │ │ ├── packing.h │ │ │ │ │ │ ├── platform.h │ │ │ │ │ │ ├── trigonometric.h │ │ │ │ │ │ └── vector_relational.h │ │ │ │ │ ├── trigonometric.hpp │ │ │ │ │ ├── vec2.hpp │ │ │ │ │ ├── vec3.hpp │ │ │ │ │ ├── vec4.hpp │ │ │ │ │ └── vector_relational.hpp │ │ │ │ ├── manual.md │ │ │ │ ├── readme.md │ │ │ │ ├── test │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── bug │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── bug_ms_vec_static.cpp │ │ │ │ │ ├── cmake │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── test_find_glm.cpp │ │ │ │ │ ├── core │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── core_cpp_constexpr.cpp │ │ │ │ │ │ ├── core_cpp_defaulted_ctor.cpp │ │ │ │ │ │ ├── core_force_aligned_gentypes.cpp │ │ │ │ │ │ ├── core_force_arch_unknown.cpp │ │ │ │ │ │ ├── core_force_compiler_unknown.cpp │ │ │ │ │ │ ├── core_force_ctor_init.cpp │ │ │ │ │ │ ├── core_force_cxx03.cpp │ │ │ │ │ │ ├── core_force_cxx98.cpp │ │ │ │ │ │ ├── core_force_cxx_unknown.cpp │ │ │ │ │ │ ├── core_force_depth_zero_to_one.cpp │ │ │ │ │ │ ├── core_force_explicit_ctor.cpp │ │ │ │ │ │ ├── core_force_inline.cpp │ │ │ │ │ │ ├── core_force_left_handed.cpp │ │ │ │ │ │ ├── core_force_platform_unknown.cpp │ │ │ │ │ │ ├── core_force_pure.cpp │ │ │ │ │ │ ├── core_force_quat_xyzw.cpp │ │ │ │ │ │ ├── core_force_size_t_length.cpp │ │ │ │ │ │ ├── core_force_unrestricted_gentype.cpp │ │ │ │ │ │ ├── core_force_xyzw_only.cpp │ │ │ │ │ │ ├── core_func_common.cpp │ │ │ │ │ │ ├── core_func_exponential.cpp │ │ │ │ │ │ ├── core_func_geometric.cpp │ │ │ │ │ │ ├── core_func_integer.cpp │ │ │ │ │ │ ├── core_func_integer_bit_count.cpp │ │ │ │ │ │ ├── core_func_integer_find_lsb.cpp │ │ │ │ │ │ ├── core_func_integer_find_msb.cpp │ │ │ │ │ │ ├── core_func_matrix.cpp │ │ │ │ │ │ ├── core_func_noise.cpp │ │ │ │ │ │ ├── core_func_packing.cpp │ │ │ │ │ │ ├── core_func_swizzle.cpp │ │ │ │ │ │ ├── core_func_trigonometric.cpp │ │ │ │ │ │ ├── core_func_vector_relational.cpp │ │ │ │ │ │ ├── core_setup_force_cxx98.cpp │ │ │ │ │ │ ├── core_setup_force_size_t_length.cpp │ │ │ │ │ │ ├── core_setup_message.cpp │ │ │ │ │ │ ├── core_setup_platform_unknown.cpp │ │ │ │ │ │ ├── core_setup_precision.cpp │ │ │ │ │ │ ├── core_type_aligned.cpp │ │ │ │ │ │ ├── core_type_cast.cpp │ │ │ │ │ │ ├── core_type_ctor.cpp │ │ │ │ │ │ ├── core_type_int.cpp │ │ │ │ │ │ ├── core_type_length.cpp │ │ │ │ │ │ ├── core_type_mat2x2.cpp │ │ │ │ │ │ ├── core_type_mat2x3.cpp │ │ │ │ │ │ ├── core_type_mat2x4.cpp │ │ │ │ │ │ ├── core_type_mat3x2.cpp │ │ │ │ │ │ ├── core_type_mat3x3.cpp │ │ │ │ │ │ ├── core_type_mat3x4.cpp │ │ │ │ │ │ ├── core_type_mat4x2.cpp │ │ │ │ │ │ ├── core_type_mat4x3.cpp │ │ │ │ │ │ ├── core_type_mat4x4.cpp │ │ │ │ │ │ ├── core_type_vec1.cpp │ │ │ │ │ │ ├── core_type_vec2.cpp │ │ │ │ │ │ ├── core_type_vec3.cpp │ │ │ │ │ │ └── core_type_vec4.cpp │ │ │ │ │ ├── ext │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── ext_matrix_clip_space.cpp │ │ │ │ │ │ ├── ext_matrix_common.cpp │ │ │ │ │ │ ├── ext_matrix_int2x2_sized.cpp │ │ │ │ │ │ ├── ext_matrix_int2x3_sized.cpp │ │ │ │ │ │ ├── ext_matrix_int2x4_sized.cpp │ │ │ │ │ │ ├── ext_matrix_int3x2_sized.cpp │ │ │ │ │ │ ├── ext_matrix_int3x3_sized.cpp │ │ │ │ │ │ ├── ext_matrix_int3x4_sized.cpp │ │ │ │ │ │ ├── ext_matrix_int4x2_sized.cpp │ │ │ │ │ │ ├── ext_matrix_int4x3_sized.cpp │ │ │ │ │ │ ├── ext_matrix_int4x4_sized.cpp │ │ │ │ │ │ ├── ext_matrix_integer.cpp │ │ │ │ │ │ ├── ext_matrix_projection.cpp │ │ │ │ │ │ ├── ext_matrix_relational.cpp │ │ │ │ │ │ ├── ext_matrix_transform.cpp │ │ │ │ │ │ ├── ext_matrix_uint2x2_sized.cpp │ │ │ │ │ │ ├── ext_matrix_uint2x3_sized.cpp │ │ │ │ │ │ ├── ext_matrix_uint2x4_sized.cpp │ │ │ │ │ │ ├── ext_matrix_uint3x2_sized.cpp │ │ │ │ │ │ ├── ext_matrix_uint3x3_sized.cpp │ │ │ │ │ │ ├── ext_matrix_uint3x4_sized.cpp │ │ │ │ │ │ ├── ext_matrix_uint4x2_sized.cpp │ │ │ │ │ │ ├── ext_matrix_uint4x3_sized.cpp │ │ │ │ │ │ ├── ext_matrix_uint4x4_sized.cpp │ │ │ │ │ │ ├── ext_quaternion_common.cpp │ │ │ │ │ │ ├── ext_quaternion_exponential.cpp │ │ │ │ │ │ ├── ext_quaternion_geometric.cpp │ │ │ │ │ │ ├── ext_quaternion_relational.cpp │ │ │ │ │ │ ├── ext_quaternion_transform.cpp │ │ │ │ │ │ ├── ext_quaternion_trigonometric.cpp │ │ │ │ │ │ ├── ext_quaternion_type.cpp │ │ │ │ │ │ ├── ext_scalar_common.cpp │ │ │ │ │ │ ├── ext_scalar_constants.cpp │ │ │ │ │ │ ├── ext_scalar_int_sized.cpp │ │ │ │ │ │ ├── ext_scalar_integer.cpp │ │ │ │ │ │ ├── ext_scalar_packing.cpp │ │ │ │ │ │ ├── ext_scalar_reciprocal.cpp │ │ │ │ │ │ ├── ext_scalar_relational.cpp │ │ │ │ │ │ ├── ext_scalar_uint_sized.cpp │ │ │ │ │ │ ├── ext_scalar_ulp.cpp │ │ │ │ │ │ ├── ext_vec1.cpp │ │ │ │ │ │ ├── ext_vector_bool1.cpp │ │ │ │ │ │ ├── ext_vector_common.cpp │ │ │ │ │ │ ├── ext_vector_iec559.cpp │ │ │ │ │ │ ├── ext_vector_int1_sized.cpp │ │ │ │ │ │ ├── ext_vector_int2_sized.cpp │ │ │ │ │ │ ├── ext_vector_int3_sized.cpp │ │ │ │ │ │ ├── ext_vector_int4_sized.cpp │ │ │ │ │ │ ├── ext_vector_integer.cpp │ │ │ │ │ │ ├── ext_vector_integer_sized.cpp │ │ │ │ │ │ ├── ext_vector_packing.cpp │ │ │ │ │ │ ├── ext_vector_reciprocal.cpp │ │ │ │ │ │ ├── ext_vector_relational.cpp │ │ │ │ │ │ ├── ext_vector_uint1_sized.cpp │ │ │ │ │ │ ├── ext_vector_uint2_sized.cpp │ │ │ │ │ │ ├── ext_vector_uint3_sized.cpp │ │ │ │ │ │ ├── ext_vector_uint4_sized.cpp │ │ │ │ │ │ └── ext_vector_ulp.cpp │ │ │ │ │ ├── glm.cppcheck │ │ │ │ │ ├── gtc │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── gtc_bitfield.cpp │ │ │ │ │ │ ├── gtc_color_space.cpp │ │ │ │ │ │ ├── gtc_constants.cpp │ │ │ │ │ │ ├── gtc_epsilon.cpp │ │ │ │ │ │ ├── gtc_integer.cpp │ │ │ │ │ │ ├── gtc_matrix_access.cpp │ │ │ │ │ │ ├── gtc_matrix_integer.cpp │ │ │ │ │ │ ├── gtc_matrix_inverse.cpp │ │ │ │ │ │ ├── gtc_matrix_transform.cpp │ │ │ │ │ │ ├── gtc_noise.cpp │ │ │ │ │ │ ├── gtc_packing.cpp │ │ │ │ │ │ ├── gtc_quaternion.cpp │ │ │ │ │ │ ├── gtc_random.cpp │ │ │ │ │ │ ├── gtc_reciprocal.cpp │ │ │ │ │ │ ├── gtc_round.cpp │ │ │ │ │ │ ├── gtc_type_aligned.cpp │ │ │ │ │ │ ├── gtc_type_precision.cpp │ │ │ │ │ │ ├── gtc_type_ptr.cpp │ │ │ │ │ │ ├── gtc_ulp.cpp │ │ │ │ │ │ ├── gtc_user_defined_types.cpp │ │ │ │ │ │ └── gtc_vec1.cpp │ │ │ │ │ ├── gtx │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── gtx.cpp │ │ │ │ │ │ ├── gtx_associated_min_max.cpp │ │ │ │ │ │ ├── gtx_closest_point.cpp │ │ │ │ │ │ ├── gtx_color_encoding.cpp │ │ │ │ │ │ ├── gtx_color_space.cpp │ │ │ │ │ │ ├── gtx_color_space_YCoCg.cpp │ │ │ │ │ │ ├── gtx_common.cpp │ │ │ │ │ │ ├── gtx_compatibility.cpp │ │ │ │ │ │ ├── gtx_component_wise.cpp │ │ │ │ │ │ ├── gtx_dual_quaternion.cpp │ │ │ │ │ │ ├── gtx_easing.cpp │ │ │ │ │ │ ├── gtx_euler_angle.cpp │ │ │ │ │ │ ├── gtx_extend.cpp │ │ │ │ │ │ ├── gtx_extended_min_max.cpp │ │ │ │ │ │ ├── gtx_extented_min_max.cpp │ │ │ │ │ │ ├── gtx_exterior_product.cpp │ │ │ │ │ │ ├── gtx_fast_exponential.cpp │ │ │ │ │ │ ├── gtx_fast_square_root.cpp │ │ │ │ │ │ ├── gtx_fast_trigonometry.cpp │ │ │ │ │ │ ├── gtx_functions.cpp │ │ │ │ │ │ ├── gtx_gradient_paint.cpp │ │ │ │ │ │ ├── gtx_handed_coordinate_space.cpp │ │ │ │ │ │ ├── gtx_hash.cpp │ │ │ │ │ │ ├── gtx_int_10_10_10_2.cpp │ │ │ │ │ │ ├── gtx_integer.cpp │ │ │ │ │ │ ├── gtx_intersect.cpp │ │ │ │ │ │ ├── gtx_io.cpp │ │ │ │ │ │ ├── gtx_load.cpp │ │ │ │ │ │ ├── gtx_log_base.cpp │ │ │ │ │ │ ├── gtx_matrix_cross_product.cpp │ │ │ │ │ │ ├── gtx_matrix_decompose.cpp │ │ │ │ │ │ ├── gtx_matrix_factorisation.cpp │ │ │ │ │ │ ├── gtx_matrix_interpolation.cpp │ │ │ │ │ │ ├── gtx_matrix_major_storage.cpp │ │ │ │ │ │ ├── gtx_matrix_operation.cpp │ │ │ │ │ │ ├── gtx_matrix_query.cpp │ │ │ │ │ │ ├── gtx_matrix_transform_2d.cpp │ │ │ │ │ │ ├── gtx_mixed_product.cpp │ │ │ │ │ │ ├── gtx_norm.cpp │ │ │ │ │ │ ├── gtx_normal.cpp │ │ │ │ │ │ ├── gtx_normalize_dot.cpp │ │ │ │ │ │ ├── gtx_number_precision.cpp │ │ │ │ │ │ ├── gtx_optimum_pow.cpp │ │ │ │ │ │ ├── gtx_orthonormalize.cpp │ │ │ │ │ │ ├── gtx_pca.cpp │ │ │ │ │ │ ├── gtx_perpendicular.cpp │ │ │ │ │ │ ├── gtx_polar_coordinates.cpp │ │ │ │ │ │ ├── gtx_projection.cpp │ │ │ │ │ │ ├── gtx_quaternion.cpp │ │ │ │ │ │ ├── gtx_random.cpp │ │ │ │ │ │ ├── gtx_range.cpp │ │ │ │ │ │ ├── gtx_rotate_normalized_axis.cpp │ │ │ │ │ │ ├── gtx_rotate_vector.cpp │ │ │ │ │ │ ├── gtx_scalar_multiplication.cpp │ │ │ │ │ │ ├── gtx_scalar_relational.cpp │ │ │ │ │ │ ├── gtx_simd_mat4.cpp │ │ │ │ │ │ ├── gtx_simd_vec4.cpp │ │ │ │ │ │ ├── gtx_spline.cpp │ │ │ │ │ │ ├── gtx_string_cast.cpp │ │ │ │ │ │ ├── gtx_texture.cpp │ │ │ │ │ │ ├── gtx_type_aligned.cpp │ │ │ │ │ │ ├── gtx_type_trait.cpp │ │ │ │ │ │ ├── gtx_vec_swizzle.cpp │ │ │ │ │ │ ├── gtx_vector_angle.cpp │ │ │ │ │ │ ├── gtx_vector_query.cpp │ │ │ │ │ │ └── gtx_wrap.cpp │ │ │ │ │ └── perf │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── perf_matrix_div.cpp │ │ │ │ │ │ ├── perf_matrix_inverse.cpp │ │ │ │ │ │ ├── perf_matrix_mul.cpp │ │ │ │ │ │ ├── perf_matrix_mul_vector.cpp │ │ │ │ │ │ ├── perf_matrix_transpose.cpp │ │ │ │ │ │ └── perf_vector_mul_matrix.cpp │ │ │ │ └── util │ │ │ │ │ ├── autoexp.txt │ │ │ │ │ ├── autoexp.vc2010.dat │ │ │ │ │ ├── glm.natvis │ │ │ │ │ └── usertype.dat │ │ │ │ └── stbi_image_write.h │ │ └── simple-knn │ │ │ ├── ext.cpp │ │ │ ├── setup.py │ │ │ ├── simple_knn.cu │ │ │ ├── simple_knn.h │ │ │ ├── simple_knn │ │ │ └── .gitkeep │ │ │ ├── spatial.cu │ │ │ └── spatial.h │ ├── train.py │ ├── train_obj.py │ ├── train_surface.py │ └── utils │ │ ├── camera_utils.py │ │ ├── camera_utils_obj.py │ │ ├── camera_utils_surface.py │ │ ├── general_utils.py │ │ ├── graphics_utils.py │ │ ├── image_utils.py │ │ ├── loss_utils.py │ │ ├── sh_utils.py │ │ └── system_utils.py ├── README.md ├── assets │ ├── mask_viewer.png │ └── viewer.png ├── mask_inpaint │ ├── LAMA_impaint.py │ └── mask_app.py ├── requirements.txt └── weights │ ├── sam2 │ ├── .clang-format │ ├── .gitignore │ ├── .watchmanconfig │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── INSTALL.md │ ├── LICENSE │ ├── LICENSE_cctorch │ ├── MANIFEST.in │ ├── README.md │ ├── RELEASE_NOTES.md │ ├── assets │ │ ├── model_diagram.png │ │ └── sa_v_dataset.jpg │ ├── backend.Dockerfile │ ├── checkpoints │ │ └── download_ckpts.sh │ ├── docker-compose.yaml │ ├── pyproject.toml │ ├── sam2 │ │ ├── __init__.py │ │ ├── automatic_mask_generator.py │ │ ├── benchmark.py │ │ ├── build_sam.py │ │ ├── configs │ │ │ ├── sam2.1 │ │ │ │ ├── sam2.1_hiera_b+.yaml │ │ │ │ ├── sam2.1_hiera_l.yaml │ │ │ │ ├── sam2.1_hiera_s.yaml │ │ │ │ └── sam2.1_hiera_t.yaml │ │ │ ├── sam2.1_training │ │ │ │ └── sam2.1_hiera_b+_MOSE_finetune.yaml │ │ │ └── sam2 │ │ │ │ ├── sam2_hiera_b+.yaml │ │ │ │ ├── sam2_hiera_l.yaml │ │ │ │ ├── sam2_hiera_s.yaml │ │ │ │ └── sam2_hiera_t.yaml │ │ ├── csrc │ │ │ └── connected_components.cu │ │ ├── modeling │ │ │ ├── __init__.py │ │ │ ├── backbones │ │ │ │ ├── __init__.py │ │ │ │ ├── hieradet.py │ │ │ │ ├── image_encoder.py │ │ │ │ └── utils.py │ │ │ ├── memory_attention.py │ │ │ ├── memory_encoder.py │ │ │ ├── position_encoding.py │ │ │ ├── sam │ │ │ │ ├── __init__.py │ │ │ │ ├── mask_decoder.py │ │ │ │ ├── prompt_encoder.py │ │ │ │ └── transformer.py │ │ │ ├── sam2_base.py │ │ │ └── sam2_utils.py │ │ ├── sam2_hiera_b+.yaml │ │ ├── sam2_hiera_l.yaml │ │ ├── sam2_hiera_s.yaml │ │ ├── sam2_hiera_t.yaml │ │ ├── sam2_image_predictor.py │ │ ├── sam2_video_predictor.py │ │ ├── sam2_video_predictor_legacy.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── amg.py │ │ │ ├── misc.py │ │ │ └── transforms.py │ ├── sav_dataset │ │ ├── LICENSE │ │ ├── LICENSE_DAVIS │ │ ├── LICENSE_VOS_BENCHMARK │ │ ├── README.md │ │ ├── example │ │ │ ├── sav_000001.mp4 │ │ │ ├── sav_000001_auto.json │ │ │ └── sav_000001_manual.json │ │ ├── requirements.txt │ │ ├── sav_evaluator.py │ │ ├── sav_visualization_example.ipynb │ │ └── utils │ │ │ ├── sav_benchmark.py │ │ │ └── sav_utils.py │ ├── setup.py │ ├── tools │ │ ├── README.md │ │ └── vos_inference.py │ └── training │ │ ├── README.md │ │ ├── __init__.py │ │ ├── assets │ │ ├── MOSE_sample_train_list.txt │ │ └── MOSE_sample_val_list.txt │ │ ├── dataset │ │ ├── __init__.py │ │ ├── sam2_datasets.py │ │ ├── transforms.py │ │ ├── utils.py │ │ ├── vos_dataset.py │ │ ├── vos_raw_dataset.py │ │ ├── vos_sampler.py │ │ └── vos_segment_loader.py │ │ ├── loss_fns.py │ │ ├── model │ │ ├── __init__.py │ │ └── sam2.py │ │ ├── optimizer.py │ │ ├── scripts │ │ └── sav_frame_extraction_submitit.py │ │ ├── train.py │ │ ├── trainer.py │ │ └── utils │ │ ├── __init__.py │ │ ├── checkpoint_utils.py │ │ ├── data_utils.py │ │ ├── distributed.py │ │ ├── logger.py │ │ └── train_utils.py │ └── simple-lama-inpainting │ ├── .flake8 │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── poetry.lock │ ├── pyproject.toml │ ├── simple_lama_inpainting │ ├── __init__.py │ ├── cli.py │ ├── models │ │ ├── __init__.py │ │ └── model.py │ └── utils │ │ ├── __init__.py │ │ └── util.py │ └── tests │ ├── __init__.py │ ├── conftest.py │ └── test_lama.py ├── particle_filling └── filling.py ├── requirements.txt ├── result_bear └── bear_collision_compressed.gif └── utils ├── camera_view_utils.py ├── decode_param.py ├── render_utils.py └── transformation_utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/README.md -------------------------------------------------------------------------------- /assets/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/assets/teaser.png -------------------------------------------------------------------------------- /config/bear_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/config/bear_config.json -------------------------------------------------------------------------------- /dataset/bear_data/cameras.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/dataset/bear_data/cameras.json -------------------------------------------------------------------------------- /gaussian-splatting/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/.gitignore -------------------------------------------------------------------------------- /gaussian-splatting/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/LICENSE.md -------------------------------------------------------------------------------- /gaussian-splatting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/README.md -------------------------------------------------------------------------------- /gaussian-splatting/arguments/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/arguments/__init__.py -------------------------------------------------------------------------------- /gaussian-splatting/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/convert.py -------------------------------------------------------------------------------- /gaussian-splatting/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/environment.yml -------------------------------------------------------------------------------- /gaussian-splatting/full_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/full_eval.py -------------------------------------------------------------------------------- /gaussian-splatting/gaussian_renderer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/gaussian_renderer/__init__.py -------------------------------------------------------------------------------- /gaussian-splatting/gaussian_renderer/network_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/gaussian_renderer/network_gui.py -------------------------------------------------------------------------------- /gaussian-splatting/lpipsPyTorch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/lpipsPyTorch/__init__.py -------------------------------------------------------------------------------- /gaussian-splatting/lpipsPyTorch/modules/lpips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/lpipsPyTorch/modules/lpips.py -------------------------------------------------------------------------------- /gaussian-splatting/lpipsPyTorch/modules/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/lpipsPyTorch/modules/networks.py -------------------------------------------------------------------------------- /gaussian-splatting/lpipsPyTorch/modules/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/lpipsPyTorch/modules/utils.py -------------------------------------------------------------------------------- /gaussian-splatting/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/metrics.py -------------------------------------------------------------------------------- /gaussian-splatting/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/render.py -------------------------------------------------------------------------------- /gaussian-splatting/scene/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/scene/__init__.py -------------------------------------------------------------------------------- /gaussian-splatting/scene/cameras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/scene/cameras.py -------------------------------------------------------------------------------- /gaussian-splatting/scene/colmap_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/scene/colmap_loader.py -------------------------------------------------------------------------------- /gaussian-splatting/scene/dataset_readers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/scene/dataset_readers.py -------------------------------------------------------------------------------- /gaussian-splatting/scene/gaussian_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/scene/gaussian_model.py -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | diff_gaussian_rasterization.egg-info/ 3 | dist/ 4 | -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/.gitmodules -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/CMakeLists.txt -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/LICENSE.md -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/README.md -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/cuda_rasterizer/auxiliary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/cuda_rasterizer/auxiliary.h -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/cuda_rasterizer/backward.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/cuda_rasterizer/backward.cu -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/cuda_rasterizer/backward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/cuda_rasterizer/backward.h -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/cuda_rasterizer/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/cuda_rasterizer/config.h -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/cuda_rasterizer/forward.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/cuda_rasterizer/forward.cu -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/cuda_rasterizer/forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/cuda_rasterizer/forward.h -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/cuda_rasterizer/rasterizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/cuda_rasterizer/rasterizer.h -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/cuda_rasterizer/rasterizer_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/cuda_rasterizer/rasterizer_impl.h -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/ext.cpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/rasterize_points.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/rasterize_points.cu -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/rasterize_points.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/rasterize_points.h -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/setup.py -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/.appveyor.yml -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/.travis.yml -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/CMakeLists.txt -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/copying.txt -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/api/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/api/bc_s.png -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/api/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/api/bdwn.png -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/api/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/api/doc.png -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/api/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/api/jquery.js -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/api/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/api/nav_f.png -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/api/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/api/nav_g.png -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/api/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/api/nav_h.png -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/api/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/api/open.png -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/api/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/api/tab_a.png -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/api/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/api/tab_b.png -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/api/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/api/tab_h.png -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/api/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/api/tab_s.png -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/api/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/api/tabs.css -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/man.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/man.doxy -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/manual.pdf -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/theme/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/doc/theme/doc.png -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/common.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/ext.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/ext/scalar_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/ext/vector_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/fwd.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/geometric.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/glm.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtc/noise.inl -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtc/round.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtc/round.inl -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/bit.inl -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/hash.inl -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/io.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/io.inl -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/norm.inl -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/pca.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/pca.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/pca.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/pca.inl -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/range.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/integer.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/mat2x2.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/mat2x3.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/mat2x4.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/mat3x2.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/mat3x3.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/mat3x4.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/mat4x2.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/mat4x3.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/mat4x4.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/matrix.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/packing.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/simd/common.h -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/simd/matrix.h -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/simd/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/simd/neon.h -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/vec2.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/vec3.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/glm/vec4.hpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/manual.md -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/readme.md -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/test/bug/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | glmCreateTestGTC(bug_ms_vec_static) 2 | -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/test/gtx/gtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/test/gtx/gtx.cpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/util/autoexp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/util/autoexp.txt -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/util/glm.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/util/glm.natvis -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/util/usertype.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm/util/usertype.dat -------------------------------------------------------------------------------- /gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/stbi_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/stbi_image_write.h -------------------------------------------------------------------------------- /gaussian-splatting/submodules/simple-knn/ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/simple-knn/ext.cpp -------------------------------------------------------------------------------- /gaussian-splatting/submodules/simple-knn/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/simple-knn/setup.py -------------------------------------------------------------------------------- /gaussian-splatting/submodules/simple-knn/simple_knn.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/simple-knn/simple_knn.cu -------------------------------------------------------------------------------- /gaussian-splatting/submodules/simple-knn/simple_knn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/simple-knn/simple_knn.h -------------------------------------------------------------------------------- /gaussian-splatting/submodules/simple-knn/simple_knn/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gaussian-splatting/submodules/simple-knn/simple_knn/_C.cpython-39-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/simple-knn/simple_knn/_C.cpython-39-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /gaussian-splatting/submodules/simple-knn/spatial.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/simple-knn/spatial.cu -------------------------------------------------------------------------------- /gaussian-splatting/submodules/simple-knn/spatial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/submodules/simple-knn/spatial.h -------------------------------------------------------------------------------- /gaussian-splatting/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/train.py -------------------------------------------------------------------------------- /gaussian-splatting/utils/camera_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/utils/camera_utils.py -------------------------------------------------------------------------------- /gaussian-splatting/utils/general_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/utils/general_utils.py -------------------------------------------------------------------------------- /gaussian-splatting/utils/graphics_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/utils/graphics_utils.py -------------------------------------------------------------------------------- /gaussian-splatting/utils/image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/utils/image_utils.py -------------------------------------------------------------------------------- /gaussian-splatting/utils/loss_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/utils/loss_utils.py -------------------------------------------------------------------------------- /gaussian-splatting/utils/sh_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/utils/sh_utils.py -------------------------------------------------------------------------------- /gaussian-splatting/utils/system_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gaussian-splatting/utils/system_utils.py -------------------------------------------------------------------------------- /gs_simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gs_simulation.py -------------------------------------------------------------------------------- /gs_simulation_multiobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/gs_simulation_multiobject.py -------------------------------------------------------------------------------- /mpm_solver_warp/.gitignore: -------------------------------------------------------------------------------- 1 | sim_results/ 2 | __pycache__/ 3 | -------------------------------------------------------------------------------- /mpm_solver_warp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/mpm_solver_warp/README.md -------------------------------------------------------------------------------- /mpm_solver_warp/engine_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/mpm_solver_warp/engine_utils.py -------------------------------------------------------------------------------- /mpm_solver_warp/mpm_solver_warp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/mpm_solver_warp/mpm_solver_warp.py -------------------------------------------------------------------------------- /mpm_solver_warp/mpm_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/mpm_solver_warp/mpm_utils.py -------------------------------------------------------------------------------- /mpm_solver_warp/run_sand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/mpm_solver_warp/run_sand.py -------------------------------------------------------------------------------- /mpm_solver_warp/sand_column.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/mpm_solver_warp/sand_column.h5 -------------------------------------------------------------------------------- /mpm_solver_warp/warp_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/mpm_solver_warp/warp_utils.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/.gitignore -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/.gitmodules -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/LICENSE.md -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/README.md -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/configs/.gitignore -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/appearance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/configs/appearance.yaml -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/background_sphere.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/configs/background_sphere.yaml -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/blender.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/configs/blender.yaml -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/blender_gsplat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/configs/blender_gsplat.yaml -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/colmap_exp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/configs/colmap_exp.yaml -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/ddp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/configs/ddp.yaml -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/ddp_not_find_unused.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/configs/ddp_not_find_unused.yaml -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/deformable_6dof_blender.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/configs/deformable_6dof_blender.yaml -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/deformable_6dof_real.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/configs/deformable_6dof_real.yaml -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/deformable_blender.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/configs/deformable_blender.yaml -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/deformable_blender_rotate_xyz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/configs/deformable_blender_rotate_xyz.yaml -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/deformable_real.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/configs/deformable_real.yaml -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/distributed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/configs/distributed.yaml -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/gsplat-absgrad-experiment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/configs/gsplat-absgrad-experiment.yaml -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/gsplat-absgrad.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/configs/gsplat-absgrad.yaml -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/gsplat-matrixcity-aerial.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/configs/gsplat-matrixcity-aerial.yaml -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/gsplat-mcmc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/configs/gsplat-mcmc.yaml -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/gsplat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/configs/gsplat.yaml -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/image_on_gpu.yaml: -------------------------------------------------------------------------------- 1 | data: 2 | image_on_cpu: false -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/larger_dataset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/configs/larger_dataset.yaml -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/light_gaussian/prune_finetune-gsplat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/configs/light_gaussian/prune_finetune-gsplat.yaml -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/light_gaussian/prune_finetune.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/configs/light_gaussian/prune_finetune.yaml -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/mcmc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/configs/mcmc.yaml -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/mip_splatting_gsplat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/configs/mip_splatting_gsplat.yaml -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/pypreprocess_gsplat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/configs/pypreprocess_gsplat.yaml -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/random_background.yaml: -------------------------------------------------------------------------------- 1 | model: 2 | random_background: true -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/reorient.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/configs/reorient.yaml -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/segany_splatting.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/configs/segany_splatting.yaml -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/swag_baseline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/configs/swag_baseline.yaml -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/configs/vanilla_2dgs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/configs/vanilla_2dgs.yaml -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/convert.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/callbacks.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/cameras/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/cameras/__init__.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/cameras/cameras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/cameras/cameras.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/cli.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/configs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/configs/.gitignore -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/configs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/configs/appearance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/configs/appearance.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/configs/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/configs/dataset.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/configs/instantiate_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/configs/instantiate_config.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/configs/light_gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/configs/light_gaussian.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/configs/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/configs/model.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/configs/optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/configs/optimization.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/configs/segany_splatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/configs/segany_splatting.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/configs/tcnn_encoding_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/configs/tcnn_encoding_config.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/dataparsers/MatrixCity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/dataparsers/MatrixCity.md -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/dataparsers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/dataparsers/__init__.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/dataparsers/blender_dataparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/dataparsers/blender_dataparser.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/dataparsers/colmap_dataparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/dataparsers/colmap_dataparser.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/dataparsers/dataparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/dataparsers/dataparser.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/dataparsers/feature_3dgs_dataparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/dataparsers/feature_3dgs_dataparser.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/dataparsers/matrix_city_dataparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/dataparsers/matrix_city_dataparser.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/dataparsers/nerfies_dataparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/dataparsers/nerfies_dataparser.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/dataparsers/ngp_dataparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/dataparsers/ngp_dataparser.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/dataparsers/nsvf_dataparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/dataparsers/nsvf_dataparser.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/dataparsers/phototourism_dataparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/dataparsers/phototourism_dataparser.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/dataparsers/segany_colmap_dataparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/dataparsers/segany_colmap_dataparser.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/dataset.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/density_controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/density_controllers/density_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/density_controllers/density_controller.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/encodings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/encodings/positional_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/encodings/positional_encoding.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/gaussian_splatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/gaussian_splatting.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/metrics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/metrics/feature_3dgs_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/metrics/feature_3dgs_metrics.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/metrics/gs2d_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/metrics/gs2d_metrics.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/metrics/mcmc_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/metrics/mcmc_metrics.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/metrics/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/metrics/metric.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/metrics/vanilla_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/metrics/vanilla_metrics.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/metrics/visibility_map_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/metrics/visibility_map_metrics.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/model_components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/model_components/gs4d_deformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/model_components/gs4d_deformation.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/model_components/gs4d_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/model_components/gs4d_grid.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/model_components/gs4d_hexplane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/model_components/gs4d_hexplane.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/models/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/models/.gitignore -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/models/appearance_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/models/appearance_model.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/models/deform_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/models/deform_model.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/models/gaussian_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/models/gaussian_model.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/models/gaussian_model_simplified.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/models/gaussian_model_simplified.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/models/swag_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/models/swag_model.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/models/vanilla_deform_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/models/vanilla_deform_model.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/mp_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/mp_strategy.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/renderers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/renderers/.gitignore -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/renderers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/renderers/__init__.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/renderers/appearance_mlp_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/renderers/appearance_mlp_renderer.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/renderers/deformable_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/renderers/deformable_renderer.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/renderers/feature_3dgs_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/renderers/feature_3dgs_renderer.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/renderers/gsplat_distributed_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/renderers/gsplat_distributed_renderer.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/renderers/gsplat_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/renderers/gsplat_renderer.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/renderers/pypreprocess_gsplat_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/renderers/pypreprocess_gsplat_renderer.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/renderers/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/renderers/renderer.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/renderers/rgb_mlp_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/renderers/rgb_mlp_renderer.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/renderers/seganygs_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/renderers/seganygs_renderer.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/renderers/swag_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/renderers/swag_renderer.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/renderers/vanilla_2dgs_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/renderers/vanilla_2dgs_renderer.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/renderers/vanilla_deformable_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/renderers/vanilla_deformable_renderer.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/renderers/vanilla_gs4d_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/renderers/vanilla_gs4d_renderer.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/renderers/vanilla_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/renderers/vanilla_renderer.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/segany_splatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/segany_splatting.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/utils/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/utils/camera.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/utils/colmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/utils/colmap.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/utils/common.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/utils/edition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/utils/edition.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/utils/gaussian_model_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/utils/gaussian_model_loader.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/utils/gaussian_projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/utils/gaussian_projection.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/utils/gaussian_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/utils/gaussian_utils.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/utils/general_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/utils/general_utils.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/utils/graphics_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/utils/graphics_utils.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/utils/light_gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/utils/light_gaussian.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/utils/network_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/utils/network_factory.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/utils/rigid_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/utils/rigid_utils.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/utils/rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/utils/rotation.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/utils/seganygs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/utils/seganygs.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/utils/sh_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/utils/sh_utils.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/utils/ssim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/utils/ssim.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/utils/visualizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/utils/visualizers.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/viewer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/viewer/__init__.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/viewer/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/viewer/client.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/viewer/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/viewer/renderer.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/viewer/training_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/viewer/training_viewer.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/viewer/ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/viewer/ui/__init__.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/viewer/ui/edit_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/viewer/ui/edit_panel.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/viewer/ui/render_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/viewer/ui/render_panel.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/viewer/ui/transform_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/viewer/ui/transform_panel.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/internal/viewer/ui/up_direction_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/internal/viewer/ui/up_direction_folder.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/main.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/notebooks/colmap_aerial_split.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/notebooks/colmap_aerial_split.ipynb -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/notebooks/gsplat.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/notebooks/gsplat.ipynb -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/notebooks/matrix_city_aerial_split.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/notebooks/matrix_city_aerial_split.ipynb -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/notebooks/merge_partitions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/notebooks/merge_partitions.ipynb -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/notebooks/partition_light_gaussian_pruning.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/notebooks/partition_light_gaussian_pruning.ipynb -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/notebooks/preprocess.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/notebooks/preprocess.ipynb -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/notebooks/prompt_segmenting.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/notebooks/prompt_segmenting.ipynb -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/notebooks/rotate_shs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/notebooks/rotate_shs.ipynb -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/render.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/requirements.txt -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/rotate_gaussians.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/rotate_gaussians.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/run.sh -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/seganygs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/seganygs.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/submodules/README.md: -------------------------------------------------------------------------------- 1 | [NOTE] Submodules are licensed separately. -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/submodules/diff-gaussian-rasterization/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/submodules/diff-gaussian-rasterization/.gitignore -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/submodules/diff-gaussian-rasterization/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/submodules/diff-gaussian-rasterization/.gitmodules -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/submodules/diff-gaussian-rasterization/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/submodules/diff-gaussian-rasterization/LICENSE.md -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/submodules/diff-gaussian-rasterization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/submodules/diff-gaussian-rasterization/README.md -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/submodules/diff-gaussian-rasterization/ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/submodules/diff-gaussian-rasterization/ext.cpp -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/submodules/diff-gaussian-rasterization/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/submodules/diff-gaussian-rasterization/setup.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/submodules/diff-gaussian-rasterization/third_party/glm/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/submodules/diff-gaussian-rasterization/third_party/glm/glm/ext/scalar_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/submodules/diff-gaussian-rasterization/third_party/glm/glm/ext/vector_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/submodules/diff-gaussian-rasterization/third_party/glm/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/submodules/diff-gaussian-rasterization/third_party/glm/test/bug/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | glmCreateTestGTC(bug_ms_vec_static) 2 | -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/submodules/mcmc_relocation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/submodules/mcmc_relocation/CMakeLists.txt -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/submodules/mcmc_relocation/ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/submodules/mcmc_relocation/ext.cpp -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/submodules/mcmc_relocation/mcmc_relocation.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/submodules/mcmc_relocation/mcmc_relocation.cu -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/submodules/mcmc_relocation/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/submodules/mcmc_relocation/setup.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/submodules/simple-knn/ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/submodules/simple-knn/ext.cpp -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/submodules/simple-knn/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/submodules/simple-knn/setup.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/submodules/simple-knn/simple_knn.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/submodules/simple-knn/simple_knn.cu -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/submodules/simple-knn/simple_knn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/submodules/simple-knn/simple_knn.h -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/submodules/simple-knn/simple_knn/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/submodules/simple-knn/spatial.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/submodules/simple-knn/spatial.cu -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/submodules/simple-knn/spatial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/submodules/simple-knn/spatial.h -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/test.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/tests/.gitignore -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/tests/dataset/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !nerfies_dataparser_test.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/tests/dataset/nerfies_dataparser_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/tests/dataset/nerfies_dataparser_test.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/tests/deformable_model_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/tests/deformable_model_test.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/tests/gaussian_model_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/tests/gaussian_model_test.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/tests/gaussian_projection_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/tests/gaussian_projection_test.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/tests/network_factory_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/tests/network_factory_test.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/tests/positional_encoding_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/tests/positional_encoding_test.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/utils/add_pypath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/utils/add_pypath.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/utils/auto_hyper_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/utils/auto_hyper_parameter.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/utils/ckpt2ply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/utils/ckpt2ply.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/utils/colmap_undistort_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/utils/colmap_undistort_mask.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/utils/common.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/utils/convert2splat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/utils/convert2splat.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/utils/distibuted_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/utils/distibuted_tasks.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/utils/edit_with_histories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/utils/edit_with_histories.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/utils/eval_blender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/utils/eval_blender.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/utils/eval_mipnerf360.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/utils/eval_mipnerf360.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/utils/finetune_partition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/utils/finetune_partition.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/utils/gaussian_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/utils/gaussian_transform.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/utils/generate_image_apperance_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/utils/generate_image_apperance_groups.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/utils/generate_image_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/utils/generate_image_list.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/utils/get_sam_embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/utils/get_sam_embeddings.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/utils/get_sam_mask_scales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/utils/get_sam_mask_scales.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/utils/get_sam_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/utils/get_sam_masks.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/utils/image_downsample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/utils/image_downsample.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/utils/matrix_city_depth_to_point_cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/utils/matrix_city_depth_to_point_cloud.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/utils/matrix_city_frame_group_slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/utils/matrix_city_frame_group_slice.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/utils/matrix_city_group_continuous_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/utils/matrix_city_group_continuous_frame.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/utils/merge_distributed_ckpts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/utils/merge_distributed_ckpts.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/utils/merge_ply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/utils/merge_ply.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/utils/requirements.txt: -------------------------------------------------------------------------------- 1 | open3d==0.18.* -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/utils/show_cameras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/utils/show_cameras.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/utils/train_colmap_partitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/utils/train_colmap_partitions.py -------------------------------------------------------------------------------- /organize_code/GaussianSplattingLightning/viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/GaussianSplattingLightning/viewer.py -------------------------------------------------------------------------------- /organize_code/JointPointFields/step1_poisson_recons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/JointPointFields/step1_poisson_recons.py -------------------------------------------------------------------------------- /organize_code/JointPointFields/step2_get_coarse_obj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/JointPointFields/step2_get_coarse_obj.py -------------------------------------------------------------------------------- /organize_code/JointPointFields/step3_repair_scene_gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/JointPointFields/step3_repair_scene_gaussian.py -------------------------------------------------------------------------------- /organize_code/PGSR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/README.md -------------------------------------------------------------------------------- /organize_code/PGSR/arguments/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/arguments/__init__.py -------------------------------------------------------------------------------- /organize_code/PGSR/full_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/full_eval.py -------------------------------------------------------------------------------- /organize_code/PGSR/gaussian_renderer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/gaussian_renderer/__init__.py -------------------------------------------------------------------------------- /organize_code/PGSR/gaussian_renderer/network_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/gaussian_renderer/network_gui.py -------------------------------------------------------------------------------- /organize_code/PGSR/lpipsPyTorch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/lpipsPyTorch/__init__.py -------------------------------------------------------------------------------- /organize_code/PGSR/lpipsPyTorch/modules/lpips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/lpipsPyTorch/modules/lpips.py -------------------------------------------------------------------------------- /organize_code/PGSR/lpipsPyTorch/modules/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/lpipsPyTorch/modules/networks.py -------------------------------------------------------------------------------- /organize_code/PGSR/lpipsPyTorch/modules/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/lpipsPyTorch/modules/utils.py -------------------------------------------------------------------------------- /organize_code/PGSR/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/metrics.py -------------------------------------------------------------------------------- /organize_code/PGSR/raw_scene/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/raw_scene/__init__.py -------------------------------------------------------------------------------- /organize_code/PGSR/raw_scene/app_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/raw_scene/app_model.py -------------------------------------------------------------------------------- /organize_code/PGSR/raw_scene/cameras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/raw_scene/cameras.py -------------------------------------------------------------------------------- /organize_code/PGSR/raw_scene/colmap_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/raw_scene/colmap_loader.py -------------------------------------------------------------------------------- /organize_code/PGSR/raw_scene/dataset_readers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/raw_scene/dataset_readers.py -------------------------------------------------------------------------------- /organize_code/PGSR/raw_scene/gaussian_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/raw_scene/gaussian_model.py -------------------------------------------------------------------------------- /organize_code/PGSR/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/render.py -------------------------------------------------------------------------------- /organize_code/PGSR/render_orientnormals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/render_orientnormals.py -------------------------------------------------------------------------------- /organize_code/PGSR/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/requirements.txt -------------------------------------------------------------------------------- /organize_code/PGSR/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/run.sh -------------------------------------------------------------------------------- /organize_code/PGSR/scene_obj/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scene_obj/__init__.py -------------------------------------------------------------------------------- /organize_code/PGSR/scene_obj/app_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scene_obj/app_model.py -------------------------------------------------------------------------------- /organize_code/PGSR/scene_obj/cameras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scene_obj/cameras.py -------------------------------------------------------------------------------- /organize_code/PGSR/scene_obj/colmap_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scene_obj/colmap_loader.py -------------------------------------------------------------------------------- /organize_code/PGSR/scene_obj/dataset_readers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scene_obj/dataset_readers.py -------------------------------------------------------------------------------- /organize_code/PGSR/scene_obj/gaussian_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scene_obj/gaussian_model.py -------------------------------------------------------------------------------- /organize_code/PGSR/scene_surface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scene_surface/__init__.py -------------------------------------------------------------------------------- /organize_code/PGSR/scene_surface/app_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scene_surface/app_model.py -------------------------------------------------------------------------------- /organize_code/PGSR/scene_surface/cameras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scene_surface/cameras.py -------------------------------------------------------------------------------- /organize_code/PGSR/scene_surface/colmap_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scene_surface/colmap_loader.py -------------------------------------------------------------------------------- /organize_code/PGSR/scene_surface/dataset_readers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scene_surface/dataset_readers.py -------------------------------------------------------------------------------- /organize_code/PGSR/scene_surface/gaussian_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scene_surface/gaussian_model.py -------------------------------------------------------------------------------- /organize_code/PGSR/scripts/dtu_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scripts/dtu_eval.py -------------------------------------------------------------------------------- /organize_code/PGSR/scripts/preprocess/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scripts/preprocess/convert.py -------------------------------------------------------------------------------- /organize_code/PGSR/scripts/preprocess/convert_data_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scripts/preprocess/convert_data_to_json.py -------------------------------------------------------------------------------- /organize_code/PGSR/scripts/preprocess/convert_dtu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scripts/preprocess/convert_dtu.py -------------------------------------------------------------------------------- /organize_code/PGSR/scripts/preprocess/convert_tnt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scripts/preprocess/convert_tnt.py -------------------------------------------------------------------------------- /organize_code/PGSR/scripts/preprocess/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scripts/preprocess/database.py -------------------------------------------------------------------------------- /organize_code/PGSR/scripts/preprocess/read_write_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scripts/preprocess/read_write_model.py -------------------------------------------------------------------------------- /organize_code/PGSR/scripts/render_dtu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scripts/render_dtu.py -------------------------------------------------------------------------------- /organize_code/PGSR/scripts/render_tnt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scripts/render_tnt.py -------------------------------------------------------------------------------- /organize_code/PGSR/scripts/run_dtu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scripts/run_dtu.py -------------------------------------------------------------------------------- /organize_code/PGSR/scripts/run_mip360.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scripts/run_mip360.py -------------------------------------------------------------------------------- /organize_code/PGSR/scripts/run_tnt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scripts/run_tnt.py -------------------------------------------------------------------------------- /organize_code/PGSR/scripts/tnt_eval/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scripts/tnt_eval/README.md -------------------------------------------------------------------------------- /organize_code/PGSR/scripts/tnt_eval/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scripts/tnt_eval/config.py -------------------------------------------------------------------------------- /organize_code/PGSR/scripts/tnt_eval/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scripts/tnt_eval/evaluation.py -------------------------------------------------------------------------------- /organize_code/PGSR/scripts/tnt_eval/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scripts/tnt_eval/plot.py -------------------------------------------------------------------------------- /organize_code/PGSR/scripts/tnt_eval/registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scripts/tnt_eval/registration.py -------------------------------------------------------------------------------- /organize_code/PGSR/scripts/tnt_eval/requirements.txt: -------------------------------------------------------------------------------- 1 | matplotlib>=1.3 2 | open3d==0.9 3 | -------------------------------------------------------------------------------- /organize_code/PGSR/scripts/tnt_eval/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scripts/tnt_eval/run.py -------------------------------------------------------------------------------- /organize_code/PGSR/scripts/tnt_eval/trajectory_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scripts/tnt_eval/trajectory_io.py -------------------------------------------------------------------------------- /organize_code/PGSR/scripts/tnt_eval/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/scripts/tnt_eval/util.py -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | diff_gaussian_rasterization.egg-info/ 3 | dist/ 4 | -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/.gitmodules -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/CMakeLists.txt -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/LICENSE.md -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/README.md -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/cuda_rasterizer/auxiliary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/cuda_rasterizer/auxiliary.h -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/cuda_rasterizer/backward.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/cuda_rasterizer/backward.cu -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/cuda_rasterizer/backward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/cuda_rasterizer/backward.h -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/cuda_rasterizer/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/cuda_rasterizer/config.h -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/cuda_rasterizer/forward.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/cuda_rasterizer/forward.cu -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/cuda_rasterizer/forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/cuda_rasterizer/forward.h -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/cuda_rasterizer/rasterizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/cuda_rasterizer/rasterizer.h -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/cuda_rasterizer/rasterizer_impl.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/cuda_rasterizer/rasterizer_impl.cu -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/cuda_rasterizer/rasterizer_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/cuda_rasterizer/rasterizer_impl.h -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/diff_plane_rasterization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/diff_plane_rasterization/__init__.py -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/ext.cpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/rasterize_points.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/rasterize_points.cu -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/rasterize_points.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/rasterize_points.h -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/setup.py -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/.appveyor.yml -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/.gitignore -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/.travis.yml -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/CMakeLists.txt -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/copying.txt -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/a00007.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/a00007.html -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/a00008.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/a00008.html -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/a00009.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/a00009.html -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/a00010.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/a00010.html -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/bc_s.png -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/bdwn.png -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/closed.png -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/doc.png -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/files.html -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/index.html -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/jquery.js -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/nav_f.png -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/nav_g.png -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/nav_h.png -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/open.png -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/tab_a.png -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/tab_b.png -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/tab_h.png -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/tab_s.png -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/api/tabs.css -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/man.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/man.doxy -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/manual.pdf -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/theme/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/theme/bc_s.png -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/theme/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/theme/bdwn.png -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/theme/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/theme/doc.png -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/theme/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/doc/theme/open.png -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/CMakeLists.txt -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/common.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/detail/glm.cpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/ext.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/ext/scalar_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/ext/vector_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/fwd.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/geometric.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/glm.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtc/noise.inl -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtc/random.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtc/random.inl -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtc/round.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtc/round.inl -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/bit.inl -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/common.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/common.inl -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/easing.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/easing.inl -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/extend.inl -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/hash.inl -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/io.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/io.inl -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/norm.inl -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/normal.inl -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/pca.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/pca.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/pca.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/pca.inl -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/range.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/spline.inl -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/integer.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/mat2x2.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/mat2x3.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/mat2x4.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/mat3x2.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/mat3x3.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/mat3x4.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/mat4x2.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/mat4x3.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/mat4x4.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/matrix.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/packing.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/simd/common.h -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/simd/integer.h -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/simd/matrix.h -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/simd/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/simd/neon.h -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/simd/packing.h -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/vec2.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/vec3.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/glm/vec4.hpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/manual.md -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/readme.md -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/test/bug/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | glmCreateTestGTC(bug_ms_vec_static) 2 | -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/test/glm.cppcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/test/glm.cppcheck -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/test/gtx/gtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/test/gtx/gtx.cpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/util/autoexp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/util/autoexp.txt -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/util/glm.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/util/glm.natvis -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/util/usertype.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/glm/util/usertype.dat -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/diff-plane-rasterization/third_party/stbi_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/diff-plane-rasterization/third_party/stbi_image_write.h -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/simple-knn/ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/simple-knn/ext.cpp -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/simple-knn/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/simple-knn/setup.py -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/simple-knn/simple_knn.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/simple-knn/simple_knn.cu -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/simple-knn/simple_knn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/simple-knn/simple_knn.h -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/simple-knn/simple_knn/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/simple-knn/spatial.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/simple-knn/spatial.cu -------------------------------------------------------------------------------- /organize_code/PGSR/submodules/simple-knn/spatial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/submodules/simple-knn/spatial.h -------------------------------------------------------------------------------- /organize_code/PGSR/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/train.py -------------------------------------------------------------------------------- /organize_code/PGSR/train_obj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/train_obj.py -------------------------------------------------------------------------------- /organize_code/PGSR/train_surface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/train_surface.py -------------------------------------------------------------------------------- /organize_code/PGSR/utils/camera_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/utils/camera_utils.py -------------------------------------------------------------------------------- /organize_code/PGSR/utils/camera_utils_obj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/utils/camera_utils_obj.py -------------------------------------------------------------------------------- /organize_code/PGSR/utils/camera_utils_surface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/utils/camera_utils_surface.py -------------------------------------------------------------------------------- /organize_code/PGSR/utils/general_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/utils/general_utils.py -------------------------------------------------------------------------------- /organize_code/PGSR/utils/graphics_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/utils/graphics_utils.py -------------------------------------------------------------------------------- /organize_code/PGSR/utils/image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/utils/image_utils.py -------------------------------------------------------------------------------- /organize_code/PGSR/utils/loss_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/utils/loss_utils.py -------------------------------------------------------------------------------- /organize_code/PGSR/utils/sh_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/utils/sh_utils.py -------------------------------------------------------------------------------- /organize_code/PGSR/utils/system_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/PGSR/utils/system_utils.py -------------------------------------------------------------------------------- /organize_code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/README.md -------------------------------------------------------------------------------- /organize_code/assets/mask_viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/assets/mask_viewer.png -------------------------------------------------------------------------------- /organize_code/assets/viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/assets/viewer.png -------------------------------------------------------------------------------- /organize_code/mask_inpaint/LAMA_impaint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/mask_inpaint/LAMA_impaint.py -------------------------------------------------------------------------------- /organize_code/mask_inpaint/mask_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/mask_inpaint/mask_app.py -------------------------------------------------------------------------------- /organize_code/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/requirements.txt -------------------------------------------------------------------------------- /organize_code/weights/sam2/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/.clang-format -------------------------------------------------------------------------------- /organize_code/weights/sam2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/.gitignore -------------------------------------------------------------------------------- /organize_code/weights/sam2/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /organize_code/weights/sam2/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /organize_code/weights/sam2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/CONTRIBUTING.md -------------------------------------------------------------------------------- /organize_code/weights/sam2/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/INSTALL.md -------------------------------------------------------------------------------- /organize_code/weights/sam2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/LICENSE -------------------------------------------------------------------------------- /organize_code/weights/sam2/LICENSE_cctorch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/LICENSE_cctorch -------------------------------------------------------------------------------- /organize_code/weights/sam2/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/MANIFEST.in -------------------------------------------------------------------------------- /organize_code/weights/sam2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/README.md -------------------------------------------------------------------------------- /organize_code/weights/sam2/RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/RELEASE_NOTES.md -------------------------------------------------------------------------------- /organize_code/weights/sam2/assets/model_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/assets/model_diagram.png -------------------------------------------------------------------------------- /organize_code/weights/sam2/assets/sa_v_dataset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/assets/sa_v_dataset.jpg -------------------------------------------------------------------------------- /organize_code/weights/sam2/backend.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/backend.Dockerfile -------------------------------------------------------------------------------- /organize_code/weights/sam2/checkpoints/download_ckpts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/checkpoints/download_ckpts.sh -------------------------------------------------------------------------------- /organize_code/weights/sam2/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/docker-compose.yaml -------------------------------------------------------------------------------- /organize_code/weights/sam2/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/pyproject.toml -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/__init__.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/automatic_mask_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/automatic_mask_generator.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/benchmark.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/build_sam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/build_sam.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/configs/sam2.1/sam2.1_hiera_b+.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/configs/sam2.1/sam2.1_hiera_b+.yaml -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/configs/sam2.1/sam2.1_hiera_l.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/configs/sam2.1/sam2.1_hiera_l.yaml -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/configs/sam2.1/sam2.1_hiera_s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/configs/sam2.1/sam2.1_hiera_s.yaml -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/configs/sam2.1/sam2.1_hiera_t.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/configs/sam2.1/sam2.1_hiera_t.yaml -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/configs/sam2/sam2_hiera_b+.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/configs/sam2/sam2_hiera_b+.yaml -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/configs/sam2/sam2_hiera_l.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/configs/sam2/sam2_hiera_l.yaml -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/configs/sam2/sam2_hiera_s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/configs/sam2/sam2_hiera_s.yaml -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/configs/sam2/sam2_hiera_t.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/configs/sam2/sam2_hiera_t.yaml -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/csrc/connected_components.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/csrc/connected_components.cu -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/modeling/__init__.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/modeling/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/modeling/backbones/__init__.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/modeling/backbones/hieradet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/modeling/backbones/hieradet.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/modeling/backbones/image_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/modeling/backbones/image_encoder.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/modeling/backbones/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/modeling/backbones/utils.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/modeling/memory_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/modeling/memory_attention.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/modeling/memory_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/modeling/memory_encoder.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/modeling/position_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/modeling/position_encoding.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/modeling/sam/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/modeling/sam/__init__.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/modeling/sam/mask_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/modeling/sam/mask_decoder.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/modeling/sam/prompt_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/modeling/sam/prompt_encoder.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/modeling/sam/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/modeling/sam/transformer.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/modeling/sam2_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/modeling/sam2_base.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/modeling/sam2_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/modeling/sam2_utils.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/sam2_hiera_b+.yaml: -------------------------------------------------------------------------------- 1 | configs/sam2/sam2_hiera_b+.yaml -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/sam2_hiera_l.yaml: -------------------------------------------------------------------------------- 1 | configs/sam2/sam2_hiera_l.yaml -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/sam2_hiera_s.yaml: -------------------------------------------------------------------------------- 1 | configs/sam2/sam2_hiera_s.yaml -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/sam2_hiera_t.yaml: -------------------------------------------------------------------------------- 1 | configs/sam2/sam2_hiera_t.yaml -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/sam2_image_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/sam2_image_predictor.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/sam2_video_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/sam2_video_predictor.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/sam2_video_predictor_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/sam2_video_predictor_legacy.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/utils/__init__.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/utils/amg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/utils/amg.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/utils/misc.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/sam2/utils/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sam2/utils/transforms.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/sav_dataset/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sav_dataset/LICENSE -------------------------------------------------------------------------------- /organize_code/weights/sam2/sav_dataset/LICENSE_DAVIS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sav_dataset/LICENSE_DAVIS -------------------------------------------------------------------------------- /organize_code/weights/sam2/sav_dataset/LICENSE_VOS_BENCHMARK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sav_dataset/LICENSE_VOS_BENCHMARK -------------------------------------------------------------------------------- /organize_code/weights/sam2/sav_dataset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sav_dataset/README.md -------------------------------------------------------------------------------- /organize_code/weights/sam2/sav_dataset/example/sav_000001.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sav_dataset/example/sav_000001.mp4 -------------------------------------------------------------------------------- /organize_code/weights/sam2/sav_dataset/example/sav_000001_auto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sav_dataset/example/sav_000001_auto.json -------------------------------------------------------------------------------- /organize_code/weights/sam2/sav_dataset/example/sav_000001_manual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sav_dataset/example/sav_000001_manual.json -------------------------------------------------------------------------------- /organize_code/weights/sam2/sav_dataset/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sav_dataset/requirements.txt -------------------------------------------------------------------------------- /organize_code/weights/sam2/sav_dataset/sav_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sav_dataset/sav_evaluator.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/sav_dataset/sav_visualization_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sav_dataset/sav_visualization_example.ipynb -------------------------------------------------------------------------------- /organize_code/weights/sam2/sav_dataset/utils/sav_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sav_dataset/utils/sav_benchmark.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/sav_dataset/utils/sav_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/sav_dataset/utils/sav_utils.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/setup.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/tools/README.md -------------------------------------------------------------------------------- /organize_code/weights/sam2/tools/vos_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/tools/vos_inference.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/training/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/training/README.md -------------------------------------------------------------------------------- /organize_code/weights/sam2/training/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/training/__init__.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/training/assets/MOSE_sample_train_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/training/assets/MOSE_sample_train_list.txt -------------------------------------------------------------------------------- /organize_code/weights/sam2/training/assets/MOSE_sample_val_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/training/assets/MOSE_sample_val_list.txt -------------------------------------------------------------------------------- /organize_code/weights/sam2/training/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/training/dataset/__init__.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/training/dataset/sam2_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/training/dataset/sam2_datasets.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/training/dataset/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/training/dataset/transforms.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/training/dataset/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/training/dataset/utils.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/training/dataset/vos_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/training/dataset/vos_dataset.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/training/dataset/vos_raw_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/training/dataset/vos_raw_dataset.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/training/dataset/vos_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/training/dataset/vos_sampler.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/training/dataset/vos_segment_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/training/dataset/vos_segment_loader.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/training/loss_fns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/training/loss_fns.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/training/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/training/model/__init__.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/training/model/sam2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/training/model/sam2.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/training/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/training/optimizer.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/training/scripts/sav_frame_extraction_submitit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/training/scripts/sav_frame_extraction_submitit.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/training/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/training/train.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/training/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/training/trainer.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/training/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/training/utils/__init__.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/training/utils/checkpoint_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/training/utils/checkpoint_utils.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/training/utils/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/training/utils/data_utils.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/training/utils/distributed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/training/utils/distributed.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/training/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/training/utils/logger.py -------------------------------------------------------------------------------- /organize_code/weights/sam2/training/utils/train_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/sam2/training/utils/train_utils.py -------------------------------------------------------------------------------- /organize_code/weights/simple-lama-inpainting/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 88 3 | extend-ignore = E203 -------------------------------------------------------------------------------- /organize_code/weights/simple-lama-inpainting/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/simple-lama-inpainting/.gitignore -------------------------------------------------------------------------------- /organize_code/weights/simple-lama-inpainting/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/simple-lama-inpainting/LICENSE -------------------------------------------------------------------------------- /organize_code/weights/simple-lama-inpainting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/simple-lama-inpainting/README.md -------------------------------------------------------------------------------- /organize_code/weights/simple-lama-inpainting/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/simple-lama-inpainting/poetry.lock -------------------------------------------------------------------------------- /organize_code/weights/simple-lama-inpainting/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/simple-lama-inpainting/pyproject.toml -------------------------------------------------------------------------------- /organize_code/weights/simple-lama-inpainting/simple_lama_inpainting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/simple-lama-inpainting/simple_lama_inpainting/__init__.py -------------------------------------------------------------------------------- /organize_code/weights/simple-lama-inpainting/simple_lama_inpainting/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/simple-lama-inpainting/simple_lama_inpainting/cli.py -------------------------------------------------------------------------------- /organize_code/weights/simple-lama-inpainting/simple_lama_inpainting/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /organize_code/weights/simple-lama-inpainting/simple_lama_inpainting/models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/simple-lama-inpainting/simple_lama_inpainting/models/model.py -------------------------------------------------------------------------------- /organize_code/weights/simple-lama-inpainting/simple_lama_inpainting/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /organize_code/weights/simple-lama-inpainting/simple_lama_inpainting/utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/simple-lama-inpainting/simple_lama_inpainting/utils/util.py -------------------------------------------------------------------------------- /organize_code/weights/simple-lama-inpainting/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /organize_code/weights/simple-lama-inpainting/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/simple-lama-inpainting/tests/conftest.py -------------------------------------------------------------------------------- /organize_code/weights/simple-lama-inpainting/tests/test_lama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/organize_code/weights/simple-lama-inpainting/tests/test_lama.py -------------------------------------------------------------------------------- /particle_filling/filling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/particle_filling/filling.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/requirements.txt -------------------------------------------------------------------------------- /result_bear/bear_collision_compressed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/result_bear/bear_collision_compressed.gif -------------------------------------------------------------------------------- /utils/camera_view_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/utils/camera_view_utils.py -------------------------------------------------------------------------------- /utils/decode_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/utils/decode_param.py -------------------------------------------------------------------------------- /utils/render_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/utils/render_utils.py -------------------------------------------------------------------------------- /utils/transformation_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangmiaowei/DecoupledGaussian/HEAD/utils/transformation_utils.py --------------------------------------------------------------------------------