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
|
# coding: utf-8
# /*##########################################################################
#
# Copyright (C) 2016-2018 European Synchrotron Radiation Facility
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
# ###########################################################################*/
__authors__ = ["V. Valls"]
__license__ = "MIT"
__date__ = "16/10/2020"
import logging
import numpy
import os.path
from silx.gui import qt
from silx.gui.colors import Colormap
from ..utils import imageutils
_logger = logging.getLogger(__name__)
class CalibrantPreview(qt.QFrame):
"""
CalibrantPreview show the rays of a calibrat at a wayvelength between 0
and Pi.
"""
_PIXMAP_OFFSET = 2
def __init__(self, parent=None):
super(CalibrantPreview, self).__init__(parent)
self.__calibrant = None
self.__waveLength = None
self.__pixmap = None
self.__cachedSize = None
self.setMinimumSize(qt.QSize(50, 20))
def setCalibrant(self, calibrant):
if self.__calibrant is calibrant:
return
self.__calibrant = calibrant
self.__pixmap = None
self.__updateToolTip()
self.repaint()
def setWaveLength(self, waveLength):
if self.__waveLength == waveLength:
return
self.__waveLength = waveLength
self.__pixmap = None
self.__updateToolTip()
self.repaint()
def getCalibrant(self):
return self.__pixmap
def __getConfiguredCalibrant(self):
calibrant = self.__calibrant
if calibrant is None:
return None
waveLenght = self.__waveLength
if waveLenght is None:
return None
calibrant.setWavelength_change2th(waveLenght)
return calibrant
def __updateToolTip(self):
calibrant = self.__getConfiguredCalibrant()
if calibrant is None:
return
name = calibrant.filename
if name is not None:
name = os.path.basename(name)
if name.endswith(".D"):
name = name[0:-2]
fileds = []
if name is not None:
fileds.append((u"Name", name, None))
fileds.append((u"Nb registered rays", calibrant.count_registered_dSpacing(), None))
dSpacing = calibrant.get_dSpacing()
fileds.append((u"Nb visible rays", len(dSpacing), u"between 0 and 180°"))
if len(dSpacing) > 0:
ray = calibrant.get_dSpacing()[0]
angle = calibrant.get_2th()[0]
fileds.append((u"First visible ray", u"%f Å (%f°)" % (ray, numpy.rad2deg(angle)), None))
ray = calibrant.get_dSpacing()[-1]
angle = calibrant.get_2th()[-1]
fileds.append((u"Last visible ray", u"%f Å (%f°)" % (ray, numpy.rad2deg(angle)), None))
toolTip = []
for f in fileds:
field_name, field_value, suffix = f
field = u"<li><b>%s</b>: %s</li>" % (field_name, field_value)
if suffix is not None:
field = u"%s (%s)" % (field, suffix)
toolTip.append(field)
toolTip = u"\n".join(toolTip)
toolTip = u"<html><ul>%s</ul></html>" % toolTip
self.setToolTip(toolTip)
def __getPixmap(self, size=360):
if self.__pixmap is not None and self.__cachedSize == size:
return self.__pixmap
calibrant = self.__getConfiguredCalibrant()
if calibrant is None:
return None
tths = numpy.array(calibrant.get_2th())
tth_min, tth_max = 0, numpy.pi
histo = numpy.histogram(tths, bins=size, range=(tth_min, tth_max))
agregation = histo[0].reshape(1, -1)
colormap = Colormap(name="reversed gray", vmin=agregation.min(), vmax=agregation.max())
rgbImage = colormap.applyToData(agregation)[:, :, :3]
qimage = imageutils.convertArrayToQImage(rgbImage)
qpixmap = qt.QPixmap.fromImage(qimage)
self.__pixmap = qpixmap
self.__cachedSize = size
return self.__pixmap
def paintEvent(self, event):
super(CalibrantPreview, self).paintEvent(event)
painter = qt.QPainter(self)
# border
option = qt.QStyleOptionProgressBar()
option.initFrom(self)
option.rect = self.rect()
option.state = qt.QStyle.State_Enabled if self.isEnabled() else qt.QStyle.State_None
style = qt.QApplication.style()
style.drawControl(qt.QStyle.CE_ProgressBarGroove,
option,
painter,
self)
# content
pixmapRect = self.rect().adjusted(self._PIXMAP_OFFSET, self._PIXMAP_OFFSET,
-self._PIXMAP_OFFSET, -self._PIXMAP_OFFSET)
pixmap = self.__getPixmap(size=pixmapRect.width())
if pixmap is not None:
painter.drawPixmap(pixmapRect,
pixmap,
pixmap.rect())
def sizeHint(self):
return qt.QSize(200, self.minimumHeight())
|