Brian Zier

Results 36 comments of Brian Zier

Agreed, I don't expect to keep things in sync. That certainly wouldn't be easy. Just going through the translation itself was a time consuming exercise. I was mostly just wanting...

Thank you for sharing that screen capture. That's incredibly helpful. I've seen symptoms of this before, but never actually seen what's going on to understand it. The first thing to...

Hey @Fujiki-Nakamura, Out of curiosity, what are your system specs? What version of Ubuntu are you running? What kind of graphics card? Etc. I don't know if that information will...

No problem on the timing. I only can check in on this and respond a couple times throughout the day anyway. Thanks for the additional info. I'll keep thinking about...

FYI, I just tested grabbing screenshots using `wxPython` versus `mss`. My machine is ancient and relatively slow, but the comparison between the two should be somewhat valid. I am running...

Turns out that `mss` has the color channels as BGRA, whereas we've been using RGB. This may be usable, or if anyone knows a quick transformation (as in computationally efficient)...

Well if I would read the documentation, it turns out there is a property on the `mss` screenshot object called `pixels` that is the list of RGB tuples. However, it...

So 10,000 passes ran for close to an hour before I killed it. Just ran each through 100 times, so I could actually see a rough comparison. The average could...

Yeah, I saw OpenCV as an option for doing that conversion, but I also didn't think it was worth taking on that dependency simply for that. It seems like the...

@BoboTiG, That's great, thank you for reaching out to us. What I ended up doing for the BGRA to RGB conversion was [this](https://github.com/bzier/gym-mupen64plus/blob/919bc365b7cb4ea0a2493e910b7077c8fffc7d61/gym_mupen64plus/envs/mupen64plus_env.py#L98): ```python # drop the alpha channel and...