From 2f5d724818941510018a7ca744aec4c4bb18b59d Mon Sep 17 00:00:00 2001 From: Kai-46 Date: Mon, 12 Oct 2020 11:09:10 -0400 Subject: [PATCH] clean code --- .idea/.gitignore | 8 -------- .idea/deployment.xml | 15 --------------- .idea/inspectionProfiles/profiles_settings.xml | 6 ------ .idea/misc.xml | 7 ------- .idea/modules.xml | 8 -------- .idea/nerf_bg_latest_ddp.iml | 13 ------------- .idea/other.xml | 7 ------- .idea/webServers.xml | 14 -------------- README.md | 13 +++++++++---- 9 files changed, 9 insertions(+), 82 deletions(-) delete mode 100644 .idea/.gitignore delete mode 100644 .idea/deployment.xml delete mode 100644 .idea/inspectionProfiles/profiles_settings.xml delete mode 100644 .idea/misc.xml delete mode 100644 .idea/modules.xml delete mode 100644 .idea/nerf_bg_latest_ddp.iml delete mode 100644 .idea/other.xml delete mode 100644 .idea/webServers.xml diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 73f69e0..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml -# Editor-based HTTP Client requests -/httpRequests/ diff --git a/.idea/deployment.xml b/.idea/deployment.xml deleted file mode 100644 index 9fa599a..0000000 --- a/.idea/deployment.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml deleted file mode 100644 index 105ce2d..0000000 --- a/.idea/inspectionProfiles/profiles_settings.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index 4b72c97..0000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index c9cecbf..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/nerf_bg_latest_ddp.iml b/.idea/nerf_bg_latest_ddp.iml deleted file mode 100644 index 5355fe4..0000000 --- a/.idea/nerf_bg_latest_ddp.iml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/.idea/other.xml b/.idea/other.xml deleted file mode 100644 index 640fd80..0000000 --- a/.idea/other.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - \ No newline at end of file diff --git a/.idea/webServers.xml b/.idea/webServers.xml deleted file mode 100644 index 1e62245..0000000 --- a/.idea/webServers.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/README.md b/README.md index 3ffda6e..bffbfbf 100644 --- a/README.md +++ b/README.md @@ -7,10 +7,15 @@ Codebase for paper: * Download our preprocessed data from [tanks_and_temples](), [lf_data](). * Put the data in the code directory. * Data format. -** Each scene consists of 3 splits: train/test/validation. -** Intrinsics and poses are stored as flattened 4x4 matrices. -** Opencv camera coordinate system is adopted, i.e., x--->right, y--->down, z--->scene. -* Scene normalization: move the average camera center to origin, and put all the camera centers inside the unit sphere. + * Each scene consists of 3 splits: train/test/validation. + * Intrinsics and poses are stored as flattened 4x4 matrices. + * Opencv camera coordinate system is adopted, i.e., x--->right, y--->down, z--->scene. + * Scene normalization: move the average camera center to origin, and put all the camera centers inside the unit sphere. + +## Create environment +```bash +conda env create --file environment.yml +``` ## Training ```python