Falcary commited on
Commit
652d2b5
·
1 Parent(s): f31c4f6

update indoor capsule 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_capsule/bpy_render_views.py +191 -0
  2. indoor_capsule/views/test/r_1.png +3 -0
  3. indoor_capsule/views/test/r_100.png +3 -0
  4. indoor_capsule/views/test/r_101.png +3 -0
  5. indoor_capsule/views/test/r_103.png +3 -0
  6. indoor_capsule/views/test/r_104.png +3 -0
  7. indoor_capsule/views/test/r_105.png +3 -0
  8. indoor_capsule/views/test/r_106.png +3 -0
  9. indoor_capsule/views/test/r_108.png +3 -0
  10. indoor_capsule/views/test/r_109.png +3 -0
  11. indoor_capsule/views/test/r_111.png +3 -0
  12. indoor_capsule/views/test/r_112.png +3 -0
  13. indoor_capsule/views/test/r_113.png +3 -0
  14. indoor_capsule/views/test/r_114.png +3 -0
  15. indoor_capsule/views/test/r_116.png +3 -0
  16. indoor_capsule/views/test/r_117.png +3 -0
  17. indoor_capsule/views/test/r_118.png +3 -0
  18. indoor_capsule/views/test/r_120.png +3 -0
  19. indoor_capsule/views/test/r_121.png +3 -0
  20. indoor_capsule/views/test/r_124.png +3 -0
  21. indoor_capsule/views/test/r_125.png +3 -0
  22. indoor_capsule/views/test/r_127.png +3 -0
  23. indoor_capsule/views/test/r_128.png +3 -0
  24. indoor_capsule/views/test/r_131.png +3 -0
  25. indoor_capsule/views/test/r_132.png +3 -0
  26. indoor_capsule/views/test/r_134.png +3 -0
  27. indoor_capsule/views/test/r_142.png +3 -0
  28. indoor_capsule/views/test/r_143.png +3 -0
  29. indoor_capsule/views/test/r_144.png +3 -0
  30. indoor_capsule/views/test/r_146.png +3 -0
  31. indoor_capsule/views/test/r_148.png +3 -0
  32. indoor_capsule/views/test/r_152.png +3 -0
  33. indoor_capsule/views/test/r_157.png +3 -0
  34. indoor_capsule/views/test/r_158.png +3 -0
  35. indoor_capsule/views/test/r_159.png +3 -0
  36. indoor_capsule/views/test/r_160.png +3 -0
  37. indoor_capsule/views/test/r_162.png +3 -0
  38. indoor_capsule/views/test/r_163.png +3 -0
  39. indoor_capsule/views/test/r_165.png +3 -0
  40. indoor_capsule/views/test/r_166.png +3 -0
  41. indoor_capsule/views/test/r_168.png +3 -0
  42. indoor_capsule/views/test/r_169.png +3 -0
  43. indoor_capsule/views/test/r_174.png +3 -0
  44. indoor_capsule/views/test/r_175.png +3 -0
  45. indoor_capsule/views/test/r_177.png +3 -0
  46. indoor_capsule/views/test/r_178.png +3 -0
  47. indoor_capsule/views/test/r_179.png +3 -0
  48. indoor_capsule/views/test/r_18.png +3 -0
  49. indoor_capsule/views/test/r_180.png +3 -0
  50. indoor_capsule/views/test/r_185.png +3 -0
