10 Min Tutorial Of OpenCV Python: Find Lanes For Self Driving Cars - Lane Detection | AISciences.io

preview_player
Показать описание

We decided to produce courses and books mainly dedicated to beginners and newcomers on the techniques and methods of machine learning, statistics, artificial intelligence, and data science. Initially, our objective was to help only those who wish to understand these techniques more easily and to be able to start without too much theory or lengthy reading.

This video has information on 10 Min Tutorial Of OpenCV Python: Find Lanes For Self Driving Cars - Lane Detection but also covers the following topics:

Lane Detection OpenCV Python
Lanes Detection In OpenCV Python With Source Code
Learn OpenCV Python

✅ Stay Connected to Us.

=============================

✅ Important Python Projects:

👉 Get a look at our course on data science and AI here:

👉 The Python Codes are available at this link:

✅ Recommended Playlists:

👉 Artificial Intelligence

👉 Machine Learning

✅ Other Videos You Might Be Interested In Watching:

👉 Social Media Follower Prediction | ML | Python | For Beginners

👉 Build Facebook's Wav2Vec2 Model For Speech To Text Application | Easy Python Tutorial

👉 Question Answering Bot | AI Based | with Hugging Face Transformers | Python

=============================

✅ About AI Sciences.

AI Sciences is an e-learning company; the company publishes online courses and books about data science and computer technology for anyone, anywhere.

We are a group of experts, PhD students, and young practitioners of artificial intelligence, computer science, machine learning, and statistics. Some of us work for big-name companies like Google, Facebook, Microsoft, KPMG, BCG, and Mazars.

We decided to produce courses and books mainly dedicated to beginners and newcomers on the techniques and methods of machine learning, statistics, artificial intelligence, and data science. Initially, our objective was to help only those who wish to understand these techniques more easily and to be able to start without too much theory or lengthy reading. Today, we also publish more complete books on selected topics for a wider audience.

=================================

#lanesdetectiontutorialinopencvpython #lanesdetectiontutorialopencvpython #lanesdetectionusingopencvpython #lanesdetectioninopencvpython #python

Disclaimer: We do not accept any liability for any loss or damage which is incurred by you acting or not acting as a result of watching any of my publications. You acknowledge that you use the information I provide at your own risk. Do your own research.

Copyright Notice: This video and my YouTube channel contain dialog, music, and images that are the property of AI Sciences. You are authorized to share the video link and channel and embed this video in your website or others as long as a link back to my Youtube Channel is provided.

© AI Sciences
Рекомендации по теме
Комментарии
Автор

Dont take this the wrong way but when I heard your accent I knew I was gonna be ok

zaxi
Автор

The Code :

import cv2
import numpy as np

video =

while True:
ret, or_frame = video.read()

if not ret:
break

blurred_frame = cv2.GaussianBlur(or_frame, (5, 5), 0)
hsv = cv2.cvtColor(blurred_frame, cv2.COLOR_BGR2HSV)

lower_y = np.array([18, 94, 140])
upper_y = np.array([18, 255, 255])

mask = cv2.inRange(hsv, lower_y, upper_y)
edges = cv2.Canny(mask, 74, 150)
lines = cv2.HoughLinesP(edges, 1, np.pi / 180, 50, maxLineGap=50)

if lines is not None:
for line in lines:
x1, y1, x2, y2 = line[0]
cv2.line(or_frame, (x1, y1), (x2, y2), (0, 255, 0), 5)

cv2.imshow("frame", or_frame)
cv2.imshow("edges", edges)

key = cv2.waitKey(25)
if key == 27:
break

video.release()
cv2.destroyAllWindows()

rimtrabelsi
Автор

Boi,
I call this false advertisement… update your thumbnail, geez
I saw a cnn model but wth is this?

ld-tch
Автор

showing error: module cv2 has no attribute 'GauusianBlur'

ajmalnizar