ContrastMode#
- class glue_qt.viewers.matplotlib.toolbar_mode.ContrastMode(viewer, **kwargs)[source]#
Bases:
ToolbarModeBase
Uses right mouse button drags to set bias and contrast, DS9-style.
The horizontal position of the mouse sets the bias, the vertical position sets the contrast.
The move_callback defaults to calling _set_norm on the viewer with the instance of ConstrastMode as the sole argument.
Attributes Summary
A property that callback functions can be added to.
Methods Summary
activate
()Activates all MPL event handlers associated with this mouse mode.
close
()Deactivates all MPL event handlers associated with this mouse mode.
key
(event)Handles key press events.
List of QtWidgets.QActions to be attached to this tool as a context menu.
move
(event)MoveEvent.
press
(event)Handles mouse presses.
release
(event)Handles mouse release events.
set_clip_percentile
(lo, hi)Percentiles at which to clip the data at black/white
set_vmin_vmax
(vmin, vmax)Attributes Documentation
- action_text = 'Contrast'#
- enabled#
A property that callback functions can be added to.
When a callback property changes value, each callback function is called with information about the state change. Otherwise, callback properties behave just like normal instance variables.
CallbackProperties must be defined at the class level. Use the helper function
add_callback()
to attach a callback to a specific instance of a class with CallbackProperties- Parameters:
- default
The initial value for the property
- docstringstr
The docstring for the property
- getter, setterfunc
Custom getter and setter functions (advanced)
- icon = 'glue_contrast'#
- shortcut = 'B'#
- status_tip = None#
- tool_id = 'image:contrast'#
- tool_tip = 'Adjust the bias/contrast'#
Methods Documentation
- activate()#
Activates all MPL event handlers associated with this mouse mode.
- close()#
- deactivate()#
Deactivates all MPL event handlers associated with this mouse mode.
- key(event)#
Handles key press events.
Calls key_callback method.
- Parameters:
- event
matplotlib.backend_bases.KeyEvent
The event that was triggered
- event
List of QtWidgets.QActions to be attached to this tool as a context menu.
- press(event)#
Handles mouse presses.
Logs mouse position and calls press_callback method.
- Parameters:
- event
matplotlib.backend_bases.MouseEvent
The event that was triggered
- event
- release(event)#
Handles mouse release events.
Logs mouse position and calls release_callback method.
- Parameters:
- event
matplotlib.backend_bases.MouseEvent
The event that was triggered
- event