Alexsandro Souza

Results 3 comments of Alexsandro Souza

Hi @NasrulhaqAbdullah the reason I created the simplified version was because I couldn't make this project work. This project many libraries that require Linux and I use mac. I recommend...

The project is well structured and you can swap things if you like. In your case, you need a wrapper for Openpose as we have it for Mediapile https://github.com/apssouza22/smart-drone/blob/master/common/mediapipewrapper.py However,...

Something like this ``` computeReward(position) { if (position >= 0.5) { return 100; } if (position >= 0.25) { return 20; } if (position >= 0.1) { return 10; }...