:returns: the current 3-channel image
(self)
| 103 | return [ACTION_MEANING[i] for i in self.actions] |
| 104 | |
| 105 | def _grab_raw_image(self): |
| 106 | """ |
| 107 | :returns: the current 3-channel image |
| 108 | """ |
| 109 | m = self.ale.getScreenRGB() |
| 110 | return m.reshape((self.height, self.width, 3)) |
| 111 | |
| 112 | def _current_state(self): |
| 113 | """ |
no outgoing calls
no test coverage detected