DEV Community

Kuba
Kuba

Posted on

Maping coordinates from video frame to technical projection 🤓

Many google search results led me here. Hope one of yours will lead you here and this post will shorten your suffering.

But first... quick background!

This is me in one of the frames in video (left picture). Assume that camera position in stable, something like surveillance camera. Our goal is to make system witch will tell us where we are in flat space on something like technical projection (right picture). And as always we will use Python.

Homography_idea

Just use homography 🤷‍♀️

As I said, I tried lots of different approaches which didn't work for me and then in some YT lecture, I found ⭐homography⭐.

I will try to explain it to you in very simple words. I mention our problem is to find corelation between two flat spaces. Basicaly the screen and technical projection of space which camera covers. That corelation between them is called homography 🤯.

If you are searching for detailed stuff go to wiki page, I will cover using it with python in my case.

What we need?

Choose four points on your video, if you have more than four it is even better. Now you need to measure where in 2d space of technical projection those points are. Yes, I see it as a disadvantage of this solution too... you have to be able to be where your camera is pointing to. Another way is to assume more or less distances between those points.

So now we have our input. In my project I've made something like camera settings. For each camera there is a JSON file with input values to calculate homography. Src list is list of x and y coordinates on our video. You can use pixels to know it. Dst list is list of points corresponding to src in real space. For example assume that low left corner of your backyard is point (0,0) and measure all other points.

{
    "name" : "camera_1",
    "src" : [[501, 1013],[1289, 1065], [849, 363], [1058, 524]],
    "dst" : [[20, 400],[210,400],[60,80],[150,200]]
}
Enter fullscreen mode Exit fullscreen mode

Here comes OpenCV

Finally, let's do something! You need two methods.

cv2.getPerspectiveTransform( here_goes_list_of_src_points, here_goes_list_of_dst_points )
Enter fullscreen mode Exit fullscreen mode

This will return calculated homography between two flat spaces we were talking about earlier.

cv2.perspectiveTransform( points_we_want_to_map, our_homography )
Enter fullscreen mode Exit fullscreen mode

This will map other points.

import numpy as np

pts_src = np.float32(cameraConfig['src'])
pts_dst = np.float32(cameraConfig['dst'])

homography = cv2.getPerspectiveTransform(pts_src, pts_dst)
Enter fullscreen mode Exit fullscreen mode

Such calculated homography is enough for us to tell where we are standing in backyard. Let's just pass where we are on the picture (here you can use some object detection or other fancy stuff) and homography.

coords_to_map = np.float32([[ x_coord, y_coord ]]).reshape(-1,1,2)
mapped_coords = cv2.perspectiveTransform( coords_to_map, homography )
Enter fullscreen mode Exit fullscreen mode

Basicaly that's it. Now go and build neighbor tracker around your house or check out other posts on my blog😉.

Top comments (0)