Skip to content

Commit

Permalink
removed print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
mturk24 committed Mar 8, 2018
1 parent a457187 commit b87105c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/VanishingPoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ def hough_transform(img):

lines = cv2.HoughLines(edges, 1, np.pi / 180, 200) # Hough line detection
hough_lines = []
print(lines, "this is lines")
# Lines are represented by rho, theta; convert to endpoint notation
if lines is not None:
for line in lines:
Expand Down

0 comments on commit b87105c

Please sign in to comment.