Skip to content

Commit

Permalink
Added licenses, bumped submodule versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Bernhard Kerbl committed Jul 5, 2023
1 parent 45a9877 commit 2694258
Show file tree
Hide file tree
Showing 22 changed files with 212 additions and 3 deletions.
2 changes: 1 addition & 1 deletion SIBR_viewers_windows
Submodule SIBR_viewers_windows updated from 71ced0 to 3c35b8
11 changes: 11 additions & 0 deletions arguments/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
#
# Copyright (C) 2023, Inria
# GRAPHDECO research group, https://team.inria.fr/graphdeco
# All rights reserved.
#
# This software is free for non-commercial, research and evaluation use
# under the terms of the LICENSE.md file.
#
# For inquiries contact [email protected]
#

from argparse import ArgumentParser, Namespace
import sys
import os
Expand Down
11 changes: 11 additions & 0 deletions convert.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
#
# Copyright (C) 2023, Inria
# GRAPHDECO research group, https://team.inria.fr/graphdeco
# All rights reserved.
#
# This software is free for non-commercial, research and evaluation use
# under the terms of the LICENSE.md file.
#
# For inquiries contact [email protected]
#

import os
from argparse import ArgumentParser
import shutil
Expand Down
11 changes: 11 additions & 0 deletions full_eval.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
#
# Copyright (C) 2023, Inria
# GRAPHDECO research group, https://team.inria.fr/graphdeco
# All rights reserved.
#
# This software is free for non-commercial, research and evaluation use
# under the terms of the LICENSE.md file.
#
# For inquiries contact [email protected]
#

import os
from argparse import ArgumentParser

Expand Down
11 changes: 11 additions & 0 deletions gaussian_renderer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
#
# Copyright (C) 2023, Inria
# GRAPHDECO research group, https://team.inria.fr/graphdeco
# All rights reserved.
#
# This software is free for non-commercial, research and evaluation use
# under the terms of the LICENSE.md file.
#
# For inquiries contact [email protected]
#

import torch
import math
from diff_gaussian_rasterization import GaussianRasterizationSettings, GaussianRasterizer
Expand Down
11 changes: 11 additions & 0 deletions gaussian_renderer/network_gui.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
#
# Copyright (C) 2023, Inria
# GRAPHDECO research group, https://team.inria.fr/graphdeco
# All rights reserved.
#
# This software is free for non-commercial, research and evaluation use
# under the terms of the LICENSE.md file.
#
# For inquiries contact [email protected]
#

import torch
import traceback
import socket
Expand Down
11 changes: 11 additions & 0 deletions metrics.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
#
# Copyright (C) 2023, Inria
# GRAPHDECO research group, https://team.inria.fr/graphdeco
# All rights reserved.
#
# This software is free for non-commercial, research and evaluation use
# under the terms of the LICENSE.md file.
#
# For inquiries contact [email protected]
#

from pathlib import Path
import os
from PIL import Image
Expand Down
11 changes: 11 additions & 0 deletions render.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
#
# Copyright (C) 2023, Inria
# GRAPHDECO research group, https://team.inria.fr/graphdeco
# All rights reserved.
#
# This software is free for non-commercial, research and evaluation use
# under the terms of the LICENSE.md file.
#
# For inquiries contact [email protected]
#

import torch
from scene import Scene
import os
Expand Down
11 changes: 11 additions & 0 deletions scene/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
#
# Copyright (C) 2023, Inria
# GRAPHDECO research group, https://team.inria.fr/graphdeco
# All rights reserved.
#
# This software is free for non-commercial, research and evaluation use
# under the terms of the LICENSE.md file.
#
# For inquiries contact [email protected]
#

import os
import random
import json
Expand Down
11 changes: 11 additions & 0 deletions scene/cameras.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
#
# Copyright (C) 2023, Inria
# GRAPHDECO research group, https://team.inria.fr/graphdeco
# All rights reserved.
#
# This software is free for non-commercial, research and evaluation use
# under the terms of the LICENSE.md file.
#
# For inquiries contact [email protected]
#

