-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathai2thor-scene_render.py
184 lines (144 loc) · 6.67 KB
/
ai2thor-scene_render.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
Author: Eduardo Gutierrez Maestro
Master Thesis 2018 - 2019
Research Group : GRAM - University of Alcala
Last Modification : 05.03.2019
'''
'''
:param scene_name: Name of the scene to be rendered
:param hdf5_name: Name of the output fil with the scene rendered
:param gridSize: Size of the scene grid
:return: A HDF5 file with the information needed to navigate through the scene
'''
import ai2thor.controller
import numpy as np
import h5py
import argparse
class ai2thor_scene_render():
def __init__(self, scene_name, hdf5_name, gridSize):
self.scene_name = scene_name
self.hdf5_name = hdf5_name
self.gridSize = gridSize
self.controller = ai2thor.controller.BFSController()
self.controller.start()
self.controller.step(dict(action='Initialize', gridSize=self.gridSize))
self.controller.search_all_closed(scene_name) # replace with whatever scene you want
self.points_scene = self.controller.grid_points
def scene_render(self):
N = len(self.points_scene)
num_ID_total = N * 4
self.rotations = np.zeros((num_ID_total,), dtype=np.uint64)
self.locations = np.zeros((num_ID_total, 2), dtype=np.float64)
self.rotations = self.assign_rotations()
self.locations = self.assign_locations()
self.transition_graph = self.assign_transition_graph(gridSize=self.gridSize)
self.observations = np.zeros((num_ID_total, 300, 300, 3), dtype=np.uint8)
aux = 0
for i in range(len(self.points_scene)):
_x = self.points_scene[i]['x']
_y = self.points_scene[i]['y']
_z = self.points_scene[i]['z']
for rot in [0.0, 90.0, 180.0, 270.0]:
event = self.controller.step(dict(action='TeleportFull', x=_x, y=_y, z=_z, rotation=rot))
self.observations[aux, :, :, :] = event.frame
aux += 1
with h5py.File('data/' + self.hdf5_name, 'w') as hdf:
hdf.create_dataset('rotation', data=self.rotations)
hdf.create_dataset('location', data=self.locations)
hdf.create_dataset('observation', data=self.observations)
hdf.create_dataset('graph', data=self.transition_graph)
def assign_rotations(self):
done = False
aux = 0
while not done:
for i in [0, 90, 180, 270]:
self.rotations[aux] = i
aux += 1
if aux == len(self.rotations):
done = True
return self.rotations
def assign_locations(self):
x_z_tuple = np.zeros((np.size(self.points_scene, 0), 2))
for i in range(len(self.points_scene)):
_x = self.points_scene[i]['x']
_z = self.points_scene[i]['z']
x_z_tuple[i, 0] = _x
x_z_tuple[i, 1] = _z
aux = 0
for i in range(len(x_z_tuple)):
for _ in range(4):
self.locations[aux] = x_z_tuple[i]
aux += 1
return self.locations
#This function creates the transition graph needed to navigate in discrete way
def assign_transition_graph(self, ACTION_SPACE=4, gridSize=0.25):
id_tot_num = np.size(self.locations, 0)
t_graph = np.zeros((id_tot_num, ACTION_SPACE), dtype=np.int64)
for i in range(len(t_graph)):
current_loc = self.locations[i]
current_rot = self.rotations[i]
for act in range(ACTION_SPACE):
if act == 0: # MoveAhead action in order to guess the ID
_x = current_loc[0]
_z = current_loc[1]
if current_rot == 0:
next_loc = [_x, _z + gridSize]
if current_rot == 90:
next_loc = [_x + gridSize, _z]
if current_rot == 180:
next_loc = [_x, _z - gridSize]
if current_rot == 270:
next_loc = [_x - gridSize, _z]
id_loc = np.where(np.all(self.locations == next_loc, axis=1))[0]
if np.size(id_loc) == 0:
t_graph[i, act] = -1 # We consider that if there is no location available
# is because there will be collision
else:
id_rot = np.where(self.rotations == current_rot)[0]
id_ahead = np.intersect1d(id_loc, id_rot)[0]
t_graph[i, act] = id_ahead
if act == 1: # RotateRight action in order to guess the ID
next_rot = current_rot + 90
if next_rot == 360:
next_rot = 0
id_loc = np.where(np.all(self.locations == current_loc, axis=1))[0]
id_rot = np.where(self.rotations == next_rot)[0]
id_right = np.intersect1d(id_loc, id_rot)[0]
t_graph[i, act] = id_right
if act == 2: # RotateLeft action in order to guess the ID
next_rot = current_rot - 90
if next_rot == -90:
next_rot = 270
id_loc = np.where(np.all(self.locations == current_loc, axis=1))[0]
id_rot = np.where(self.rotations == next_rot)[0]
id_left = np.intersect1d(id_loc, id_rot)[0]
t_graph[i, act] = id_left
if act == 3: # MoveBack action in order to guess the ID
_x = current_loc[0]
_z = current_loc[1]
if current_rot == 0:
next_loc = [_x, _z - gridSize]
if current_rot == 90:
next_loc = [_x - gridSize, _z]
if current_rot == 180:
next_loc = [_x, _z + gridSize]
if current_rot == 270:
next_loc = [_x + gridSize, _z]
id_loc = np.where(np.all(self.locations == next_loc, axis=1))[0]
if np.size(id_loc) == 0:
t_graph[i, act] = -1 # We consider that if there is no location available
# is because there will be collision
else:
id_rot = np.where(self.rotations == current_rot)[0]
id_back = np.intersect1d(id_loc, id_rot)[0]
t_graph[i, act] = id_back
return t_graph
if __name__ == '__main__':
scene1 = ai2thor_scene_render(
scene_name='FloorPlan28',
hdf5_name='scene_401.h5',
gridSize=0.25
)
scene1.scene_render()