Falcary commited on
Commit
db9f992
·
1 Parent(s): 5d37a2e

upload indoor house val and test set

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. indoor_house/bpy_render_views.py +192 -0
  2. indoor_house/views/test/r_1.png +3 -0
  3. indoor_house/views/test/r_100.png +3 -0
  4. indoor_house/views/test/r_101.png +3 -0
  5. indoor_house/views/test/r_103.png +3 -0
  6. indoor_house/views/test/r_104.png +3 -0
  7. indoor_house/views/test/r_105.png +3 -0
  8. indoor_house/views/test/r_106.png +3 -0
  9. indoor_house/views/test/r_108.png +3 -0
  10. indoor_house/views/test/r_109.png +3 -0
  11. indoor_house/views/test/r_111.png +3 -0
  12. indoor_house/views/test/r_112.png +3 -0
  13. indoor_house/views/test/r_113.png +3 -0
  14. indoor_house/views/test/r_114.png +3 -0
  15. indoor_house/views/test/r_116.png +3 -0
  16. indoor_house/views/test/r_117.png +3 -0
  17. indoor_house/views/test/r_118.png +3 -0
  18. indoor_house/views/test/r_120.png +3 -0
  19. indoor_house/views/test/r_121.png +3 -0
  20. indoor_house/views/test/r_124.png +3 -0
  21. indoor_house/views/test/r_125.png +3 -0
  22. indoor_house/views/test/r_127.png +3 -0
  23. indoor_house/views/test/r_128.png +3 -0
  24. indoor_house/views/test/r_131.png +3 -0
  25. indoor_house/views/test/r_132.png +3 -0
  26. indoor_house/views/test/r_134.png +3 -0
  27. indoor_house/views/test/r_142.png +3 -0
  28. indoor_house/views/test/r_143.png +3 -0
  29. indoor_house/views/test/r_144.png +3 -0
  30. indoor_house/views/test/r_146.png +3 -0
  31. indoor_house/views/test/r_148.png +3 -0
  32. indoor_house/views/test/r_152.png +3 -0
  33. indoor_house/views/test/r_157.png +3 -0
  34. indoor_house/views/test/r_158.png +3 -0
  35. indoor_house/views/test/r_159.png +3 -0
  36. indoor_house/views/test/r_160.png +3 -0
  37. indoor_house/views/test/r_162.png +3 -0
  38. indoor_house/views/test/r_163.png +3 -0
  39. indoor_house/views/test/r_165.png +3 -0
  40. indoor_house/views/test/r_166.png +3 -0
  41. indoor_house/views/test/r_168.png +3 -0
  42. indoor_house/views/test/r_169.png +3 -0
  43. indoor_house/views/test/r_174.png +3 -0
  44. indoor_house/views/test/r_175.png +3 -0
  45. indoor_house/views/test/r_177.png +3 -0
  46. indoor_house/views/test/r_178.png +3 -0
  47. indoor_house/views/test/r_179.png +3 -0
  48. indoor_house/views/test/r_18.png +3 -0
  49. indoor_house/views/test/r_180.png +3 -0
  50. indoor_house/views/test/r_185.png +3 -0
