瀏覽代碼

Changes to README, rescale from 1.6mpix

bkerbl 2 年之前
父節點
當前提交
424012cd0d
共有 3 個文件被更改,包括 12 次插入7 次删除
  1. 8 3
      README.md
  2. 1 1
      submodules/diff-gaussian-rasterization
  3. 3 3
      utils/camera_utils.py

文件差異過大導致無法顯示
+ 8 - 3
README.md


+ 1 - 1
submodules/diff-gaussian-rasterization

@@ -1 +1 @@
-Subproject commit 3a07ac2e39b9ba7043ffc8bb98397c3ba6e2532d
+Subproject commit 4aedd8226f7257935891049f5a378b0e21d0aa37

+ 3 - 3
utils/camera_utils.py

@@ -23,13 +23,13 @@ def loadCam(args, id, cam_info, resolution_scale):
         resolution = round(orig_w/(resolution_scale * args.resolution)), round(orig_h/(resolution_scale * args.resolution))
     else:  # should be a type that converts to float
         if args.resolution == -1:
-            if orig_w > 1500:
+            if orig_w > 1600:
                 global WARNED
                 if not WARNED:
-                    print("[ INFO ] Encountered quite large input images (>1.5Mpix), rescaling to 1.5Mpix. "
+                    print("[ INFO ] Encountered quite large input images (>1.6Mpix), rescaling to 1.6Mpix. "
                         "If this is not desired, please explicitly specify '--resolution/-r' as 1")
                     WARNED = True
-                global_down = orig_w / 1500
+                global_down = orig_w / 1600
             else:
                 global_down = 1
         else: