Load the given channels from the view at the given index. :return: a tuple (camera_view, data), where data is a float array of shape [height x width x num_channels].
(self, index: int, channels: List[str])
| 175 | |
| 176 | @abstractmethod |
| 177 | def load_view(self, index: int, channels: List[str]) -> Tuple[Camera, np.ndarray]: |
| 178 | """ |
| 179 | Load the given channels from the view at the given index. |
| 180 | |
| 181 | :return: a tuple (camera_view, data), where data is a float array of |
| 182 | shape [height x width x num_channels]. |
| 183 | """ |
| 184 | |
| 185 | |
| 186 | class MemoryViewData(ViewData): |
no outgoing calls
no test coverage detected