opencv line

Solutions on MaxInterview for opencv line by the best coders in the world

showing results for - "opencv line"
Omar
02 Mar 2017
1import cv2
2cv2.line(image, start_point, end_point, color, thickness)
3
4# Parameters:
5# image: It is the image on which line is to be drawn.
6# start_point: It is the starting coordinates of line. The coordinates are represented as tuples of two values i.e. (X coordinate value, Y coordinate value).
7# end_point: It is the ending coordinates of line. The coordinates are represented as tuples of two values i.e. (X coordinate value, Y coordinate value).
8# color: It is the color of line to be drawn. For BGR, we pass a tuple. eg: (255, 0, 0) for blue color.
9# thickness: It is the thickness of the line in px.
10
11# Return Value: It returns an image.