indoor_house/bpy_render_views.py ADDED
@@ -0,0 +1,192 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import argparse
2
+ import os
3
+ import json
4
+ from math import radians
5
+ import bpy
6
+ import numpy as np
7
+
8
+ COLOR_SPACES = ["display", "linear"]
9
+ DEVICES = ["cpu", "cuda", "optix"]
10
+
11
+ def listify_matrix(matrix):
12
+ matrix_list = []
13
+ for row in matrix:
14
+ matrix_list.append(list(row))
15
+ return matrix_list
16
+
17
+ def parent_obj_to_camera(b_camera, origin):
18
+ b_empty = bpy.data.objects.new("Empty", None)
19
+ b_empty.location = origin
20
+ b_camera.parent = b_empty
21
+
22
+ scn = bpy.context.scene
23
+ scn.collection.objects.link(b_empty)
24
+ bpy.context.view_layer.objects.active = b_empty
25
+
26
+ return b_empty
27
+
28
+ def main(args):
29
+ bpy.ops.wm.open_mainfile(filepath=args.blend_path)
30
+
31
+ scene = bpy.data.scenes["Scene"]
32
+ scene.render.engine = "CYCLES"
33
+ scene.render.use_persistent_data = True
34
+ scene.cycles.samples = 256
35
+ bpy.context.scene.unit_settings.scale_length = 0.01
36
+ if args.device == "cpu":
37
+ bpy.context.preferences.addons["cycles"].preferences.compute_device_type = "NONE"
38
+ bpy.context.scene.cycles.device = "CPU"
39
+ elif args.device == "cuda":
40
+ bpy.context.preferences.addons["cycles"].preferences.compute_device_type = "CUDA"
41
+ bpy.context.scene.cycles.device = "GPU"
42
+ elif args.device == "optix":
43
+ bpy.context.preferences.addons["cycles"].preferences.compute_device_type = "OPTIX"
44
+ bpy.context.scene.cycles.device = "GPU"
45
+ bpy.context.preferences.addons["cycles"].preferences.get_devices()
46
+
47
+ scene.view_layers[0].use_pass_combined = True
48
+ scene.use_nodes = True
49
+ tree = scene.node_tree
50
+
51
+ if args.depth:
52
+ scene.view_layers[0].use_pass_z = True
53
+ combine_color = tree.nodes.new("CompositorNodeCombineColor")
54
+ depth_output = tree.nodes.new("CompositorNodeOutputFile")
55
+ if args.normal:
56
+ scene.view_layers[0].use_pass_normal = True
57
+ normal_output = tree.nodes.new("CompositorNodeOutputFile")
58
+ if args.depth or args.normal:
59
+ render_layers = tree.nodes.new("CompositorNodeRLayers")
60
+
61
+ scene.render.filepath = args.renders_path
62
+ scene.render.use_file_extension = True
63
+ scene.render.use_overwrite = True
64
+ scene.render.image_settings.color_mode = "RGBA"
65
+
66
+ if args.color_space == "display":
67
+ scene.render.image_settings.file_format = "PNG"
68
+ scene.render.image_settings.color_depth = "8"
69
+ scene.render.image_settings.color_management = "FOLLOW_SCENE"
70
+ elif args.color_space == "linear":
71
+ scene.render.image_settings.file_format = "OPEN_EXR"
72
+ scene.render.image_settings.color_depth = "32"
73
+
74
+ if args.depth:
75
+ depth_output.base_path = os.path.join(args.renders_path, "depth")
76
+ depth_output.file_slots[0].use_node_format = True
77
+ scene.frame_set(0)
78
+
79
+ depth_output.format.file_format = "OPEN_EXR"
80
+ depth_output.format.color_mode = "RGB"
81
+ depth_output.format.color_depth = "32"
82
+ depth_output.format.exr_codec = "NONE"
83
+
84
+ links = tree.links
85
+ combine_color.mode = "RGB"
86
+ links.new(render_layers.outputs["Depth"], combine_color.inputs["Red"])
87
+ combine_color.inputs["Green"].default_value = 0
88
+ combine_color.inputs["Blue"].default_value = 0
89
+ combine_color.inputs["Alpha"].default_value = 1
90
+
91
+ links.new(combine_color.outputs["Image"], depth_output.inputs["Image"])
92
+
93
+ if args.normal:
94
+ normal_output.base_path = os.path.join(args.renders_path, "normal")
95
+ normal_output.file_slots[0].use_node_format = True
96
+ scene.frame_set(0)
97
+
98
+ normal_output.format.file_format = "OPEN_EXR"
99
+ normal_output.format.color_mode = "RGB"
100
+ normal_output.format.color_depth = "32"
101
+ normal_output.format.exr_codec = "NONE"
102
+
103
+ links = tree.links
104
+ combine_color.mode = "RGB"
105
+ links.new(render_layers.outputs["Normal"], normal_output.inputs["Image"])
106
+
107
+ scene.render.dither_intensity = 0.0
108
+ scene.render.film_transparent = True
109
+ scene.render.resolution_percentage = 100
110
+ scene.render.resolution_x = args.resolution[0]
111
+ scene.render.resolution_y = args.resolution[1]
112
+
113
+ cam = bpy.data.objects["Camera"]
114
+ cam.location = (4.0, -214.736, 120.0)
115
+ cam.rotation_mode = "XYZ"
116
+ cam_constraint = cam.constraints.new(type="TRACK_TO")
117
+ cam_constraint.track_axis = "TRACK_NEGATIVE_Z"
118
+ cam_constraint.up_axis = "UP_Y"
119
+ b_empty = parent_obj_to_camera(cam, (0, 0, 100.0))
120
+ cam_constraint.target = b_empty
121
+
122
+ args.renders_path = os.path.normpath(args.renders_path)
123
+ folder_name = os.path.basename(args.renders_path)
124
+ renders_parent_path = os.path.dirname(args.renders_path)
125
+ transforms_path = os.path.join(renders_parent_path, f"transforms_{folder_name}.json")
126
+
127
+ stepsize = 360.0 / args.num_views
128
+ out_data = {
129
+ "camera_angle_x": cam.data.angle_x,
130
+ "frames": []
131
+ }
132
+
133
+ for i in range(args.num_views):
134
+ if args.random_views:
135
+ if args.upper_views:
136
+ # 从上半球随机采样视图
137
+ # 限制 x 轴(pitch)的旋转范围以避免向下拍摄
138
+ pitch = radians(np.random.uniform(-20.0 , 30.0)) # 限制俯仰角在 0 到 90 度之间
139
+ yaw = radians(np.random.uniform(0, 360)) # 随机偏航角
140
+ b_empty.rotation_euler = (pitch, 0, yaw)
141
+ else:
142
+ # 完全随机采样视图
143
+ b_empty.rotation_euler = (
144
+ radians(np.random.uniform(0, 180)),
145
+ 0,
146
+ radians(np.random.uniform(0, 360))
147
+ )
148
+ else:
149
+ # 等间隔采样视图
150
+ b_empty.rotation_euler[2] = radians(i * stepsize)
151
+
152
+ scene.render.filepath = os.path.join(args.renders_path, f"r_{i}")
153
+ if args.depth:
154
+ depth_output.file_slots[0].path = f"r_{i}"
155
+ if args.normal:
156
+ normal_output.file_slots[0].path = f"r_{i}"
157
+ bpy.ops.render.render(write_still=True)
158
+
159
+ if args.depth:
160
+ os.rename(os.path.join(depth_output.base_path, f"r_{i}0000.exr"),
161
+ os.path.join(depth_output.base_path, f"r_{i}.exr"))
162
+ if args.normal:
163
+ os.rename(os.path.join(normal_output.base_path, f"r_{i}0000.exr"),
164
+ os.path.join(normal_output.base_path, f"r_{i}.exr"))
165
+
166
+ frame_data = {
167
+ "file_path": os.path.join(".", os.path.relpath(scene.render.filepath, start=renders_parent_path)),
168
+ "rotation": radians(i * stepsize),
169
+ "transform_matrix": listify_matrix(cam.matrix_world)
170
+ }
171
+ out_data["frames"].append(frame_data)
172
+
173
+ with open(transforms_path, "w") as out_file:
174
+ json.dump(out_data, out_file, indent=4)
175
+
176
+ if __name__ == "__main__":
177
+ parser = argparse.ArgumentParser(description="Script for rendering novel views of synthetic Blender scenes.")
178
+ parser.add_argument("blend_path", type=str, help="Path to the blend-file of the synthetic Blender scene.")
179
+ parser.add_argument("renders_path", type=str, help="Desired path to the novel view renders.")
180
+ parser.add_argument("num_views", type=int, help="Number of novel view renders.")
181
+ parser.add_argument("resolution", type=int, nargs=2, default=[1080, 720], help="Image resolution of the novel view renders.")
182
+ parser.add_argument("--color_space", type=str, choices=COLOR_SPACES, default="display", help="Color space of the output novel view images.")
183
+ parser.add_argument("--device", type=str, choices=DEVICES, default="cuda", help="Compute device type for rendering.")
184
+ parser.add_argument("--random_views", action="store_true", help="Randomly sample novel views.")
185
+ parser.add_argument("--upper_views", action="store_true", help="Only sample novel views from the upper hemisphere.")
186
+ parser.add_argument("--depth", action="store_true", help="Render depth maps too.")
187
+ parser.add_argument("--normal", action="store_true", help="Render normal maps too.")
188
+ args = parser.parse_args()
189
+
190
+ main(args)
191
+
192
+ # bpy.context.scene.unit_settings.scale_length = 0.01
indoor_house/views/test/r_1.png ADDED

