Last active
February 19, 2019 17:28
-
-
Save DamienAllonsius/aafbddaf5f6b12bb9ff54a274bfa4edc to your computer and use it in GitHub Desktop.
Reinforcement Learning - Wrapper for downsampling images with Gym Environments. The resulting image is blurred/downsampled by taking the average colors of pixels in rectangle zones.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import gym | |
import numpy as np | |
import time | |
import cv2 | |
from gym.envs.classic_control import rendering | |
class ObservationZoneWrapper(gym.ObservationWrapper): | |
def __init__(self, env, downsampled_size_x, downsampled_size_y, blurred, number_gray_colors=0): | |
super(gym.ObservationWrapper, self).__init__(env) | |
self.blurred = blurred | |
self.downsampled_size = (downsampled_size_x, downsampled_size_y) | |
self.number_gray_colors = number_gray_colors | |
def observation(self, observation): | |
img_blurred = cv2.resize(observation, self.downsampled_size, interpolation=cv2.INTER_AREA) | |
img_blurred_resized = cv2.resize(img_blurred, (512, 512), interpolation=cv2.INTER_NEAREST) | |
return img_blurred_resized | |
env = ObservationZoneWrapper(gym.make("MontezumaRevenge-v4"), downsampled_size_x = 70, downsampled_size_y = 70, blurred = True) | |
obs = env.reset() | |
viewer = rendering.SimpleImageViewer() | |
viewer.imshow(obs) | |
time.sleep(10) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment