LSST Applications g06d8191974+de063e15a7,g180d380827+d0b6459378,g2079a07aa2+86d27d4dc4,g2305ad1205+f1ae3263cc,g29320951ab+5752d78b6e,g2bbee38e9b+85cf0a37e7,g337abbeb29+85cf0a37e7,g33d1c0ed96+85cf0a37e7,g3a166c0a6a+85cf0a37e7,g3ddfee87b4+b5254b9343,g48712c4677+9ea88d309d,g487adcacf7+05f7dba17f,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+48904e3942,g64a986408d+de063e15a7,g858d7b2824+de063e15a7,g864b0138d7+33ab2bc355,g8a8a8dda67+585e252eca,g99cad8db69+4508353287,g9c22b2923f+53520f316c,g9ddcbc5298+9a081db1e4,ga1e77700b3+15fc3df1f7,gb0e22166c9+60f28cb32d,gba4ed39666+c2a2e4ac27,gbb8dafda3b+ccb7f83a87,gc120e1dc64+6caf640b9b,gc28159a63d+85cf0a37e7,gc3e9b769f7+548c5e05a3,gcf0d15dbbd+b5254b9343,gdaeeff99f8+f9a426f77a,ge6526c86ff+515b6c9330,ge79ae78c31+85cf0a37e7,gee10cc3b42+585e252eca,gff1a9f87cc+de063e15a7,w.2024.17
LSST Data Management Base Package
Loading...
Searching...
No Matches
virtualDevice.py
Go to the documentation of this file.
1# This file is part of afw.
2#
3# Developed for the LSST Data Management System.
4# This product includes software developed by the LSST Project
5# (https://www.lsst.org).
6# See the COPYRIGHT file at the top-level directory of this distribution
7# for details of code ownership.
8#
9# This program is free software: you can redistribute it and/or modify
10# it under the terms of the GNU General Public License as published by
11# the Free Software Foundation, either version 3 of the License, or
12# (at your option) any later version.
13#
14# This program is distributed in the hope that it will be useful,
15# but WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17# GNU General Public License for more details.
18#
19# You should have received a copy of the GNU General Public License
20# along with this program. If not, see <https://www.gnu.org/licenses/>.
21
22
24 """Back-end for display objects.
25
26 Parameters
27 ----------
28 display
29 The display object that we're providing the implementation for
30 verbose : `bool`
31 be chatty?
32 """
33 def __init__(self, display, verbose=False):
34 self.display = display
35 self.verbose = verbose
36
37 def __del__(self):
38 self._close()
39
40 def _close(self):
41 """Close the display, cleaning up any allocated resources
42 """
43 if hasattr(self, "verbose") and self.verbose and hasattr(self, "display"):
44 print("virtual[%s]._close()" % (self.frame))
45
46 def _buffer(self, enable=True):
47 """Enable or disable buffering of writes to the display
48
49 Parameters
50 ----------
51 enable : `bool`
52 `True` or `False`, as appropriate
53 """
54 if self.verbose:
55 print("virtual[%s]._buffer(%s)" % (self.frame, enable))
56
57 def _dot(self, symb, c, r, size, ctype, *args, **kwargs):
58 """Draw a symbol at (c, r)
59
60 Parameters
61 ----------
62 symb
63 The desired symbol. See `dot` for details
64 c : `float`
65 (x) column position
66 r : `float`
67 (y) row position
68 size : `int`
69 Size of symbol, in pixels
70 ctype : `str`
71 The desired color, either e.g. `lsst.afw.display.RED` or a color name known to X11
72 *args
73 Extra arguments to backend
74 **kwargs
75 Extra keyword arguments to backend
76 """
77 if self.verbose:
78 print("virtual[%s]._dot('%s', %.2f, %.2f, size=%g, ctype=%s, %s, %s)" %
79 (self.frame, symb, c, r, size, ctype, args, kwargs))
80
81 def _drawLines(self, points, ctype):
82 """Draw line defined by the list points
83
84 Parameters
85 ----------
86 points : `list` of `tuple` of `float`
87 A list of 0-indexed positions [(x, y), (x, y), ...]
88 ctype : `str`
89 The desired color, either e.g. `lsst.afw.display.RED` or a color name known to X11
90 """
91 if self.verbose:
92 print("virtual[%s]._drawLines(%s, ctype=%s)" %
93 (self.frame, points, ctype))
94
95 def _erase(self):
96 """Erase all glyphs drawn on display
97 """
98 if self.verbose:
99 print("virtual[%s]._erase()" % (self.frame))
100
101 def _flush(self):
102 """Flush any I/O buffers
103 """
104 if self.verbose:
105 print("virtual[%s]._flush()" % self.frame)
106
107 def _setCallback(self, what, func):
108 if self.verbose > 1:
109 print("setCallback %s -> %s" % (what, func))
110
111 def _getEvent(self):
112 """Return an event generated by a keypress or mouse click
113 """
114 from .interface import Event
115 ev = Event("q")
116
117 if self.verbose:
118 print("virtual[%s]._getEvent() -> %s" % (self.frame, ev))
119
120 return ev
121
123 """Return the mask transparency for a display
124 """
125 if self.verbose:
126 print("virtual[%s]._getMaskTransparency()" % self.frame)
127
128 def _mtv(self, image, wcs=None, mask=None, title=""):
129 """Display an image and maybe a mask overlay on a display
130
131 Parameters
132 ----------
133 image : `lsst.afw.image.Image`
134 `~lsst.afw.image.Image` to display
135 mask : `lsst.afw.image.Mask`
136 `~lsst.afw.image.Mask` to display
137 wcs : `lsst.afw.geom.SkyWcs`
138 A Wcs to associate with data
139 title : `str`
140 Name to display with the data
141 """
142 if self.verbose:
143 print("virtual[%s]._mtv(image=%s, mask=%s, wcs=%s, title=\"%s\")" %
144 (self.frame, "Image" if image else None,
145 "Mask" if mask else None, "Wcs" if wcs else None, title))
146
147 def _setImageColormap(self, cmap):
148 """Set the desired colormap
149
150 Parameters
151 ----------
152 cmap : `str`
153 the name of a colormap (e.g. "gray") or a backend-specific object
154 """
155 if self.verbose:
156 print("virtual[%s]._setImageColormap(cmap=\"%s\")" % (self.frame, cmap))
157
158 def _setMaskTransparency(self, transparency, maskplane):
159 """Set the transparency of a maskplane
160
161 Parameters
162 ----------
163 transparency : `float`
164 The desired transparency, in the range [0, 100]
165 maskplane
166 The maskplane to set (None: all)
167 """
168 if self.verbose:
169 print("virtual[%s]._setMaskTransparency(%g, maskplane=\"%s\")" %
170 (self.frame, transparency, maskplane))
171
172 def _scale(self, algorithm, min, max, *args, unit=None, **kwargs):
173 """Set the scaling from DN to displayed pixels
174
175 Parameters
176 ----------
177 algorithm
178 Scaling algorithm (e.g. linear)
179 min
180 The minimum value of the stretch (or "zscale" or "minmax")
181 max
182 The maximum value of the stretch
183 unit
184 Units for min and max (e.g. Percent, Absolute, Sigma)
185 *args
186 Optional arguments to the backend
187 **kwargs
188 Optional keyword arguments to the backend
189 """
190 if self.verbose:
191 print("virtual[%s]._scale(%s, %s, %s, %s, %s, %s)" % (self.frame, algorithm,
192 min, max, unit, args, kwargs))
193
194 def _show(self):
195 """Show the requested display
196 """
197 if self.verbose:
198 print("virtual[%s]._show()" % self.frame)
199
200 def _pan(self, r, c):
201 """Pan to a row and column
202
203 Parameters
204 ----------
205 c : `float`
206 Desired column (x) position
207 r : `float`
208 Desired row (y) position
209 """
210 if self.verbose:
211 print("virtual[%s]._pan(%.2f, %.2f)" % (self.frame, r, c))
212
213 def _zoom(self, zoomfac):
214 """Set the zoom
215
216 Parameters
217 ----------
218 zoomfac : `float`
219 Zoom factor to use
220 """
221 if self.verbose:
222 print("virtual[%s]._zoom(%g)" % (self.frame, zoomfac))
_dot(self, symb, c, r, size, ctype, *args, **kwargs)
_setMaskTransparency(self, transparency, maskplane)
__init__(self, display, verbose=False)
_mtv(self, image, wcs=None, mask=None, title="")
_scale(self, algorithm, min, max, *args, unit=None, **kwargs)