Git LFS Details

  • SHA256: 36a21c69bd13e8e00346d438e3fd65169bdd923c63188286e429764dc0d79d1f
  • Pointer size: 131 Bytes
  • Size of remote file: 786 kB
indoor_house/views/test/r_100.png ADDED

Git LFS Details

  • SHA256: 0966c106d9d5df281f848b375559dae23c5eb1d71505204cf557cc60edfea2af
  • Pointer size: 131 Bytes
  • Size of remote file: 885 kB
indoor_house/views/test/r_101.png ADDED

Git LFS Details

  • SHA256: b19d81593e5928d658cb11fc83cbb1d3980a0f1074d2c80b4ea68e99f645089f
  • Pointer size: 131 Bytes
  • Size of remote file: 927 kB
indoor_house/views/test/r_103.png ADDED

Git LFS Details

  • SHA256: bf97a7b4df3665c7f39b4dfa7f3312d1deb6dfd4309259c542dbda64e985c70a
  • Pointer size: 131 Bytes
  • Size of remote file: 799 kB
indoor_house/views/test/r_104.png ADDED

Git LFS Details

  • SHA256: 74bc37c43de3b22db3457c7076249196c4ccbd2a3e7f7f6711aab9fdc3589871
  • Pointer size: 131 Bytes
  • Size of remote file: 954 kB
