From the course: Programming Foundations: Artificial Intelligence
Unlock the full course today
Join today to access over 24,700 courses taught by industry experts.
Dive into computer vision
From the course: Programming Foundations: Artificial Intelligence
Dive into computer vision
- [Instructor] Computer vision enables computers to interpret and understand visual information from the world, such as images and videos. In this video, we will use OpenCV, Open Source Computer Vision Library, to implement a basic computer vision project that processes and analyzes images. We'll detect edges in an image using the Canny Edge Detection algorithm. I've navigated to the Jupyter Notebook. You can find the notebook in the GitHub repo. First, I install OpenCV because it's not present on my machine. Then I import the necessary libraries. We import cv2. OpenCV contains more than 2,500 optimized algorithms that can be used for various tasks in computer vision and image processing. We also import matplotlib for displaying images. Make sure you install it before attempting to import it. Scroll down in cell 12. We load the image of a palm tree from the specified path using cv2.imread You can find the palm tree in the GitHub repo. Scroll down to cell 13. Here, we convert the image…
Practice while you learn with exercise files
Download the files the instructor uses to teach the course. Follow along and learn by watching, listening and practicing.
Contents
-
-
-
-
-
(Locked)
Set up your AI environment3m 7s
-
(Locked)
Build your first machine learning model7m 23s
-
(Locked)
Create a neural network5m 38s
-
(Locked)
Dive into computer vision3m 43s
-
(Locked)
Explore generative AI5m 18s
-
(Locked)
Challenge: Build your first machine learning model2m 33s
-
(Locked)
Solution: Build your first machine learning model3m 44s
-
(Locked)
-
-
-