Red Hen has vast audiovisual holdings. It would be useful to be able to tag with OpenPose. Would you like to work on this task?
If so, write to
and we will try to connect you with a mentor.
We expect your proposal to have a clear problem statement, Methodology and project plan.
In addition, we ask you to submit solution to two out of three tasks below in your preferred programming language together with your proposal:
Task 1: Given as input two matrices of sizes 512x512 representing grayscale images of an object in motion at moments T - 33.36 milliseconds and T, write a general purpose algorithm that can estimate what the image will look like at moment T+1ms, T+33.36 ms, T+1 s . Test and provide input-output example.
Task 2: Given a buffer containing x and y positions of a gamepad analog stick as floats in the (-1.0,1.0) range, extracted 60 times per second during the last 5 seconds, write a function that would best detect the combo "up left right down up down" in a game.
Task 3: Generate a list of 100'000 tuples (x,id), where x is a value between 0 and 1000 and id is a unique identifier. Return the id of the 500 elements with the smallest x. You may return more than 500 elements, if the 500th element has the same value as the 501st, 502nd, etc., however, you should not return fewer than 500 elements. Make sure you do this efficiently. Hint: this can be done in O(n)