linyiLYi / street-fighter-ai

This is an AI agent for Street Fighter II Champion Edition.
Apache License 2.0
6.34k stars 1.36k forks source link

请教一下这段代码,为什么需要步长为2截取图片呢? #82

Open piggggyy opened 2 months ago

piggggyy commented 2 months ago

def step(self, action): custom_done = False obs, _reward, _done, info = self.env.step(action) self.frame_stack.append(obs[::2, ::2, :])