-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMorpho.py
657 lines (523 loc) · 29.2 KB
/
Morpho.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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
'''
Created on Jun 17, 2012
This module activates MorphoTester, a scientific computing application for measuring
topographic shape of 3D anatomical data. It should be run as a script from the
command line. It contains the application GUI and calls subsequent modules plython, DNE, RFI, and OPCR.
@author: Julia M. Winchester
'''
import os
os.environ['ETS_TOOLKIT'] = 'qt4'
os.environ['QT_API'] = 'pyqt'
import sys
import sip
sip.setapi('QString', 2)
import topomesh
from math import log
from numpy import array, amax, amin, rint, empty, nan, isfinite
from traits.api import HasTraits, Instance
from traitsui.api import View, Item
from mayavi.core.ui.api import MlabSceneModel
from tvtk.pyface.scene_editor import SceneEditor
from PyQt4 import QtGui
class MainWidget(QtGui.QWidget):
""" Class for primary UI window."""
def __init__(self):
super(MainWidget, self).__init__()
self.open_file_dialog_path ='/'
self.open_directory_dialog_path = '/'
self.initUI()
def initUI(self):
""" Creates primary UI layout and widgets.
Displays MayaviView 3D viewer pane. Opens submenus for file selection, directory selection,
and DNE/OPCR options. Executes calculation of topography and visualization of calculated
topography.
"""
#=======================================================================
# Tab layout
#=======================================================================
self.tab_widget = QtGui.QTabWidget()
self.tab1 = QtGui.QWidget()
self.tab1layout = QtGui.QGridLayout()
self.tab1layout.setSpacing(10)
self.tab1.setLayout(self.tab1layout)
self.tab2 = QtGui.QWidget()
self.tab2layout = QtGui.QGridLayout()
self.tab2layout.setSpacing(10)
self.tab2.setLayout(self.tab2layout)
self.tab_widget.addTab(self.tab1, "Shape metrics")
self.tab_widget.addTab(self.tab2, "Mesh tools")
#=======================================================================
# UI widgets
#=======================================================================
self.openbutton = QtGui.QPushButton("Open File")
self.opendirbutton = QtGui.QPushButton("Open Directory")
self.openlabel = QtGui.QLabel("")
# Topography and options window widgets
self.dnecheck = QtGui.QCheckBox("DNE")
self.dnecheck.toggle()
self.dnebutton = QtGui.QPushButton("Options")
self.rficheck = QtGui.QCheckBox("RFI")
self.rficheck.toggle()
self.opcrcheck = QtGui.QCheckBox("OPCR")
self.opcrcheck.toggle()
self.opcrbutton = QtGui.QPushButton("Options")
# Topography calculation buttons
self.calcfilebutton = QtGui.QPushButton("Process File")
self.calcdirbutton = QtGui.QPushButton("Process Directory")
# Contents of mesh tools tab
self.implicit_fair_check = QtGui.QCheckBox("Implicit fair smooth")
self.implicit_fair_iterations_label = QtGui.QLabel("Iterations")
self.implicit_fair_iterations = QtGui.QLineEdit("3")
self.implicit_fair_step_size_label = QtGui.QLabel("Step size")
self.implicit_fair_step_size = QtGui.QLineEdit("0.1")
self.implicit_fair_label = QtGui.QLabel("This will output implicit faired meshes.")
self.implicit_fair_label2 = QtGui.QLabel("For single files, this will update current mesh in view.")
self.implicit_fair_file = QtGui.QPushButton("Process File")
self.implicit_fair_dir = QtGui.QPushButton("Process Directory")
# Output log
self.morpholog = QtGui.QTextEdit()
self.morpholog.setReadOnly(1)
# 3D view
self.mayaviview = MayaviView(0,1)
self.threedview = self.mayaviview.edit_traits().control
#=======================================================================
# GUI behavior
#=======================================================================
self.openbutton.clicked.connect(self.OpenFileDialog)
self.opendirbutton.clicked.connect(self.OpenDirDialog)
self.calcfilebutton.clicked.connect(self.CalcFile)
self.calcdirbutton.clicked.connect(self.CalcDir)
self.implicit_fair_file.clicked.connect(self.fair_file)
self.implicit_fair_dir.clicked.connect(self.fair_directory)
# Options submenu buttons
self.DNEOptionsWindow = DNEOptionsWindow(self)
self.dnebutton.clicked.connect(self.DNEOptionsWindow.show)
self.OPCROptionsWindow = OPCROptionsWindow(self)
self.opcrbutton.clicked.connect(self.OPCROptionsWindow.show)
#=======================================================================
# UI grid layout
#=======================================================================
grid = QtGui.QGridLayout()
grid.setSpacing(10)
grid.addWidget(self.openbutton, 0, 0)
grid.addWidget(self.openlabel, 1, 0)
grid.addWidget(self.opendirbutton, 0, 1)
grid.addWidget(self.tab_widget, 2, 0, 14, 2)
self.tab1layout.addWidget(self.dnecheck, 0, 0)
self.tab1layout.addWidget(self.dnebutton, 0, 1)
self.tab1layout.addWidget(self.rficheck, 1, 0)
self.tab1layout.addWidget(self.opcrcheck, 2, 0)
self.tab1layout.addWidget(self.opcrbutton, 2, 1)
self.tab1layout.addWidget(self.calcfilebutton, 10,0)
self.tab1layout.addWidget(self.calcdirbutton, 10,1)
self.tab2layout.addWidget(self.implicit_fair_check, 0, 0)
self.tab2layout.addWidget(self.implicit_fair_iterations_label, 1, 0)
self.tab2layout.addWidget(self.implicit_fair_iterations, 1, 1)
self.tab2layout.addWidget(self.implicit_fair_step_size_label, 2, 0)
self.tab2layout.addWidget(self.implicit_fair_step_size, 2, 1)
self.tab2layout.addWidget(self.implicit_fair_label, 3, 0, 1, 2)
self.tab2layout.addWidget(self.implicit_fair_label2, 4, 0, 1, 2)
self.tab2layout.addWidget(self.implicit_fair_file, 10, 0)
self.tab2layout.addWidget(self.implicit_fair_dir, 10, 1)
grid.addWidget(self.morpholog, 16, 0, 2, 4)
grid.addWidget(self.threedview, 0, 2, 16, 2)
self.setLayout(grid)
self.sizeHint()
self.setWindowTitle('MorphoTester')
sys.stdout = OutLog(self.morpholog, sys.stdout)
sys.stderr = OutLog(self.morpholog, sys.stderr, QtGui.QColor(255,0,0))
def OpenFileDialog(self):
"""Method for loading .ply surface mesh files."""
filepath = QtGui.QFileDialog.getOpenFileName(self, 'Open File', self.open_file_dialog_path)
self.filepath = filepath
self.open_file_dialog_path = os.path.dirname(filepath)
if not len(filepath):
return
print "Opening file..."
filename = os.path.split(filepath)[1]
self.openlabel.setText(filename)
self.filename = filename
self.TopoMesh = topomesh.TopoMesh(filepath)
self.mayaviview = MayaviView(self.TopoMesh.mesh,1)
print "File open!"
def OpenDirDialog(self):
"""Method for selecting a directory for batch processing of .ply surface mesh files."""
self.dirpath = QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', self.open_directory_dialog_path)
self.open_directory_dialog_path = self.dirpath
if not len(self.dirpath):
return
print "Opening directory..."
self.openlabel.setText(".."+self.dirpath[-20:])
self.mayaviview = MayaviView(0,1)
def ProcessSurface(self):
"""Method for processing surface mesh data to acquire topographic variables."""
if self.dnecheck.isChecked():
self.TopoMesh.GenerateDNE(self.DNEOptionsWindow.fairvgroup.isChecked(),
self.DNEOptionsWindow.dneiteration.text(), self.DNEOptionsWindow.dnestepsize.text(),
self.DNEOptionsWindow.dneconditioncontrolcheck.isChecked(),
self.DNEOptionsWindow.outliervgroup.isChecked(), self.DNEOptionsWindow.dneoutlierval.text(),
self.DNEOptionsWindow.dneoutliertype1.isChecked(), self.filename)
if self.rficheck.isChecked():
self.TopoMesh.GenerateRFI()
if self.opcrcheck.isChecked():
self.TopoMesh.GenerateOPCR(self.OPCROptionsWindow.opcrminpatch.text())
def CalcFile(self):
"""Method for processing a single surface mesh object.
Connected to Process File Button."""
if not self.dnecheck.isChecked() and not self.rficheck.isChecked() and not self.opcrcheck.isChecked():
print "No topographic variables have been selected for analysis."
self.ProcessSurface()
if self.dnecheck.isChecked():
print "\nDNE calculation details:"
if self.TopoMesh.DNE == "!":
print "\nDNE could not be calculated due to cholesky factorization error."
else:
if self.DNEOptionsWindow.outliervgroup.isChecked():
print "\nPolygons removed as outliers:"
for face in self.TopoMesh.outlierfaces:
print "Polygon: %s\tEnergy: %s\tArea %s" % (face[0], face[1], face[2])
if self.DNEOptionsWindow.dneconditioncontrolcheck.isChecked():
print "\nPolygons removed for high matrix condition numbers:"
for face in self.TopoMesh.conditionfaces:
print "Polygon: %s\tMatrix condition number: %s" % (face[0], face[1])
print "\nNumber of edge polygons ignored: %s" % len(self.TopoMesh.boundaryfaces)
print "\n--------------------"
print "RESULTS"
print "File name: %s" % self.openlabel.text()
print "Mesh face number: %s" % self.TopoMesh.nface
if self.dnecheck.isChecked():
if self.TopoMesh.DNE == "!":
print "\nError (Cholesky factorization error)"
else:
print "\nDNE: %s" % self.TopoMesh.DNE
if self.DNEOptionsWindow.visvgroup.isChecked():
MayaviView.VisualizeDNE(self.mayaviview, self.TopoMesh.DNEscalars, self.DNEOptionsWindow.dnerelvischeck.isChecked(),
float(self.DNEOptionsWindow.dneabsminval.text()),
float(self.DNEOptionsWindow.dneabsmaxval.text()))
if self.rficheck.isChecked():
print "\nRFI: %s" % self.TopoMesh.RFI
print "Surface area: %s" % self.TopoMesh.surfarea
print "Outline area: %s" % self.TopoMesh.projarea
if self.opcrcheck.isChecked():
print "\nOPCR: %s" % self.TopoMesh.OPCR
print "OPC at each rotation: %s" % self.TopoMesh.OPClist
if self.OPCROptionsWindow.visualizeopcrcheck.isChecked():
MayaviView.VisualizeOPCR(self.mayaviview, self.TopoMesh.OPCscalars, self.TopoMesh.nface)
print "--------------------"
if self.OPCROptionsWindow.visualizeopcrcheck.isChecked() and self.DNEOptionsWindow.visvgroup.isChecked() and self.dnecheck.isChecked() and self.opcrcheck.isChecked():
print "DNE and OPCR visualization both requested. Defaulting to OPCR visualization."
def CalcDir(self):
"""Method for batch processing a directory of .ply surface mesh files.
Connected to Process Directory button."""
if not self.dnecheck.isChecked() and not self.rficheck.isChecked() and not self.opcrcheck.isChecked():
print "No topographic variables have been selected for analysis."
return
resultsfile = open(os.path.join(self.dirpath,'morphoresults.txt'),'w')
resultsfile.write("Filename\tMesh Face Number\tDNE\tRFI\tSurface Area\tOutline Area\tOPCR\n")
for filename in os.listdir(self.dirpath):
if filename[-3:] == "ply":
self.filename = filename
print "Processing " + filename + "..."
self.TopoMesh = topomesh.TopoMesh(os.path.join(self.dirpath,filename))
self.ProcessSurface()
resultsfile.write("%s\t%s\t%s\t%s\t%s\t%s\t%s\n" % (filename, self.TopoMesh.nface, self.TopoMesh.DNE,
self.TopoMesh.RFI, self.TopoMesh.surfarea,
self.TopoMesh.projarea, self.TopoMesh.OPCR))
print "\n--------------------\n"
else:
print filename + "does not have a .ply extension, skipping to next file."
resultsfile.close()
def fair_file(self):
print "Implicit fairing " + self.filename + "..."
self.fair_mesh(self.filepath)
self.mayaviview.VisualizeMesh(self.TopoMesh.mesh, 1)
def fair_directory(self):
for filename in os.listdir(self.dirpath):
if filename[-3:] == "ply":
print "Implicit fairing " + filename + "..."
self.TopoMesh = topomesh.TopoMesh(os.path.join(self.dirpath,filename))
self.fair_mesh(os.path.join(self.dirpath,filename))
def fair_mesh(self, filepath):
self.TopoMesh.implicit_fair_mesh(int(self.implicit_fair_iterations.text()),
float(self.implicit_fair_step_size.text()))
filename = os.path.split(filepath)[1]
fairdir = os.path.join(os.path.dirname(filepath), 'faired-mesh', '')
if not os.path.exists(fairdir):
os.mkdir(fairdir)
self.TopoMesh.SaveArray(os.path.join(fairdir, (filename[:-4] + "-faired.ply")))
class MayaviView(HasTraits):
"""Class for 3D visualization of polygonal meshes and related 2D decorators.
Initializes 3D viewer and displays a 3D polygonal mesh if provided with a data object.
Args:
plotmesh (bool): If true, plots model from MainWidget.TopoMesh class.
clearscreen (bool): If true, clears figure before plotting model.
Attributes:
Class:
scene: MlabSceneModel instance.
view: Mayavi view of scene.
__init__():
plot: Mayavi figure plot of visualized mesh.
"""
scene = Instance(MlabSceneModel, ())
# The layout of the panel created by Traits
view = View(Item('scene', editor=SceneEditor(), resizable=True, show_label=False), resizable=True)
def __init__(self, model, clearscreen):
HasTraits.__init__(self)
self.model = model
self.plot = self.VisualizeMesh(self.model, clearscreen)
def VisualizeMesh(self, model, clearscreen):
"""Method for creating a Mayavi figure plot of visualized 3D polygonal mesh."""
if clearscreen:
self.plot = self.scene.mlab.clf()
if not model:
self.plot = self.scene.mlab.points3d(0,0,0,opacity=0.0)
else:
triangles = model[2]
x, y, z = model[0][:,0], model[0][:,1], model[0][:,2]
self.plot = self.scene.mlab.triangular_mesh(x, y, z, triangles)
return self.plot
def Interpolate(self, i, j, steps):
"""Interpolates sets of numbers between designated end point number sets."""
onestep = steps+1
ijrange = j.astype(float) - i.astype(float)
fillarray = rint(array([ijrange/(onestep)*s+i.astype(float) for s in range(onestep)[1:]]))
if (fillarray < 0).any():
fillarray = array([abs(x[::-1]) if (x < 0).any() else x for x in fillarray.T]).T
return fillarray
def RelativeLut(self, lut, lmin, lmax):
"""Given a LUT (255x4 array of colors), creates a new LUT from segment of original LUT using interpolation."""
cutlut = lut[int(round(lmin*255)):int(round(lmax*255))] # Cuts original LUT into a section between min and max
newlut = empty([len(lut), 4]) # New null LUT of 255 length
newlut[:] = nan
for i, nugget in enumerate(cutlut): # Takes each entry in the subset of the original LUT...
newlut[int(float((len(lut)-1))/float((len(cutlut)-1))*float(i))] = nugget # ... and evenly spaces them within the new null LUT
somelut = [i for i, x in enumerate(newlut) if isfinite(x).all()] # Indices of non-null entries in newlut
pairlut = zip(somelut[:-1], somelut[1:]) # Pairs of non-null newlut entries as so - 1,2; 2,3; 3,4; for filling in between
for pair in pairlut: # This is going to fill in the null entries between pairs with interpolated values
if pair[1]-pair[0]-1 < 1:
continue
newlut[pair[0]+1:pair[1]] = self.Interpolate(newlut[pair[0]], newlut[pair[1]], (pair[1]-pair[0]-1))
return newlut
def VisualizeScalars(self, scalars, customlut=None, scale='linear', colorbar=1):
"""Method for visualizing scalar data on polygonal mesh using optional color LUT and linear or log scaling."""
self.visplot = self.VisualizeMesh(self.model,1)
self.visplot.mlab_source.dataset.cell_data.scalars = scalars
self.visplot.mlab_source.dataset.cell_data.scalars.name = 'Cell data'
self.visplot.mlab_source.update()
self.visplot2 = self.scene.mlab.pipeline.set_active_attribute(self.visplot, cell_scalars='Cell data')
self.visplot3 = self.scene.mlab.pipeline.surface(self.visplot2)
if customlut is None:
self.visplot3.module_manager.scalar_lut_manager.lut_mode = 'blue-red'
else:
self.visplot3.module_manager.scalar_lut_manager.lut.table = customlut
self.visplot3.module_manager.scalar_lut_manager.lut.scale = scale
if colorbar:
self.scene.mlab.colorbar(object=self.visplot3, orientation='vertical')
self.scene.mlab.draw()
return self.visplot3
def VisualizeDNE(self, edens, isrelative, absmin, absmax):
"""Visualizes energy density across polygonal mesh."""
# For visualizing on log scale, transforms all 0 values (boundary and outlier faces) to lowest non-zero energy on polygon
apple = sorted(set(edens))[1]
eve = [apple if not x else x for x in edens]
emin = amin(eve)
emax = amax(eve)
if isrelative:
self.plot3 = self.VisualizeScalars(eve, scale='log10')
else:
eve = [absmin if x<absmin else x for x in eve]
eve = [absmax if x>absmax else x for x in eve]
if absmin == 0.0:
absmin = 1e-08
if absmin < emin:
lutmin = (log(emin) - log(absmin))/(log(absmax) - log(absmin))
else:
lutmin = 0.0
if absmax > emax:
lutmax = (log(emax)-log(absmin))/(log(absmax) - log(absmin))
else: lutmax = 1.0
abslut = self.plot.module_manager.scalar_lut_manager.lut.table.to_array()
rellut = self.RelativeLut(abslut, lutmin, lutmax)
self.plot3 = self.VisualizeScalars(eve, customlut=rellut, scale='log10')
def VisualizeOPCR(self,hexcolormap,facelength):
"""Visualizes patches across polygonal mesh."""
strdictb = {'#000000': 0.0, '#FF0000': 0.167, '#964B00': 0.278, '#FFFF00': 0.388, '#00FFFF': 0.5, '#0000FF': 0.612, '#90EE90': 0.722, '#014421': 0.833, '#FFC0CB': 1.0}
strdict = {'#FF0000': 0.0, '#964B00': 0.188, '#FFFF00': 0.314, '#00FFFF': 0.439, '#0000FF': 0.536, '#90EE90': 0.686, '#014421': 0.812, '#FFC0CB': 1.0}
if "#000000" in hexcolormap:
opcrcolorscalars = array([strdictb[key] for key in hexcolormap])
colors = [(0,0,0,255),(255,0,0,255),(150,75,0,255),(255,255,0,255),(0,255,255,255),(0,0,255,255),(144,238,144,255),(1,68,33,255),(255,192,203,255)]
arclen = [28,29,28,28,29,28,28,29,28]
opcrcolorlut = [colors[i] for i in range(9) for j in range(arclen[i])]
else:
opcrcolorscalars = array([strdict[key] for key in hexcolormap])
colors = [(255,0,0,255),(150,75,0,255),(255,255,0,255),(0,255,255,255),(0,0,255,255),(144,238,144,255),(1,68,33,255),(255,192,203,255)]
arclen = [32,32,32,32,31,32,32,32]
opcrcolorlut = [colors[i] for i in range(8) for j in range(arclen[i])]
self.plot3 = self.VisualizeScalars(opcrcolorscalars, opcrcolorlut, scale='linear', colorbar=0)
class DNEOptionsWindow(QtGui.QDialog):
"""Submenu for selecting optional parameters for DNE calculation."""
def __init__(self, parent=None):
super(DNEOptionsWindow, self).__init__(parent)
#=======================================================================
# Submenu layout
#=======================================================================
self.layout = QtGui.QVBoxLayout()
self.layout.setSpacing(25)
#=======================================================================
# Submenu widgets
#=======================================================================
self.OKbutton = QtGui.QPushButton("OK")
self.OKbutton.clicked.connect(self.OKClose)
# Matrix condition number controls
self.dneconditioncontrolcheck = QtGui.QCheckBox("Condition number checking")
self.dneconditioncontrolcheck.toggle()
# Outlier removal controls
self.dneoutliervallabel = QtGui.QLabel("Percentile")
self.dneoutlierval = QtGui.QLineEdit("99.9")
self.dneoutlierval.setFixedWidth(40)
self.outlierhbox = HBoxWidget([self.dneoutliervallabel, self.dneoutlierval], spacing=6)
self.dneoutliertype1 = QtGui.QCheckBox("Energy x area")
self.dneoutliertype1.toggle()
self.dneoutliertype2 = QtGui.QCheckBox("Energy")
self.dneoutlierbuttons = QtGui.QButtonGroup()
self.dneoutlierbuttons.addButton(self.dneoutliertype1)
self.dneoutlierbuttons.addButton(self.dneoutliertype2)
self.outliervgroup = VGroupBoxWidget('Outlier removal', [self.dneoutliertype1, self.dneoutliertype2, self.outlierhbox])
# Smoothing controls
self.dneiterationlabel = QtGui.QLabel("Iterations")
self.dneiteration = QtGui.QLineEdit("3")
self.dneiteration.setFixedWidth(40)
self.fairithbox = HBoxWidget([self.dneiterationlabel, self.dneiteration])
self.dnestepsizelabel = QtGui.QLabel("Step size")
self.dnestepsize = QtGui.QLineEdit("0.1")
self.dnestepsize.setFixedWidth(40)
self.fairesthbox = HBoxWidget([self.dnestepsizelabel, self.dnestepsize])
self.fairvgroup = VGroupBoxWidget('Implicit fair smooth', [self.fairithbox, self.fairesthbox])
self.fairvgroup.setChecked(0)
# Visualization control widgets
self.dneabsmaxlabel = QtGui.QLabel("Max")
self.dneabsmaxval = QtGui.QLineEdit("1.0")
self.dneabsmaxval.setFixedWidth(40)
self.dneabsminlabel = QtGui.QLabel("Min")
self.dneabsminval = QtGui.QLineEdit("0.0")
self.dneabsminval.setFixedWidth(40)
self.vishbox = HBoxWidget([self.dneabsminlabel, self.dneabsminval, self.dneabsmaxlabel, self.dneabsmaxval])
self.dnerelvischeck = QtGui.QCheckBox("Relative scale")
self.dnerelvischeck.toggle()
self.dneabsvischeck = QtGui.QCheckBox("Absolute scale")
self.dnevisbuttons = QtGui.QButtonGroup()
self.dnevisbuttons.addButton(self.dnerelvischeck)
self.dnevisbuttons.addButton(self.dneabsvischeck)
self.visvgroup = VGroupBoxWidget('Visualize DNE', [self.dnerelvischeck, self.dneabsvischeck, self.vishbox])
self.visvgroup.setChecked(0)
#=======================================================================
# Building the submenu layout
#=======================================================================
self.layout.addWidget(self.dneconditioncontrolcheck)
self.layout.addWidget(self.outliervgroup)
self.layout.addWidget(self.fairvgroup)
self.layout.addWidget(self.visvgroup)
self.layout.addWidget(self.OKbutton)
self.setLayout(self.layout)
self.setSizePolicy(0, 0)
self.setWindowTitle('DNE Options')
def OKClose(self):
"""Closes submenu on OK."""
self.close()
class OPCROptionsWindow(QtGui.QDialog):
"""Submenu for selecting optional parameters for OPCR calculation."""
def __init__(self, parent=None):
super(OPCROptionsWindow, self).__init__(parent)
#=======================================================================
# Submenu layout
#=======================================================================
self.layout = QtGui.QVBoxLayout()
self.layout.setSpacing(20)
#=======================================================================
# Submenu widgets
#=======================================================================
self.OKbutton = QtGui.QPushButton("OK")
self.OKbutton.clicked.connect(self.OKClose)
# Visualization and minimum patch size controls
self.visualizeopcrcheck = QtGui.QCheckBox("Visualize OPCR")
self.opcrlabel = QtGui.QLabel("Minimum patch count")
self.opcrminpatch = QtGui.QLineEdit("3")
self.opcrminpatch.setFixedWidth(40)
self.minpatchhbox = HBoxWidget([self.opcrlabel, self.opcrminpatch], spacing=15)
#=======================================================================
# Building the submenu layout
#=======================================================================
self.layout.addWidget(self.minpatchhbox)
self.layout.addWidget(self.visualizeopcrcheck)
self.layout.addWidget(self.OKbutton)
self.layout.setContentsMargins(20,20,20,20)
self.setLayout(self.layout)
self.setSizePolicy(0, 0)
self.setWindowTitle('OPCR Options')
def OKClose(self):
"""Closes submenu on OK."""
self.close()
class HBoxWidget(QtGui.QWidget):
"""Generic class for creating QWidgets with QHBoxLayout with standard properties.
Args:
widgetlist (list): List of QWidget objects to be displayed.
indent (int): Left marginal indentation of HBoxWidget.
spacing (int): Component spacing of HBoxWidget contents.
"""
def __init__(self, widgetlist, indent=0, spacing=10):
super(HBoxWidget,self).__init__()
self.initUI(widgetlist, indent, spacing)
def initUI(self, widgetlist, indent, spacing):
"""Adds widgets to and sets layout of HBoxWidget object."""
self.hbox = QtGui.QHBoxLayout()
map(lambda x: self.hbox.addWidget(x), widgetlist)
self.hbox.setContentsMargins(indent,0,0,0)
self.hbox.setSpacing(spacing)
self.setLayout(self.hbox)
class VGroupBoxWidget(QtGui.QGroupBox):
"""Generic class for creating QGroupBox with QVBoxLayout with standard properties.
Args:
widgetlist (list): List of QWidget objects to be displayed.
title (str): Title for QGroupBox.
"""
def __init__(self, title, widgetlist):
super(VGroupBoxWidget, self).__init__(title)
self.initUI(widgetlist)
def initUI(self, widgetlist):
"""Adds widgets to and sets layout of VGroupBoxWidget object."""
self.vbox = QtGui.QVBoxLayout()
self.vbox.setContentsMargins(10,10,10,10)
self.vbox.setSpacing(10)
map(lambda x: self.vbox.addWidget(x), widgetlist)
self.setLayout(self.vbox)
self.setCheckable(1)
self.setStyleSheet('QGroupBox::title {background-color: transparent}')
class OutLog:
def __init__(self, edit, out=None, color=None):
"""(edit, out=None, color=None) -> can write stdout, stderr to a
QTextEdit.
Args:
edit (QTextEdit) = QTextEdit object for writing stdout and stderr to.
out = Alternate stream (can be the original sys.stdout).
color = Alternate color (i.e. color stderr, a different color).
"""
self.edit = edit
self.out = None
self.color = color
def write(self, m):
if self.color:
tc = self.edit.textColor()
self.edit.setTextColor(self.color)
self.edit.moveCursor(QtGui.QTextCursor.End)
self.edit.insertPlainText( m )
if self.color:
self.edit.setTextColor(tc)
if self.out:
self.out.write(m)
def main():
"""Main application loop."""
window = MainWidget()
window.show()
sys.exit(QtGui.qApp.exec_())
if __name__ == "__main__":
main()