indoor_capsule/bpy_render_views.py ADDED
@@ -0,0 +1,191 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 = (0.0, -1.54 , 0.8)
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, 0.4))
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(-15.0 , 15.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
+ # python bpy_render_views.py /home/falcary/workstation/blender_env_indoors_dataset/outputs/Capsule/Capsule_Trajetory/C ./test/ 200 800 800 --color_space display --device cuda --random_views --depth --normal
indoor_capsule/views/test/r_1.png ADDED

Git LFS Details

  • SHA256: 650f7694f055e84426044955640711a76cb8a56f5c3879d32968d3dae8464248
  • Pointer size: 132 Bytes
  • Size of remote file: 1.34 MB
indoor_capsule/views/test/r_100.png ADDED

Git LFS Details

  • SHA256: 8ab795beebcd5b5b1e15113e4fba12cfb87d58e613be2d05454af7cd467d9be4
  • Pointer size: 132 Bytes
  • Size of remote file: 1.29 MB
indoor_capsule/views/test/r_101.png ADDED

Git LFS Details

  • SHA256: 4229573f613435abd2d5bb352150e258b0ca11dd93102e64b25702c61d1b1007
  • Pointer size: 132 Bytes
  • Size of remote file: 1.36 MB
indoor_capsule/views/test/r_103.png ADDED

Git LFS Details

  • SHA256: 8ba2a80d50d45c4195f28527c3da894bfa04e781c6d7d8afc424e4b4e887574c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB
indoor_capsule/views/test/r_104.png ADDED

Git LFS Details

  • SHA256: 6765a5e4c122f94428fc7a8dfc6d1c9e1d4a12569dcfb9d1ce89b0025f608237
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB
indoor_capsule/views/test/r_105.png ADDED

Git LFS Details

  • SHA256: 492236738aef004218daa740d0c4a49308756d3e0a5e0f65cf38814b5ce33032
  • Pointer size: 132 Bytes
  • Size of remote file: 1.31 MB
indoor_capsule/views/test/r_106.png ADDED

Git LFS Details

  • SHA256: b97052efd9973c41e0f732a8d3007329a99e499d91d4a967faf1af250d32b877
  • Pointer size: 132 Bytes
  • Size of remote file: 1.37 MB
indoor_capsule/views/test/r_108.png ADDED

Git LFS Details

  • SHA256: 2cc2b219bf73b00e59e113c2010081cdc0d2b59e91b3049d262936cfd137df23
  • Pointer size: 132 Bytes
  • Size of remote file: 1.37 MB
indoor_capsule/views/test/r_109.png ADDED

Git LFS Details

  • SHA256: 9d59588bb0c57d22d18624afa1390533abe10837dabd690dd840e7ae9b2177c0
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB
indoor_capsule/views/test/r_111.png ADDED

Git LFS Details

  • SHA256: 0441e1cd08297d4edbc2cabf3b25ce79050788c3a1b45977668c0d15b9a54e6d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.34 MB
indoor_capsule/views/test/r_112.png ADDED

Git LFS Details

  • SHA256: 2f3d045c60dd14472d3e6eea51f30ee95f72b2e9e86f0f6533df9794db8521ed
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB
indoor_capsule/views/test/r_113.png ADDED

Git LFS Details

  • SHA256: 0dc14469d58a92ad2dc2cb0507fc17331260805a8389f755f0c8bcbc6fbe3d14
  • Pointer size: 132 Bytes
  • Size of remote file: 1.38 MB
indoor_capsule/views/test/r_114.png ADDED

Git LFS Details

  • SHA256: ba5ad8053147485aa892000de46a6d4f97b34776cd27b6ddb7b220b5dd6e66d6
  • Pointer size: 132 Bytes
  • Size of remote file: 1.29 MB
indoor_capsule/views/test/r_116.png ADDED

Git LFS Details

  • SHA256: 51885bf64129f68ac158c1c52cf47bfb4bddcc13de055523e9bf0e4cc4c30f5b
  • Pointer size: 132 Bytes
  • Size of remote file: 1.33 MB
indoor_capsule/views/test/r_117.png ADDED

Git LFS Details

  • SHA256: b629fad7981f2d477a0e519a64bbaa7a23e62eb19ae1f827edcc0af68f38d6f3
  • Pointer size: 132 Bytes
  • Size of remote file: 1.36 MB
indoor_capsule/views/test/r_118.png ADDED

Git LFS Details

  • SHA256: 57675d69005638293e5bcf21e293c189854bd19e1c6abab52297e6d9b9d63621
  • Pointer size: 132 Bytes
  • Size of remote file: 1.31 MB
indoor_capsule/views/test/r_120.png ADDED

Git LFS Details

  • SHA256: a90490add85a6623e027217ca45243128a06cfacce7f9cb556f328d184820291
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB
indoor_capsule/views/test/r_121.png ADDED

Git LFS Details

  • SHA256: db29f0edf9c4651b19a57e579e2b2e029eca0febfeff1291ac2e60588ab4cf36
  • Pointer size: 132 Bytes
  • Size of remote file: 1.34 MB
indoor_capsule/views/test/r_124.png ADDED

Git LFS Details

  • SHA256: cee8d059e16738da670040c22e687cebb87cd2a4816d00bffedac69e408e5fa5
  • Pointer size: 132 Bytes
  • Size of remote file: 1.34 MB
indoor_capsule/views/test/r_125.png ADDED

Git LFS Details

  • SHA256: 12d24eed4c79693f0a3cf78c2f08a014f6eefd34483b12e496548d7318bf1edb
  • Pointer size: 132 Bytes
  • Size of remote file: 1.3 MB
indoor_capsule/views/test/r_127.png ADDED

Git LFS Details

  • SHA256: 4cb2604714a21c8752dbbf8676c114e5a43e14365eb5b98573805a32aff6e9d1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB
indoor_capsule/views/test/r_128.png ADDED

Git LFS Details

  • SHA256: edb6634d44be7a14801a4b831035eb57216b3dcdcf81c7c29353d6ea28902eb0
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB
indoor_capsule/views/test/r_131.png ADDED

Git LFS Details

  • SHA256: dff3203afe7976e1f8bd6f16828d551e91aad2505babeb2fa3a2632b66ee3d92
  • Pointer size: 132 Bytes
  • Size of remote file: 1.34 MB
indoor_capsule/views/test/r_132.png ADDED

Git LFS Details

  • SHA256: f36a658a6f53f459f553beab5724762eaffc2ef018990c6160929d566a568d69
  • Pointer size: 132 Bytes
  • Size of remote file: 1.29 MB
indoor_capsule/views/test/r_134.png ADDED

Git LFS Details

  • SHA256: ed8ff9ef50c72b835a030794f5d6cf613daf61c07c9f215a07b33d09d824d471
  • Pointer size: 132 Bytes
  • Size of remote file: 1.38 MB
indoor_capsule/views/test/r_142.png ADDED

Git LFS Details

  • SHA256: b29aae52bf31313908c1cf30386fca4bb305899d707c15942379ef5bc8082e61
  • Pointer size: 132 Bytes
  • Size of remote file: 1.33 MB
indoor_capsule/views/test/r_143.png ADDED

Git LFS Details

  • SHA256: 29dde3b8742af31bd265077f15d358c7881a077a89affce0dfe6db534fdbd5ed
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB
indoor_capsule/views/test/r_144.png ADDED

Git LFS Details

  • SHA256: 6cf646e8a1f02ae592116148c9a48da536d1400ed0421f0be90b94cb9a8920ed
  • Pointer size: 132 Bytes
  • Size of remote file: 1.31 MB
indoor_capsule/views/test/r_146.png ADDED

Git LFS Details

  • SHA256: 94bd80f0da829a9e4b9262255739d762a0db46440871575d3842cc03b07b7ea4
  • Pointer size: 132 Bytes
  • Size of remote file: 1.37 MB
indoor_capsule/views/test/r_148.png ADDED

Git LFS Details

  • SHA256: dde31a6106c75eef9ce32553b48f1adeaf6e7aa63e32cab0e3b82989514aa649
  • Pointer size: 132 Bytes
  • Size of remote file: 1.38 MB
indoor_capsule/views/test/r_152.png ADDED

Git LFS Details

  • SHA256: 519ae38cdf648ce68298308529aa0701b5971fd7df028ab69da533b8f3b9425a
  • Pointer size: 132 Bytes
  • Size of remote file: 1.38 MB
indoor_capsule/views/test/r_157.png ADDED

Git LFS Details

  • SHA256: ac5502e893c7a1d7e293a22ccf43f323cce20f8f5f6eac9193eab78bdd673174
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
indoor_capsule/views/test/r_158.png ADDED

Git LFS Details

  • SHA256: ad4936a583e97aaad08a27d627bbc1cd34655fd0f60cecf361887dde24f87184
  • Pointer size: 132 Bytes
  • Size of remote file: 1.33 MB
indoor_capsule/views/test/r_159.png ADDED

Git LFS Details

  • SHA256: 0dba19e14c9dd80af7b83bf8a5eed2cb42c9ec271aa29ad5fe3db5d9a5265444
  • Pointer size: 132 Bytes
  • Size of remote file: 1.28 MB
indoor_capsule/views/test/r_160.png ADDED

Git LFS Details

  • SHA256: e4a194141702152774e54dec543ae123cf6ebe0ddbb3cabbf587d0506ecc130e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.37 MB
indoor_capsule/views/test/r_162.png ADDED

Git LFS Details

  • SHA256: d6795271f5b1174d7175f7d1edc9af43ac6cfe2cfdf74427aa280b95f456eeb1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.33 MB
indoor_capsule/views/test/r_163.png ADDED

Git LFS Details

  • SHA256: 5421b85dbe7797c76713a2a0922addcf2231a6d5c28fe012bb5950477cb203e7
  • Pointer size: 132 Bytes
  • Size of remote file: 1.38 MB
indoor_capsule/views/test/r_165.png ADDED

Git LFS Details

  • SHA256: f1c637056e87cb7a611a2d0050dc307123173513ca0f3da2a3d70df9bd336057
  • Pointer size: 132 Bytes
  • Size of remote file: 1.29 MB
indoor_capsule/views/test/r_166.png ADDED

Git LFS Details

  • SHA256: 63ac6506f4069bf71b73c18621b664357d342192bdaa780748b66848672d0ccf
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
indoor_capsule/views/test/r_168.png ADDED

Git LFS Details

  • SHA256: 181ce2bc87ca9ca0a588fe59b6e6461898feff9c265b73b6e4e7c1b7e92f6e29
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
indoor_capsule/views/test/r_169.png ADDED

Git LFS Details

  • SHA256: 28ca150984c4dbeb0443e8cbe7e5893c04e8095148c09b7b12223a6385fca750
  • Pointer size: 132 Bytes
  • Size of remote file: 1.3 MB
indoor_capsule/views/test/r_174.png ADDED

Git LFS Details

  • SHA256: b6914ab1bae2c935eca4ea312d9c0feee5bbbd9f94d836eee3c55bc2b03a93eb
  • Pointer size: 132 Bytes
  • Size of remote file: 1.3 MB
indoor_capsule/views/test/r_175.png ADDED

Git LFS Details

  • SHA256: ab4f3ab4b510bc1227c01ee1b48c468883188f083ed207ab4c9670d8dc91a813
  • Pointer size: 132 Bytes
  • Size of remote file: 1.31 MB
indoor_capsule/views/test/r_177.png ADDED

Git LFS Details

  • SHA256: 207f105f58501844342f83c0dbcd7632d9834a88c3b0d39d6a6852b8c1fc67e1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.3 MB
indoor_capsule/views/test/r_178.png ADDED

Git LFS Details

  • SHA256: 2d3987ee60d1ad7ba57ce196f0d0a7b09c3de316bb63e6e1883acd5bf7f3de4e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
indoor_capsule/views/test/r_179.png ADDED

Git LFS Details

  • SHA256: 6273045c17e0e58e2158956f876063a16cf8850e57350d443e5cdba85bd000fe
  • Pointer size: 132 Bytes
  • Size of remote file: 1.36 MB
indoor_capsule/views/test/r_18.png ADDED

Git LFS Details

  • SHA256: e2611e9be539bebdae1bcf99fcc5e9669b4b3983560b3c6585300b08272e8742
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
indoor_capsule/views/test/r_180.png ADDED

Git LFS Details

  • SHA256: b725dbc967500932a1d6ea59c2fb046e33f2e1d5b5a839dcd1aa83bf92d5f355
  • Pointer size: 132 Bytes
  • Size of remote file: 1.35 MB
indoor_capsule/views/test/r_185.png ADDED

Git LFS Details

  • SHA256: 635165060b95bd1bdd4f07887c8a01bec376830680536a097b9e37ebb5bbffa1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.36 MB