import torch
from torch import nn
import numpy as np
Expand Down
11 changes: 11 additions & 0 deletions scene/colmap_loader.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
#
# Copyright (C) 2023, Inria
# GRAPHDECO research group, https://team.inria.fr/graphdeco
# All rights reserved.
#
# This software is free for non-commercial, research and evaluation use
# under the terms of the LICENSE.md file.
#
# For inquiries contact [email protected]
#

import numpy as np
import collections
import struct
Expand Down
11 changes: 11 additions & 0 deletions scene/dataset_readers.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
#
# Copyright (C) 2023, Inria
# GRAPHDECO research group, https://team.inria.fr/graphdeco
# All rights reserved.
#
# This software is free for non-commercial, research and evaluation use
# under the terms of the LICENSE.md file.
#
# For inquiries contact [email protected]
#

import os
import sys
from PIL import Image
Expand Down
11 changes: 11 additions & 0 deletions scene/gaussian_model.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
#
# Copyright (C) 2023, Inria
# GRAPHDECO research group, https://team.inria.fr/graphdeco
# All rights reserved.
#
# This software is free for non-commercial, research and evaluation use
# under the terms of the LICENSE.md file.
#
# For inquiries contact [email protected]
#

import torch
import numpy as np
from utils.general_utils import inverse_sigmoid, get_expon_lr_func, build_rotation
Expand Down
2 changes: 1 addition & 1 deletion submodules/simple-knn
Submodule simple-knn updated from 76eff3 to 10b4e4
11 changes: 11 additions & 0 deletions train.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
#
# Copyright (C) 2023, Inria
# GRAPHDECO research group, https://team.inria.fr/graphdeco
# All rights reserved.
#
# This software is free for non-commercial, research and evaluation use
# under the terms of the LICENSE.md file.
#
# For inquiries contact [email protected]
#

import os
import torch
from random import randint
Expand Down
11 changes: 11 additions & 0 deletions utils/camera_utils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
#
# Copyright (C) 2023, Inria
# GRAPHDECO research group, https://team.inria.fr/graphdeco
# All rights reserved.
#
# This software is free for non-commercial, research and evaluation use
# under the terms of the LICENSE.md file.
#
# For inquiries contact [email protected]
#

from scene.cameras import Camera
import numpy as np
from utils.general_utils import PILtoTorch
Expand Down
11 changes: 11 additions & 0 deletions utils/general_utils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
#
# Copyright (C) 2023, Inria
# GRAPHDECO research group, https://team.inria.fr/graphdeco
# All rights reserved.
#
# This software is free for non-commercial, research and evaluation use
# under the terms of the LICENSE.md file.
#
# For inquiries contact [email protected]
#

import torch
import sys
from datetime import datetime
Expand Down
11 changes: 11 additions & 0 deletions utils/graphics_utils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
#
# Copyright (C) 2023, Inria
# GRAPHDECO research group, https://team.inria.fr/graphdeco
# All rights reserved.
#
# This software is free for non-commercial, research and evaluation use
# under the terms of the LICENSE.md file.
#
# For inquiries contact [email protected]
#

import torch
import math
import numpy as np
Expand Down
11 changes: 11 additions & 0 deletions utils/image_utils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
#
# Copyright (C) 2023, Inria
# GRAPHDECO research group, https://team.inria.fr/graphdeco
# All rights reserved.
#
# This software is free for non-commercial, research and evaluation use
# under the terms of the LICENSE.md file.
#
# For inquiries contact [email protected]
#

import torch

def mse(img1, img2):
Expand Down
11 changes: 11 additions & 0 deletions utils/loss_utils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
#
# Copyright (C) 2023, Inria
# GRAPHDECO research group, https://team.inria.fr/graphdeco
# All rights reserved.
#
# This software is free for non-commercial, research and evaluation use
# under the terms of the LICENSE.md file.
#
# For inquiries contact [email protected]
#

import torch
import torch.nn.functional as F
from torch.autograd import Variable
Expand Down
11 changes: 11 additions & 0 deletions utils/system_utils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
#
# Copyright (C) 2023, Inria
# GRAPHDECO research group, https://team.inria.fr/graphdeco
# All rights reserved.
#
# This software is free for non-commercial, research and evaluation use
# under the terms of the LICENSE.md file.
#
# For inquiries contact [email protected]
#

from errno import EEXIST
from os import makedirs, path
import os
Expand Down

0 comments on commit 2694258

Please sign in to comment.