forked from TheOnceAndFutureSmalltalker/ros_map_editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MapEditor.py
executable file
·285 lines (226 loc) · 9.6 KB
/
MapEditor.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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
from PyQt5 import QtCore, QtGui, QtWidgets, uic
from ui_map_editor import Ui_MapEditor
from PyQt5.QtGui import QPainter, QBrush, QPen
from PyQt5.QtCore import Qt
import math
import yaml
from PIL import Image
import sys
import os
class MapEditor(QtWidgets.QMainWindow):
def __init__(self, fn):
super(MapEditor, self).__init__()
# two approaches to integrating tool generated ui file shown below
# setup user interface directly from ui file
#uic.loadUi('UI_MapEditor.ui', self)
# setup user interface from py module converted from ui file
self.ui = Ui_MapEditor()
self.ui.setupUi(self)
self.setMinimumSize(600, 600)
self.ui.zoomBox.addItem("100 %", 1)
self.ui.zoomBox.addItem("200 %", 2)
self.ui.zoomBox.addItem("400 %", 4)
self.ui.zoomBox.addItem("800 %", 8)
self.ui.zoomBox.addItem("1600 %", 16)
self.ui.zoomBox.currentIndexChanged.connect(self.handleZoom)
self.ui.colorBox.addItem('alternate', 0)
self.ui.colorBox.addItem('occupied', 1)
self.ui.colorBox.addItem('unoccupied', 2)
self.ui.colorBox.addItem('uncertain', 3)
self.ui.colorBox.currentIndexChanged.connect(self.handleColor)
self.color = 'alternate'
self.read(fn)
view_width = self.frameGeometry().width()
self.min_multiplier = math.ceil(view_width / self.map_width_cells)
self.zoom = 1
self.pixels_per_cell = self.min_multiplier * self.zoom
self.draw_map()
self.ui.closeButton.clicked.connect(self.closeEvent)
self.ui.saveButton.clicked.connect(self.saveEvent)
self.ui.graphicsView.horizontalScrollBar().valueChanged.connect(self.scrollChanged)
self.ui.graphicsView.verticalScrollBar().valueChanged.connect(self.scrollChanged)
self.ui.graphicsView.setMouseTracking(True)
self.ui.graphicsView.viewport().installEventFilter(self)
def eventFilter(self, source, event):
if event.type() == QtCore.QEvent.MouseMove and source is self.ui.graphicsView.viewport() and self.color != 'alternate' and event.buttons() == QtCore.Qt.LeftButton:
pos = event.pos()
x = pos.x() + self.ui.graphicsView.horizontalScrollBar().value()
y = pos.y() + self.ui.graphicsView.verticalScrollBar().value()
x = math.floor(x / self.pixels_per_cell)
y = math.floor(y / self.pixels_per_cell)
val = self.im.getpixel((x,y))
if self.color == 'occupied':
val = 0
elif self.color == 'unoccupied':
val = 255
elif self.color == 'uncertain':
val = 200
# update model with new value
self.im.putpixel((x,y), val)
# redraw cell in new color
color = self.value2color(val)
self.color_cell(x, y, color)
return super(MapEditor, self).eventFilter(source, event)
def paintEvent(self, e):
self.scrollChanged(0)
def scrollChanged(self, val):
if self.scene.width() and self.scene.height():
x = int(self.ui.graphicsView.horizontalScrollBar().value() / self.scene.width() * self.im.size[0])
y = int(self.ui.graphicsView.verticalScrollBar().value() / self.scene.height() * self.im.size[1])
width = int(self.ui.graphicsView.viewport().size().width() / self.scene.width() * self.im.size[0])
height = int(self.ui.graphicsView.viewport().size().height() / self.scene.height() * self.im.size[1])
self.drawBox(x, y, width, height)
def drawBox(self, x=5, y=5, width=50, height=50):
im = self.im.convert("RGBA")
data = im.tobytes("raw","RGBA")
qim = QtGui.QImage(data, im.size[0], im.size[1], QtGui.QImage.Format_ARGB32)
pix = QtGui.QPixmap.fromImage(qim)
painter = QtGui.QPainter(pix)
pen = QPen(Qt.red)
pen.setWidth(1)
painter.setPen(pen)
painter.drawRect(x, y, width, height)
painter.end()
self.ui.label_2.setPixmap(pix)
self.ui.label_2.show()
def handleColor(self, index):
self.color = self.ui.colorBox.currentText()
def handleZoom(self, index):
self.zoom = self.ui.zoomBox.currentData()
self.pixels_per_cell = self.min_multiplier * self.zoom
self.draw_map()
def read(self, fn):
# Read map file
try:
self.im = Image.open(fn)
self.fn = fn
except:
fnpgm = fn + '.pgm'
try:
self.im = Image.open(fnpgm)
self.fn = fnpgm
except:
print("ERROR: Cannot open file", fn, "or", fnpgm)
sys.exit(1)
# Check if the image format is PGM
if self.im.format != 'PPM':
print("ERROR: This is not a PGM formatted file.")
sys.exit(1)
# Check if the image mode is L
if self.im.mode != 'L':
print("ERROR: This PGM file is not of mode L.")
sys.exit(1)
# Set map width and height
self.map_width_cells = self.im.size[0]
self.map_height_cells = self.im.size[1]
# Display file information
self.ui.filename_lbl.setText(self.fn)
self.ui.width_lbl.setText(str(self.map_width_cells))
self.ui.height_lbl.setText(str(self.map_height_cells))
# Read YAML file
yaml_file = os.path.splitext(fn)[0] + '.yaml'
try:
with open(yaml_file, 'r') as stream:
data = yaml.safe_load(stream)
self.occupied_thresh = data['occupied_thresh']
self.free_thresh = data['free_thresh']
self.resolution = data['resolution']
self.origin_x = data['origin'][0]
self.origin_y = data['origin'][1]
except FileNotFoundError:
print("ERROR: Corresponding YAML file", yaml_file, "is missing.")
sys.exit(1)
except Exception as e:
print("ERROR: Failed to load YAML file:", e)
sys.exit(1)
def mapClick(self, event):
# get current model value
x = math.floor(event.scenePos().x() / self.pixels_per_cell)
y = math.floor(event.scenePos().y() / self.pixels_per_cell)
val = self.im.getpixel((x,y))
if self.color == 'occupied':
val = 0
elif self.color == 'unoccupied':
val = 255
elif self.color == 'uncertain':
val = 200
else:
# determine next value in sequence white->black->gray
if val <= (255.0 * (1.0 - self.occupied_thresh)): # if black, become gray
val = 200
elif val <= (255.0 * (1.0 - self.free_thresh)): # else if gray, become white
val = 255
else: # else its white, become black
val = 0
# update model with new value
self.im.putpixel((x,y), val)
# redraw cell in new color
color = self.value2color(val)
self.color_cell(x, y, color)
def value2color(self, val):
if val > (255.0 * (1.0 - self.free_thresh)):
return Qt.white
elif val > (255.0 * (1.0 - self.occupied_thresh)):
return Qt.gray
else:
return Qt.black
def color_cell(self, x, y, color):
pen = QPen(color)
pen.setWidth(1)
if self.pixels_per_cell > 10:
pen = QPen(Qt.lightGray)
brush = QBrush(color)
#x = x * self.pixels_per_cell
#y = y * self.pixels_per_cell
qrect = self.grids[x][y]
qrect.setBrush(brush)
qrect.setPen(pen)
def add_cell(self, x, y, color):
pen = QPen(color)
pen.setWidth(1)
if self.pixels_per_cell > 10:
pen = QPen(Qt.lightGray)
brush = QBrush(color)
x = x * self.pixels_per_cell
y = y * self.pixels_per_cell
return self.scene.addRect(x, y, self.pixels_per_cell, self.pixels_per_cell, pen, brush)
def draw_map(self):
self.scene = QtWidgets.QGraphicsScene()
self.ui.graphicsView.setScene(self.scene)
self.scene.mousePressEvent = self.mapClick
self.grids = []
# draw the cells
self.scene.clear()
for x in range(0,self.map_width_cells):
grid_col = []
for y in range(0, self.map_height_cells):
val = self.im.getpixel((x,y))
color = self.value2color(val)
qrect = self.add_cell(x,y,color)
grid_col.append(qrect)
self.grids.append(grid_col)
# draw the grid lines
if self.pixels_per_cell > 10:
pen = QPen(Qt.lightGray)
pen.setWidth(1)
pixel_width = self.map_width_cells * self.pixels_per_cell
pixel_height =self. map_height_cells * self.pixels_per_cell
for x in range(0, pixel_width, self.pixels_per_cell):
self.scene.addLine(x, 0, x, pixel_height, pen)
for y in range(0, pixel_height, self.pixels_per_cell):
self.scene.addLine(0, y, pixel_width, y, pen)
def closeEvent(self, event):
self.close()
def saveEvent(self, event):
#self.im.save("map_old.pgm")
self.im.save(self.fn)
if __name__ == '__main__':
if len(sys.argv) < 2:
print('ERROR: Must provide map file name - with or without .pgm extension.')
print()
print(' $ python MapEditor.py map_file_name')
print()
app = QtWidgets.QApplication(sys.argv)
window = MapEditor(sys.argv[1])
window.show()
sys.exit(app.exec_())