indoor_house/views/test/r_105.png ADDED

Git LFS Details

  • SHA256: 785469f86aa6f283e97197f4603f437f342ecd73cfe6f4fba0810f4d1b0959de
  • Pointer size: 131 Bytes
  • Size of remote file: 985 kB
indoor_house/views/test/r_106.png ADDED

Git LFS Details

  • SHA256: 2c634802688d7f3a0d5edfcf85d8cfe523ac7828eeb825c1d0ab3e5d60ff0691
  • Pointer size: 132 Bytes
  • Size of remote file: 1.02 MB
indoor_house/views/test/r_108.png ADDED

Git LFS Details

  • SHA256: bdd0eabee4dd93bdfacdec86c0ee7b3653bf675dee23959dc28959ad20f32263
  • Pointer size: 131 Bytes
  • Size of remote file: 725 kB
indoor_house/views/test/r_109.png ADDED

Git LFS Details

  • SHA256: f3ffeac21f3a59bc38862a99685de5ca970f65bf3a7856a5cc4c3e2f05b6fad7
  • Pointer size: 131 Bytes
  • Size of remote file: 825 kB
indoor_house/views/test/r_111.png ADDED

Git LFS Details

  • SHA256: efc0e25284f4a99bea2c3e8eb014804e68124679706f5f3f592e51c933716af1
  • Pointer size: 131 Bytes
  • Size of remote file: 874 kB
indoor_house/views/test/r_112.png ADDED

Git LFS Details

  • SHA256: 9540e9ee8fab764fdf0a791ee60110f0376bdae00db80eef2d36bf6f97455cbd
  • Pointer size: 131 Bytes
  • Size of remote file: 812 kB
indoor_house/views/test/r_113.png ADDED

Git LFS Details

  • SHA256: 4d54726c78e965dfc5788b250a7767bab4c5b7077f09394be2eab8d5abda7194
  • Pointer size: 131 Bytes
  • Size of remote file: 808 kB
indoor_house/views/test/r_114.png ADDED

Git LFS Details

  • SHA256: faf623e4a0ad5581d0056bc64395b6b8f34dc865c16d9ab842acf88d440cc4b1
  • Pointer size: 131 Bytes
  • Size of remote file: 793 kB
indoor_house/views/test/r_116.png ADDED

Git LFS Details

  • SHA256: 6fd8945028c4d6c32fae0719fd8486e3f144af8769509c4a18d6e14416280db8
  • Pointer size: 131 Bytes
  • Size of remote file: 878 kB
indoor_house/views/test/r_117.png ADDED

Git LFS Details

  • SHA256: 1d853c559afccf7a5062daf2a359d96ac9d61d9a6422ef196c85a6fd48aab845
  • Pointer size: 131 Bytes
  • Size of remote file: 750 kB
indoor_house/views/test/r_118.png ADDED

Git LFS Details

  • SHA256: 8b6f39d46dee51241639df09a19085429f7e3b2028499ad5a97e75b3c4dea95c
  • Pointer size: 131 Bytes
  • Size of remote file: 749 kB
indoor_house/views/test/r_120.png ADDED

Git LFS Details

  • SHA256: eadc310e308dc5a06da698e7ddd23512eaf59896b85f99393aa321edd099f8fd
  • Pointer size: 131 Bytes
  • Size of remote file: 923 kB
