Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Draw line between two given points (OpenCV, Python)

I am struggling with this problem for an hour by now...

I have an image with a rectangle inside:

rect

This is the code I wrote to find the points for the corners:

import cv2
import numpy as np


img = cv2.imread('rect.png')
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
gray = np.float32(gray)

points = cv2.goodFeaturesToTrack(gray, 100, 0.01, 10)
points = np.int0(points)

for point in points:
    x, y = point.ravel()
    cv2.circle(img, (x, y), 3, (0, 255, 0), -1)

print(points[0])
print(points[1])
print(points[2])
print(points[3])

cv2.imshow('img', img)
cv2.waitKey(0)
cv2.imwrite('rect.png', img)

This is the result:

rst

As you can see, it works perfect. What I want is to draw a line along the upper/lower points (x1,x2 - x3,x4).

What I produced since now is this...

cv2.line(img, (points[0]), (points[1]), (0, 255, 0), thickness=3, lineType=8)

cv2.imshow('img', img)
cv2.waitKey(0)

But it doesn't work.

Any idea ?

The result should be like this:

out

The two lines must pass along the coordinates of the points. print(points[0]) above give the next output, as example:

[[561 168]]
[[155 168]]
[[561  53]]
[[155  53]] 

Thanks

like image 531
BlueTrack Avatar asked Nov 17 '17 11:11

BlueTrack


People also ask

How do you draw a line between two points in OpenCV Python?

cv2. line() method is used to draw a line on any image. Parameters: image: It is the image on which line is to be drawn. start_point: It is the starting coordinates of the line.

How do you draw multiple lines in OpenCV?

cv. polylines() can be used to draw multiple lines. Just create a list of all the lines you want to draw and pass it to the function. All lines will be drawn individually.

How do you draw a line with an angle in OpenCV?

int angle = 45; int length = 150; Point P1(50,50); Point P2; P2. x = (int)round(P1. x + length * cos(angle * CV_PI / 180.0)); P2. y = (int)round(P1.


2 Answers

So first of all, let'S look at your print, it says that points[0] is

[[561 168]]

but opencv point is like

(561, 168)

You can unpack it like you did with the circle and then do the tuple

x, y = points[0].ravel()
(x,y)

or you can use

tuple(points[0].ravel())

or

tuple(points[0][0])

Edit

You wanted from one side of the screen to the other one, that is also easy. What you need to do is change the x value to be 0 in one point and column value in the other point. I think the easiest way is to do it like this:

y = points[0].ravel()[1]
cv2.line(img, (0, y), (img.shape[1], y), (0, 255, 0), thickness=3, lineType=8)

Two things to note here:

  1. As you can see I did not care about the second point, since I assumed that it will be in the same horizontal line, if not, it will get a little bit more complicated, but not hard.

  2. img.shape returns the tuple with the image details as (rows, cols, channels), since we need cols we took [1].

like image 175
api55 Avatar answered Oct 24 '22 13:10

api55


points = cv2.goodFeaturesToTrack(gray, 100, 0.01, 10)
points = np.int0(points).reshape(-1,2)

for point in points:
    x, y = point.ravel()
    cv2.circle(img, (x, y), 3, (0, 255, 0), -1)


y1 = min(points[:,1])
y2 = max(points[:,1])

## small and big enough 
cv2.line(img, (0, y1), (1000, y1), (0, 255, 0), thickness=3, lineType=8)
cv2.line(img, (0, y2), (1000, y2), (0, 255, 0), thickness=3, lineType=8)
like image 6
Kinght 金 Avatar answered Oct 24 '22 15:10

Kinght 金