SYMBOL INDEX (164 symbols across 24 files) FILE: arguments/__init__.py class GroupParams (line 16) | class GroupParams: class ParamGroup (line 19) | class ParamGroup: method __init__ (line 20) | def __init__(self, parser: ArgumentParser, name : str, fill_none = Fal... method extract (line 40) | def extract(self, args): class ModelParams (line 47) | class ModelParams(ParamGroup): method __init__ (line 48) | def __init__(self, parser, sentinel=False): method extract (line 61) | def extract(self, args): class PipelineParams (line 66) | class PipelineParams(ParamGroup): method __init__ (line 67) | def __init__(self, parser): class OptimizationParams (line 74) | class OptimizationParams(ParamGroup): method __init__ (line 75) | def __init__(self, parser): function get_combined_args (line 102) | def get_combined_args(parser : ArgumentParser): FILE: gaussian_renderer/__init__.py function render (line 18) | def render(viewpoint_camera, pc : GaussianModel, pipe, bg_color : torch.... FILE: gaussian_renderer/network_gui.py function init (line 26) | def init(wish_host, wish_port): function try_connect (line 34) | def try_connect(): function read (line 43) | def read(): function send (line 50) | def send(message_bytes, verify): function receive (line 57) | def receive(): FILE: lpipsPyTorch/__init__.py function lpips (line 6) | def lpips(x: torch.Tensor, FILE: lpipsPyTorch/modules/lpips.py class LPIPS (line 8) | class LPIPS(nn.Module): method __init__ (line 17) | def __init__(self, net_type: str = 'alex', version: str = '0.1'): method forward (line 30) | def forward(self, x: torch.Tensor, y: torch.Tensor): FILE: lpipsPyTorch/modules/networks.py function get_network (line 12) | def get_network(net_type: str): class LinLayers (line 23) | class LinLayers(nn.ModuleList): method __init__ (line 24) | def __init__(self, n_channels_list: Sequence[int]): class BaseNet (line 36) | class BaseNet(nn.Module): method __init__ (line 37) | def __init__(self): method set_requires_grad (line 46) | def set_requires_grad(self, state: bool): method z_score (line 50) | def z_score(self, x: torch.Tensor): method forward (line 53) | def forward(self, x: torch.Tensor): class SqueezeNet (line 66) | class SqueezeNet(BaseNet): method __init__ (line 67) | def __init__(self): class AlexNet (line 77) | class AlexNet(BaseNet): method __init__ (line 78) | def __init__(self): class VGG16 (line 88) | class VGG16(BaseNet): method __init__ (line 89) | def __init__(self): FILE: lpipsPyTorch/modules/utils.py function normalize_activation (line 6) | def normalize_activation(x, eps=1e-10): function get_state_dict (line 11) | def get_state_dict(net_type: str = 'alex', version: str = '0.1'): FILE: metrics.py function readImages (line 24) | def readImages(renders_dir, gt_dir): function evaluate (line 36) | def evaluate(model_paths): FILE: render.py function render_set (line 30) | def render_set(model_path, name, iteration, views, gaussians, pipeline, ... function render_sets (line 48) | def render_sets(dataset : ModelParams, iteration : int, pipeline : Pipel... FILE: scene/__init__.py class Scene (line 21) | class Scene: method __init__ (line 25) | def __init__(self, args : ModelParams, gaussians : GaussianModel, load... method save (line 85) | def save(self, iteration): method getTrainCameras (line 96) | def getTrainCameras(self, scale=1.0): method getTestCameras (line 99) | def getTestCameras(self, scale=1.0): FILE: scene/cameras.py class Camera (line 19) | class Camera(nn.Module): method __init__ (line 20) | def __init__(self, resolution, colmap_id, R, T, FoVx, FoVy, depth_para... class MiniCam (line 91) | class MiniCam: method __init__ (line 92) | def __init__(self, width, height, fovy, fovx, znear, zfar, world_view_... FILE: scene/colmap_loader.py function qvec2rotmat (line 43) | def qvec2rotmat(qvec): function rotmat2qvec (line 55) | def rotmat2qvec(R): class Image (line 68) | class Image(BaseImage): method qvec2rotmat (line 69) | def qvec2rotmat(self): function read_next_bytes (line 72) | def read_next_bytes(fid, num_bytes, format_char_sequence, endian_charact... function read_points3D_text (line 83) | def read_points3D_text(path): function read_points3D_binary (line 125) | def read_points3D_binary(path_to_model_file): function read_intrinsics_text (line 156) | def read_intrinsics_text(path): function read_extrinsics_binary (line 180) | def read_extrinsics_binary(path_to_model_file): function read_intrinsics_binary (line 215) | def read_intrinsics_binary(path_to_model_file): function read_extrinsics_text (line 244) | def read_extrinsics_text(path): function read_colmap_bin_array (line 273) | def read_colmap_bin_array(path): FILE: scene/dataset_readers.py class CameraInfo (line 26) | class CameraInfo(NamedTuple): class SceneInfo (line 40) | class SceneInfo(NamedTuple): function getNerfppNorm (line 48) | def getNerfppNorm(cam_info): function readColmapCameras (line 71) | def readColmapCameras(cam_extrinsics, cam_intrinsics, depths_params, ima... function fetchPly (line 120) | def fetchPly(path): function storePly (line 128) | def storePly(path, xyz, rgb): function readColmapSceneInfo (line 145) | def readColmapSceneInfo(path, images, depths, eval, train_test_exp, llff... function readCamerasFromTransforms (line 228) | def readCamerasFromTransforms(path, transformsfile, depths_folder, white... function readNerfSyntheticInfo (line 273) | def readNerfSyntheticInfo(path, white_background, depths, eval, extensio... FILE: scene/gaussian_model.py class GaussianModel (line 30) | class GaussianModel: method setup_functions (line 32) | def setup_functions(self): method __init__ (line 50) | def __init__(self, sh_degree, optimizer_type="default"): method capture (line 68) | def capture(self): method restore (line 84) | def restore(self, model_args, training_args): method get_scaling (line 103) | def get_scaling(self): method get_rotation (line 107) | def get_rotation(self): method get_xyz (line 111) | def get_xyz(self): method get_features (line 115) | def get_features(self): method get_features_dc (line 121) | def get_features_dc(self): method get_features_rest (line 125) | def get_features_rest(self): method get_opacity (line 129) | def get_opacity(self): method get_exposure (line 133) | def get_exposure(self): method get_exposure_from_name (line 136) | def get_exposure_from_name(self, image_name): method get_covariance (line 142) | def get_covariance(self, scaling_modifier = 1): method oneupSHdegree (line 145) | def oneupSHdegree(self): method create_from_pcd (line 149) | def create_from_pcd(self, pcd : BasicPointCloud, cam_infos : int, spat... method training_setup (line 178) | def training_setup(self, training_args): method update_learning_rate (line 213) | def update_learning_rate(self, iteration): method construct_list_of_attributes (line 225) | def construct_list_of_attributes(self): method save_ply (line 239) | def save_ply(self, path): method reset_opacity (line 258) | def reset_opacity(self): method load_ply (line 263) | def load_ply(self, path, use_train_test_exp = False): method replace_tensor_to_optimizer (line 316) | def replace_tensor_to_optimizer(self, tensor, name): method _prune_optimizer (line 331) | def _prune_optimizer(self, mask): method prune_points (line 349) | def prune_points(self, mask): method cat_tensors_to_optimizer (line 366) | def cat_tensors_to_optimizer(self, tensors_dict): method densification_postfix (line 388) | def densification_postfix(self, new_xyz, new_features_dc, new_features... method densify_and_split (line 409) | def densify_and_split(self, grads, grad_threshold, scene_extent, N=2): method densify_and_clone (line 435) | def densify_and_clone(self, grads, grad_threshold, scene_extent): method densify_and_prune (line 452) | def densify_and_prune(self, max_grad, min_opacity, extent, max_screen_... method add_densification_stats (line 471) | def add_densification_stats(self, viewspace_point_tensor, update_filter): FILE: train.py function training (line 43) | def training(dataset, opt, pipe, testing_iterations, saving_iterations, ... function prepare_output_and_logger (line 192) | def prepare_output_and_logger(args): function training_report (line 214) | def training_report(tb_writer, iteration, Ll1, loss, l1_loss, elapsed, t... FILE: utils/camera_utils.py function loadCam (line 20) | def loadCam(args, id, cam_info, resolution_scale, is_nerf_synthetic, is_... function cameraList_from_camInfos (line 69) | def cameraList_from_camInfos(cam_infos, resolution_scale, args, is_nerf_... function camera_to_JSON (line 77) | def camera_to_JSON(id, camera : Camera): FILE: utils/general_utils.py function inverse_sigmoid (line 18) | def inverse_sigmoid(x): function PILtoTorch (line 21) | def PILtoTorch(pil_image, resolution): function get_expon_lr_func (line 29) | def get_expon_lr_func( function strip_lowerdiag (line 64) | def strip_lowerdiag(L): function strip_symmetric (line 75) | def strip_symmetric(sym): function build_rotation (line 78) | def build_rotation(r): function build_scaling_rotation (line 101) | def build_scaling_rotation(s, r): function safe_state (line 112) | def safe_state(silent): FILE: utils/graphics_utils.py class BasicPointCloud (line 17) | class BasicPointCloud(NamedTuple): function geom_transform_points (line 22) | def geom_transform_points(points, transf_matrix): function getWorld2View (line 31) | def getWorld2View(R, t): function getWorld2View2 (line 38) | def getWorld2View2(R, t, translate=np.array([.0, .0, .0]), scale=1.0): function getProjectionMatrix (line 51) | def getProjectionMatrix(znear, zfar, fovX, fovY): function fov2focal (line 73) | def fov2focal(fov, pixels): function focal2fov (line 76) | def focal2fov(focal, pixels): FILE: utils/image_utils.py function mse (line 14) | def mse(img1, img2): function psnr (line 17) | def psnr(img1, img2): FILE: utils/loss_utils.py class FusedSSIMMap (line 24) | class FusedSSIMMap(torch.autograd.Function): method forward (line 26) | def forward(ctx, C1, C2, img1, img2): method backward (line 34) | def backward(ctx, opt_grad): function l1_loss (line 40) | def l1_loss(network_output, gt): function l2_loss (line 43) | def l2_loss(network_output, gt): function gaussian (line 46) | def gaussian(window_size, sigma): function create_window (line 50) | def create_window(window_size, channel): function ssim (line 56) | def ssim(img1, img2, window_size=11, size_average=True): function _ssim (line 66) | def _ssim(img1, img2, window, window_size, channel, size_average=True): function fast_ssim (line 89) | def fast_ssim(img1, img2): FILE: utils/make_depth_scale.py function get_scales (line 8) | def get_scales(key, cameras, images, points3d_ordered, args): FILE: utils/read_write_model.py class Image (line 52) | class Image(BaseImage): method qvec2rotmat (line 53) | def qvec2rotmat(self): function read_next_bytes (line 78) | def read_next_bytes(fid, num_bytes, format_char_sequence, endian_charact... function write_next_bytes (line 90) | def write_next_bytes(fid, data, format_char_sequence, endian_character="... function read_cameras_text (line 106) | def read_cameras_text(path): function read_cameras_binary (line 136) | def read_cameras_binary(path_to_model_file): function write_cameras_text (line 171) | def write_cameras_text(cameras, path): function write_cameras_binary (line 190) | def write_cameras_binary(cameras, path_to_model_file): function read_images_text (line 207) | def read_images_text(path): function read_images_binary (line 247) | def read_images_binary(path_to_model_file): function write_images_text (line 296) | def write_images_text(images, path): function write_images_binary (line 336) | def write_images_binary(images, path_to_model_file): function read_points3D_text (line 357) | def read_points3D_text(path): function read_points3D_binary (line 389) | def read_points3D_binary(path_to_model_file): function write_points3D_text (line 427) | def write_points3D_text(points3D, path): function write_points3D_binary (line 458) | def write_points3D_binary(points3D, path_to_model_file): function detect_model_format (line 477) | def detect_model_format(path, ext): function read_model (line 489) | def read_model(path, ext=""): function write_model (line 511) | def write_model(cameras, images, points3D, path, ext=".bin"): function qvec2rotmat (line 523) | def qvec2rotmat(qvec): function rotmat2qvec (line 545) | def rotmat2qvec(R): FILE: utils/sh_utils.py function eval_sh (line 57) | def eval_sh(deg, sh, dirs): function RGB2SH (line 114) | def RGB2SH(rgb): function SH2RGB (line 117) | def SH2RGB(sh): FILE: utils/system_utils.py function mkdir_p (line 16) | def mkdir_p(folder_path): function searchForMaxIteration (line 26) | def searchForMaxIteration(folder):