indoor_house/views/test/r_121.png ADDED

Git LFS Details

  • SHA256: cf26f291ddc191921201791f6222e82f99092d99a5844b27171fcf4961eeda13
  • Pointer size: 131 Bytes
  • Size of remote file: 938 kB
indoor_house/views/test/r_124.png ADDED

Git LFS Details

  • SHA256: 0c0b53e4de7b7e990f8e0cde4626b0a54370deee4eaee82fc6686dd09303148d
  • Pointer size: 131 Bytes
  • Size of remote file: 751 kB
indoor_house/views/test/r_125.png ADDED

Git LFS Details

  • SHA256: 808f9dd96c79a99f6f6dd6f67befb3a53390ee36ccbd216221a1293071bb631d
  • Pointer size: 131 Bytes
  • Size of remote file: 808 kB
indoor_house/views/test/r_127.png ADDED

Git LFS Details

  • SHA256: b481a2daf277216e232e5f475033a24b44039769f0754c1cecd1f4a58a611d70
  • Pointer size: 131 Bytes
  • Size of remote file: 730 kB
indoor_house/views/test/r_128.png ADDED

Git LFS Details

  • SHA256: 5b68d981b887554dfcecd38306ae5b4decb7e14444c5c6e3daa4150c42bf3297
  • Pointer size: 131 Bytes
  • Size of remote file: 728 kB
indoor_house/views/test/r_131.png ADDED

Git LFS Details

  • SHA256: 3279783762f1046c8f8b9233c3c129bda51f0853cba3e98445666d23538d2bb4
  • Pointer size: 131 Bytes
  • Size of remote file: 898 kB
indoor_house/views/test/r_132.png ADDED

Git LFS Details

  • SHA256: 3c8db8983b36ef272af84460df2e9ebac32691897dbe6feee1e0c5e314ac916c
  • Pointer size: 131 Bytes
  • Size of remote file: 895 kB
indoor_house/views/test/r_134.png ADDED

Git LFS Details

  • SHA256: 503552aee39bcb9303549271cda01ff49ebca68d51c625130a4eeaa94a1a9a3c
  • Pointer size: 131 Bytes
  • Size of remote file: 945 kB
indoor_house/views/test/r_142.png ADDED

Git LFS Details

  • SHA256: 6ac4a4f9f87de9540b705918564365b1973fce5c0439770c9fe10400978f9fc2
  • Pointer size: 131 Bytes
  • Size of remote file: 743 kB
indoor_house/views/test/r_143.png ADDED

Git LFS Details

  • SHA256: 0331ee6fbeb726c7a2e6b8f485520ed4d4e96cf055a8a699c8524b2310511364
  • Pointer size: 132 Bytes
  • Size of remote file: 1.05 MB
indoor_house/views/test/r_144.png ADDED

Git LFS Details

  • SHA256: a4851aec33ac02de1acf0850c31072be9a264ffee672cbb8708158ce143bb7ce
  • Pointer size: 131 Bytes
  • Size of remote file: 818 kB
indoor_house/views/test/r_146.png ADDED

Git LFS Details

  • SHA256: 4eb72e692e0f613687f652694f42d2d816d62a6730ab6ad452ad931b488d34fe
  • Pointer size: 131 Bytes
  • Size of remote file: 956 kB
indoor_house/views/test/r_148.png ADDED

Git LFS Details

  • SHA256: 8da827fa1aa5cdb3915cc35ab0f81f417dfd9777acd329fbbb40f9d1aca2cf39
  • Pointer size: 131 Bytes
  • Size of remote file: 958 kB
indoor_house/views/test/r_152.png ADDED

Git LFS Details

  • SHA256: c2ae436be9cc61503670ec9648dc66177c546bdcfdb26270c40927ef911da340
  • Pointer size: 131 Bytes
  • Size of remote file: 917 kB
indoor_house/views/test/r_157.png ADDED

Git LFS Details

  • SHA256: d47b0316d5d873d51e8a93dd59a187f60dfbb8dcae3acbf02655c5e77dd0489d
  • Pointer size: 131 Bytes
  • Size of remote file: 842 kB
indoor_house/views/test/r_158.png ADDED

Git LFS Details

  • SHA256: d029f78d4c15d9b093e79c4b6323b2e153f95adff059fa52550eb733b2ed7451
  • Pointer size: 131 Bytes
  • Size of remote file: 781 kB
