Farama-Foundation / Arcade-Learning-Environment

The Arcade Learning Environment (ALE) -- a platform for AI research.
GNU General Public License v2.0
2.1k stars 416 forks source link

Refactor frame processing & add frame maxing #495

Open JesseFarebro opened 11 months ago

JesseFarebro commented 11 months ago

Overview

Frame Maxing details

As for frame maxing, we perform frame maxing per channel if getScreenRGB is called. This is standard and what DeepMind's preprocessing does. If getScreenGrayscale is called then we just take the max over luminosity.

Fixes #467.

pseudo-rnd-thoughts commented 4 months ago

Will this require environment version update?