Xiaoli Chen
Xiaoli Chen
do remember, matplotlib is using RGB, and opencv is using BGR for plotting the image, you can use opencv to convert it easily.
good idea, I will contribute, I thought this is a great project for all self driving research~
@IanKirwan thanks for you help, I set up the vs environment, and found my offset of brake.. But, I got the same issue for reward, it crush my DeepGTAV.
My game version is VER_1_0_877_1_STEAM ``` void Scenario::setThrottle(){ d["throttle"] = getFloatValue(vehicle, 0x8D4); } void Scenario::setBrake(){ d["brake"] = getFloatValue(vehicle, 0x8D8); } void Scenario::setSteering(){ d["steering"] = -getFloatValue(vehicle, 0x8CC) / 0.6981317008; } ```...
same here, I never develop GTA plugin before, but found these to conversation maybe helpful https://github.com/aitorzip/DeepGTAV/issues/3 https://github.com/aitorzip/DeepGTAV/issues/43 Anyone can help me on setting the compile environment ?