indoor_house/views/test/r_159.png ADDED

Git LFS Details

  • SHA256: 55c3616fe5a0131b6b3791dff9ef278a0e71c91c433f10f898c029e4ab0f2de6
  • Pointer size: 132 Bytes
  • Size of remote file: 1.06 MB
indoor_house/views/test/r_160.png ADDED

Git LFS Details

  • SHA256: 589f7f2d0acf5a49adbabaf18596fb5604c3e3e4c470dced0f98ae9e02b3cfb9
  • Pointer size: 131 Bytes
  • Size of remote file: 935 kB
indoor_house/views/test/r_162.png ADDED

Git LFS Details

  • SHA256: 51488b6a3693e76a91af7cf331f341118154f2a14883678931ab73dd5d94682e
  • Pointer size: 131 Bytes
  • Size of remote file: 961 kB
indoor_house/views/test/r_163.png ADDED

Git LFS Details

  • SHA256: 57d11883407139f024ee2d0f15d89f146eb4b9e7d292cd9b39c92bcb6c865c49
  • Pointer size: 131 Bytes
  • Size of remote file: 924 kB
indoor_house/views/test/r_165.png ADDED

Git LFS Details

  • SHA256: 4c51469a719605a98db9bfbc03d26a085ab42ef1308340032e3362e10cdd38b2
  • Pointer size: 131 Bytes
  • Size of remote file: 964 kB
indoor_house/views/test/r_166.png ADDED

Git LFS Details

  • SHA256: daaab495fdf667eefc4fd730f880290934715ce1bd865feb4796208b6315ef0e
  • Pointer size: 131 Bytes
  • Size of remote file: 843 kB
indoor_house/views/test/r_168.png ADDED

Git LFS Details

  • SHA256: 037e3b85b6122cdc3b1bf3da8825d6f79b844ee7af725f06422425bb0e4f8b47
  • Pointer size: 131 Bytes
  • Size of remote file: 947 kB
indoor_house/views/test/r_169.png ADDED

Git LFS Details

  • SHA256: f83ccc0cecca78411ac849c8811de0847dac85a38d75ea242e145d9d142b38aa
  • Pointer size: 131 Bytes
  • Size of remote file: 785 kB
indoor_house/views/test/r_174.png ADDED

Git LFS Details

  • SHA256: a9e17691d58d3816245519a273d050a32df19480a63cc50b3db924a57844c24c
  • Pointer size: 131 Bytes
  • Size of remote file: 933 kB
indoor_house/views/test/r_175.png ADDED

Git LFS Details

  • SHA256: 0aad30b0110a7384def48819afcc09b6b67a75f7836034ebc896e4a962cb53bc
  • Pointer size: 131 Bytes
  • Size of remote file: 956 kB
indoor_house/views/test/r_177.png ADDED

Git LFS Details

  • SHA256: bcea2d01dea7f38195012d22fef8bec9efa91d5c62c339579a7ed2730300c4b0
  • Pointer size: 131 Bytes
  • Size of remote file: 988 kB
indoor_house/views/test/r_178.png ADDED

Git LFS Details

  • SHA256: 1d255c0b9ac10159fb37e86cd6307ff012ac27c9bb90caec49db18ce8cede187
  • Pointer size: 131 Bytes
  • Size of remote file: 936 kB
indoor_house/views/test/r_179.png ADDED

Git LFS Details

  • SHA256: 53d93cf72215131d8e4c67b835d53b1d6c0d9c7bc5bc142a1a207d5e99629bac
  • Pointer size: 131 Bytes
  • Size of remote file: 851 kB
indoor_house/views/test/r_18.png ADDED

Git LFS Details

  • SHA256: 26dc53338a0adf1fa012cb0105646c792ad4d8e257c01d811101b853f0022b17
  • Pointer size: 131 Bytes
  • Size of remote file: 900 kB
indoor_house/views/test/r_180.png ADDED

Git LFS Details

  • SHA256: f7ba05cccde60894098edff43478ca915270531844799c85d49360a19c3900bd
  • Pointer size: 131 Bytes
  • Size of remote file: 978 kB
indoor_house/views/test/r_185.png ADDED

Git LFS Details

  • SHA256: 46dc195a301e1ab87b5e35c34919a18f26adca3c1d98e4f352d0017a86cdd087
  • Pointer size: 131 Bytes
  • Size of remote file: 973 kB