Set the image array.
(self, A)
| 1207 | unsampled=unsampled, round_to_pixel_border=False) |
| 1208 | |
| 1209 | def set_data(self, A): |
| 1210 | """Set the image array.""" |
| 1211 | cm.ScalarMappable.set_array(self, |
| 1212 | cbook.safe_masked_invalid(A, copy=True)) |
| 1213 | self.stale = True |
| 1214 | |
| 1215 | |
| 1216 | class BboxImage(_ImageBase): |