def __init__(self, parent=None, backend=None): super(MaskImageWidget, self).__init__(parent=parent, backend=backend) self._activeImageLegend = "active image" self._bgImageLegend = "background image" self._maskToolsDockWidget = None # Init actions self.group = qt.QActionGroup(self) self.group.setExclusive(False) self.resetZoomAction = self.group.addAction( PlotActions.ResetZoomAction(self)) self.addAction(self.resetZoomAction) self.zoomInAction = PlotActions.ZoomInAction(self) self.addAction(self.zoomInAction) self.zoomOutAction = PlotActions.ZoomOutAction(self) self.addAction(self.zoomOutAction) self.xAxisAutoScaleAction = self.group.addAction( PlotActions.XAxisAutoScaleAction(self)) self.addAction(self.xAxisAutoScaleAction) self.yAxisAutoScaleAction = self.group.addAction( PlotActions.YAxisAutoScaleAction(self)) self.addAction(self.yAxisAutoScaleAction) self.colormapAction = self.group.addAction( PlotActions.ColormapAction(self)) self.addAction(self.colormapAction) self.keepDataAspectRatioButton = PlotToolButtons.AspectToolButton( parent=self, plot=self) self.yAxisInvertedButton = PlotToolButtons.YAxisOriginToolButton( parent=self, plot=self) self.group.addAction(self.getMaskAction()) self._separator = qt.QAction('separator', self) self._separator.setSeparator(True) self.group.addAction(self._separator) self.copyAction = self.group.addAction(PlotActions.CopyAction(self)) self.addAction(self.copyAction) self.saveAction = self.group.addAction(PlotActions.SaveAction(self)) self.addAction(self.saveAction) self.printAction = self.group.addAction(PlotActions.PrintAction(self)) self.addAction(self.printAction) # Creating the toolbar also create actions for toolbuttons self._toolbar = self._createToolBar(title='Plot', parent=None) self.addToolBar(self._toolbar)
def __init__(self, parent=None, maskImageWidget=None): """ :param maskImageWidget: Parent SilxMaskImageWidget """ qt.QToolButton.__init__(self, parent) self.maskImageWidget = maskImageWidget self.setIcon(icons.getQIcon("document-save")) self.clicked.connect(self._saveToolButtonSignal) self.setToolTip('Save Graph') self._saveMenu = qt.QMenu() self._saveMenu.addAction( SaveImageListAction("Image Data", self.maskImageWidget)) self._saveMenu.addAction( SaveImageListAction("Colormap Clipped Seen Image Data", self.maskImageWidget, clipped=True)) self._saveMenu.addAction( SaveImageListAction("Clipped and Subtracted Seen Image Data", self.maskImageWidget, clipped=True, subtract=True)) # standard silx save action self._saveMenu.addAction( PlotActions.SaveAction(plot=self.maskImageWidget.plot, parent=self)) if QPyMcaMatplotlibSave is not None: self._saveMenu.addAction( SaveMatplotlib("Matplotlib", self.maskImageWidget))
def __createPlotToolBar(self, plot): toolBar = qt.QToolBar("Plot tools", plot) toolBar.addAction(PlotActions.ResetZoomAction(plot, toolBar)) toolBar.addAction(PlotActions.ZoomInAction(plot, toolBar)) toolBar.addAction(PlotActions.ZoomOutAction(plot, toolBar)) toolBar.addSeparator() toolBar.addAction(PlotActions.ColormapAction(plot, toolBar)) toolBar.addAction(PlotActions.PixelIntensitiesHistoAction(plot, toolBar)) toolBar.addSeparator() toolBar.addAction(PlotActions.CopyAction(plot, toolBar)) toolBar.addAction(PlotActions.SaveAction(plot, toolBar)) toolBar.addAction(PlotActions.PrintAction(plot, toolBar)) return toolBar
def __createPlotToolBar(self, plot): toolBar = qt.QToolBar("Plot tools", plot) toolBar.addAction(PlotActions.ResetZoomAction(plot, toolBar)) toolBar.addAction(PlotActions.ZoomInAction(plot, toolBar)) toolBar.addAction(PlotActions.ZoomOutAction(plot, toolBar)) toolBar.addSeparator() toolBar.addAction(PlotActions.ColormapAction(plot, toolBar)) toolBar.addAction( PlotActions.PixelIntensitiesHistoAction(plot, toolBar)) toolBar.addSeparator() toolBar.addAction(PlotActions.CopyAction(plot, toolBar)) toolBar.addAction(PlotActions.SaveAction(plot, toolBar)) toolBar.addAction(PlotActions.PrintAction(plot, toolBar)) stretch = qt.QWidget(self) stretch.setSizePolicy(qt.QSizePolicy.Expanding, qt.QSizePolicy.Fixed) toolBar.addWidget(stretch) self.__options = self.__createOptionsWidget() toolBar.addWidget(self.__options) return toolBar
def __init__(self, parent=None): qt.QMainWindow.__init__(self, parent=parent) if parent is not None: # behave as a widget self.setWindowFlags(qt.Qt.Widget) else: self.setWindowTitle("PyMca - Image Selection Tool") centralWidget = qt.QWidget(self) layout = qt.QVBoxLayout(centralWidget) centralWidget.setLayout(layout) layout.setContentsMargins(0, 0, 0, 0) layout.setSpacing(0) # Plot self.plot = PlotWidget(parent=centralWidget) self.plot.setWindowFlags(qt.Qt.Widget) self.plot.setDefaultColormap({ 'name': 'temperature', 'normalization': 'linear', 'autoscale': True, 'vmin': 0., 'vmax': 1. }) layout.addWidget(self.plot) # Mask Widget self._maskToolsDockWidget = None # Image selection slider self.slider = qt.QSlider(self.centralWidget()) self.slider.setOrientation(qt.Qt.Horizontal) self.slider.setMinimum(0) self.slider.setMaximum(0) layout.addWidget(self.slider) self.slider.valueChanged[int].connect(self.showImage) # ADD/REMOVE/REPLACE IMAGE buttons buttonBox = qt.QWidget(self) buttonBoxLayout = qt.QHBoxLayout(buttonBox) buttonBoxLayout.setContentsMargins(0, 0, 0, 0) buttonBoxLayout.setSpacing(0) self.addImageButton = qt.QPushButton(buttonBox) icon = qt.QIcon(qt.QPixmap(IconDict["rgb16"])) self.addImageButton.setIcon(icon) self.addImageButton.setText("ADD IMAGE") self.addImageButton.setToolTip("Add image to RGB correlator") buttonBoxLayout.addWidget(self.addImageButton) self.removeImageButton = qt.QPushButton(buttonBox) self.removeImageButton.setIcon(icon) self.removeImageButton.setText("REMOVE IMAGE") self.removeImageButton.setToolTip("Remove image from RGB correlator") buttonBoxLayout.addWidget(self.removeImageButton) self.replaceImageButton = qt.QPushButton(buttonBox) self.replaceImageButton.setIcon(icon) self.replaceImageButton.setText("REPLACE IMAGE") self.replaceImageButton.setToolTip( "Replace all images in RGB correlator with this one") buttonBoxLayout.addWidget(self.replaceImageButton) self.addImageButton.clicked.connect(self._addImageClicked) self.removeImageButton.clicked.connect(self._removeImageClicked) self.replaceImageButton.clicked.connect(self._replaceImageClicked) layout.addWidget(buttonBox) # median filter widget self._medianParameters = {'row_width': 1, 'column_width': 1} self._medianParametersWidget = MedianParameters(self) self._medianParametersWidget.widthSpin.setValue(1) self._medianParametersWidget.widthSpin.valueChanged[int].connect( self._setMedianKernelWidth) layout.addWidget(self._medianParametersWidget) self.setCentralWidget(centralWidget) # Init actions self.group = qt.QActionGroup(self) self.group.setExclusive(False) self.resetZoomAction = self.group.addAction( PlotActions.ResetZoomAction(plot=self.plot, parent=self)) self.addAction(self.resetZoomAction) self.zoomInAction = PlotActions.ZoomInAction(plot=self.plot, parent=self) self.addAction(self.zoomInAction) self.zoomOutAction = PlotActions.ZoomOutAction(plot=self.plot, parent=self) self.addAction(self.zoomOutAction) self.xAxisAutoScaleAction = self.group.addAction( PlotActions.XAxisAutoScaleAction(plot=self.plot, parent=self)) self.addAction(self.xAxisAutoScaleAction) self.yAxisAutoScaleAction = self.group.addAction( PlotActions.YAxisAutoScaleAction(plot=self.plot, parent=self)) self.addAction(self.yAxisAutoScaleAction) self.colormapAction = self.group.addAction( PlotActions.ColormapAction(plot=self.plot, parent=self)) self.addAction(self.colormapAction) self.copyAction = self.group.addAction( PlotActions.CopyAction(plot=self.plot, parent=self)) self.addAction(self.copyAction) self.group.addAction(self.getMaskAction()) # Init toolbuttons self.saveToolbutton = SaveToolButton(parent=self, maskImageWidget=self) self.yAxisInvertedButton = PlotToolButtons.YAxisOriginToolButton( parent=self, plot=self.plot) self.keepDataAspectRatioButton = PlotToolButtons.AspectToolButton( parent=self, plot=self.plot) self.backgroundButton = qt.QToolButton(self) self.backgroundButton.setCheckable(True) self.backgroundButton.setIcon( qt.QIcon(qt.QPixmap(IconDict["subtract"]))) self.backgroundButton.setToolTip( 'Toggle background image subtraction from current image\n' + 'No action if no background image available.') self.backgroundButton.clicked.connect(self._subtractBackground) # Creating the toolbar also create actions for toolbuttons self._toolbar = self._createToolBar(title='Plot', parent=None) self.addToolBar(self._toolbar) self._profile = ProfileToolBar(plot=self.plot) self.addToolBar(self._profile) self.setProfileToolbarVisible(False) # add a transparency slider for the stack data self._alphaSliderToolbar = qt.QToolBar("Alpha slider", parent=self) self._alphaSlider = NamedImageAlphaSlider( parent=self._alphaSliderToolbar, plot=self.plot, legend="current") self._alphaSlider.setOrientation(qt.Qt.Vertical) self._alphaSlider.setToolTip("Adjust opacity of stack image overlay") self._alphaSliderToolbar.addWidget(self._alphaSlider) self.addToolBar(qt.Qt.RightToolBarArea, self._alphaSliderToolbar) # hide optional tools and actions self.setAlphaSliderVisible(False) self.setBackgroundActionVisible(False) self.setMedianFilterWidgetVisible(False) self.setProfileToolbarVisible(False) self._images = [] """List of images, as 2D numpy arrays or 3D numpy arrays (RGB(A)). """ self._labels = [] """List of image labels. """ self._bg_images = [] """List of background images, as 2D numpy arrays or 3D numpy arrays (RGB(A)). These images are not active, their colormap cannot be changed and they cannot be the base image used for drawing a mask. """ self._bg_labels = [] self._deltaXY = ( 1.0, 1.0) # TODO: allow different scale and origin for each image """Current image scale (Xscale, Yscale) (in axis units per image pixel). The scale is adjusted to keep constant width and height for the image when a crop operation is applied.""" self._origin = (0., 0.) """Current image origin: coordinate (x, y) of sample located at (row, column) = (0, 0)""" # scales and origins for background images self._bg_deltaXY = [] self._bg_origins = []
def __init__(self, parent=None, backend=None): super(MaskScatterWidget, self).__init__(parent=parent, backend=backend) self._activeScatterLegend = "active scatter" self._bgImageLegend = "background image" self._maskToolsDockWidget = None # Init actions self.group = qt.QActionGroup(self) self.group.setExclusive(False) self.resetZoomAction = self.group.addAction( PlotActions.ResetZoomAction(self)) self.addAction(self.resetZoomAction) self.zoomInAction = PlotActions.ZoomInAction(self) self.addAction(self.zoomInAction) self.zoomOutAction = PlotActions.ZoomOutAction(self) self.addAction(self.zoomOutAction) self.xAxisAutoScaleAction = self.group.addAction( PlotActions.XAxisAutoScaleAction(self)) self.addAction(self.xAxisAutoScaleAction) self.yAxisAutoScaleAction = self.group.addAction( PlotActions.YAxisAutoScaleAction(self)) self.addAction(self.yAxisAutoScaleAction) self.colormapButton = ColormapToolButton(parent=self, plot=self) self.keepDataAspectRatioButton = PlotToolButtons.AspectToolButton( parent=self, plot=self) self.yAxisInvertedButton = PlotToolButtons.YAxisOriginToolButton( parent=self, plot=self) self.group.addAction(self.getMaskAction()) self._separator = qt.QAction('separator', self) self._separator.setSeparator(True) self.group.addAction(self._separator) self.copyAction = self.group.addAction(PlotActions.CopyAction(self)) self.addAction(self.copyAction) self.saveAction = self.group.addAction(PlotActions.SaveAction(self)) self.addAction(self.saveAction) self.printAction = self.group.addAction(PlotActions.PrintAction(self)) self.addAction(self.printAction) self.alphaSlider = NamedScatterAlphaSlider(parent=self, plot=self) self.alphaSlider.setOrientation(qt.Qt.Horizontal) # Creating the toolbar also create actions for toolbuttons self._toolbar = self._createToolBar(title='Plot', parent=None) self.addToolBar(self._toolbar) self.setActiveCurveHandling( False) # avoids color change when selecting self.sigContentChanged.connect(self._onContentChanged)