All in One Offer! | Access Unlimited Courses in any category starting at just $29. Offer Ends in:

Browse Library

  • Business Solutions
  • Become an Instructor
  • 0
    Shopping Cart

    Your Cart is empty. Keep shopping to find a course!

    Browse Courses
Get Unlimited Learning Access
$29
1 days left at this price!
30-Day Money-Back Guarantee

This plan includes

  • Instant access to 11,000+ online courses
  • Play & Pause Course Videos
  • HD Video Recorded Lectures
  • Learn on Mobile/PC/Tablet
  • Quizzes and Real Projects
  • Lifetime Course Certificate
  • Instructor Chat Support
  • Cancel Plan Anytime
Subscribe to Learnfly’s top courses
Get this course, plus 11,000+ of our top-rated courses for one year with Go Annually Plan.
$348 $244 a year Save 30%
1 days left at this price!
30-Day Money-Back Guarantee

This plan includes

  • Instant access to 11,000+ online courses
  • Play & Pause Course Videos
  • HD Video Recorded Lectures
  • Learn on Mobile/PC/Tablet
  • Quizzes and Real Projects
  • Lifetime Course Certificate
  • Instructor Chat Support
  • Cancel Plan Anytime
$29
$244
  • OpenCV Image Manipulation Fundamentals using Python. Also includes a Python basics refresher session.

Hi There!

 

Welcome to my new course OpenCV Fundamentals using Python. This is the first course from my Computer Vision series.

 

Lets see what are the interesting topics included in this course. At first we will have an overview about computer vision and the amazing OpenCV, the open-source computer vision library.

 

After that, we are ready to proceed with preparing our computer for installing OpenCV and later will proceed with installing OpenCV itself. Then we will try a one liner code to check if everything is working fine.

 

When I said this course is for complete beginners, I really mean it. Because even-if you are coming from a non-python background, the next few sessions and examples will help you get the basic python programming skill to proceed with the rest of the sessions. The topics include Python assignment, flow-control, functions and data structures.

 

Now we are all set to proceed with python computer vision exercises.  But before that we need to learn the theory of how a digital image is organized. Concept of pixels, color and grey scale channels, color codes etc.

 

Then we will write our first opencv program in which we will simply load and display an image from our computer and we will write a grey scale version of this image back to our computer itself.

 

As you already know the basic building block of a digital image is pixels, we will use the power of opencv to manipulate the individual pixels of an image and modify it.

 

Later in the next session, we will use a similar technique to select a collective area of pixels and manipulate it by trying to change color and also get the properties of the image.

 

Hope you know that there are 3 color channels in a color image and a single one in greyscale image. We will try to separate and extract those color channels and later try to merge them back to form the original image.

 

Color spaces, unlike the color channels, is the way how colors are organized in an image. In the next session, we will explore the popular color spaces and will do exercises which switches an image between different color spaces.

 

In the next session, we will use opencv to create and draw simple geometric shapes like line, rectangle, circle, ellipse, polygon etc into an image canvas. We also will try to insert a text into the canvas.

 

Then we will try some morphological transformations to our image which includes erosion which erodes the pixels, then dilation which will expand the pixels, Opening transformation for white noise removal and closing for black point noise removal. Then gradient transformation and finally the top hat and black hat morphological image transformations.

 

After that we will try the geometric transformations which includes scaling or resizing the image, then translating or place shifting the image, flipping or changing sides, rotating the image by fixing an axis, and cropping the image to extract the region of interest.

 

In the coming two sessions, we will try the basic arithmetic and logical operations between two images. We will try to do the addition operation and subtraction operation between two images. We will also try the AND, OR, XOR and NOT binary bitwise operations for two images and will check the results obtained.

 

Later we will go ahead with Image masking, which is a technique of covering the unwanted areas of image and display only the region of interest.

 

And after that we will try Image Smoothing techniques. At first we will use our own filter to do a custom smoothing of image and later built in filters using algorithms like Gaussian Smoothing, average smoothing, Median and finally the bilateral smoothing.

 

Then we will see an advanced technique called thresholding which is very useful in preprocessing and preparing the image for computer vision algorithms. We will do exercises to demonstrate simple thresholding, Otsu thresholding and adaptive thresholding.

 

Then we will check an interesting image color intensity plotting technique called as the histograms. We will plot a histogram and will learn how we can analyse the histogram to predict the nature of image.

 

By using this histogram and adjusting the values based on it, we can enhance the contrast of dull looking images. We will explore the technique called histogram equalization.

 

Image pyramids are different sized images generated and stacked one on top of other. We will explore how we can use opencv methods to generate image pyramids.

 

For us humans, its an easy task to find an object in a scene and find the edges of it. For computers its not that easy. We will explore the opencv functions which enable us to find the edges using the Canny edge detection.

 

As we know to a computer, an image is just a collection of numbers. To find the edges, gradients or the pattern of intensity change of colors should be found out. We will use gradient detection function of OpenCV to do that.

 

Then finally we will draw contours along the different objects in an image with the help of the above mentioned techniques and try to count the number of objects available in the scene.

 

That's all about the basics. The code and the images used in this course has been uploaded and shared in a folder. I will include the link to download them in the last session or the resource section of this course. You are free to use the code in your projects with no questions asked.

 

So that's all for now, see you soon in the class room. Happy learning and have a great time.

  • A decent configuration computer and an enthusiasm to dive into the world of computer vision
  • Beginners or who wants to start with Python Computer Vision using OpenCV
View More...
  • Section 1 : Introduction and Table of Contents 1 Lectures 00:08:04

    • Lecture 1 :
    • Introduction and Table of Contents Preview
  • Section 2 : Introduction to OpenCV 1 Lectures 00:03:23

    • Lecture 1 :
    • Introduction to OpenCV
  • Section 3 : Environment Setup: Preparing your Computer 1 Lectures 00:08:59

    • Lecture 1 :
    • Preparing your Computer by installing Python using Anaconda and later install O
  • Section 4 : Python Basics 4 Lectures 00:34:34

    • Lecture 1 :
    • Python Basics - Assignment
    • Lecture 2 :
    • Python Basics - Flow Control
    • Lecture 3 :
    • Python Basics - Data Structures
    • Lecture 4 :
    • Python Basics - Functions
  • Section 5 : Image Concepts 1 Lectures 00:07:09

    • Lecture 1 :
    • Image Concepts
  • Section 6 : Beginning OpenCV - Read , Display and Write Images 1 Lectures 00:06:33

    • Lecture 1 :
    • Beginning OpenCV - Read , Display and Write Images
  • Section 7 : Pixel Access and Modification 1 Lectures 00:08:53

    • Lecture 1 :
    • Pixel Access and Modification
  • Section 8 : Area Manipulation and Image Properties 1 Lectures 00:06:02

    • Lecture 1 :
    • Area Manipulation and Image Properties
  • Section 9 : Color Channels - Split and Merge 1 Lectures 00:09:51

    • Lecture 1 :
    • Color Channels - Split and Merge
  • Section 10 : Color Spaces Conversion 1 Lectures 00:07:02

    • Lecture 1 :
    • Color Spaces Conversion
  • Section 11 : Drawing Geometric Shapes and Text 3 Lectures 00:16:54

    • Lecture 1 :
    • Part 1 Create Drawing Canvas
    • Lecture 2 :
    • Part 2 Drawing line, Circle, Rectangle
    • Lecture 3 :
    • Part 3 Ellipse, Polygon and Text
  • Section 12 : Morphological Transformations 3 Lectures 00:16:18

    • Lecture 1 :
    • Morphological Transformation - Part 1 Erosion
    • Lecture 2 :
    • Morphological Transformation - Part 2 Dilation and Opening
    • Lecture 3 :
    • Morphological Transformation - Part 3 Closing, Gradient, TopHat, BlackHat
  • Section 13 : Geometric Transformations 5 Lectures 00:21:47

    • Lecture 1 :
    • Geometric Transformations - Part 1: Scaling
    • Lecture 2 :
    • Geometric Transformations - Part 2: Translation
    • Lecture 3 :
    • Geometric Transformations - Part 3: Rotation
    • Lecture 4 :
    • Geometric Transformations - Part 4: Flipping
    • Lecture 5 :
    • Geometric Transformations - Part 5: Cropping
  • Section 14 : Arithmetic Operations 1 Lectures 00:05:28

    • Lecture 1 :
    • Arithmetic Operations - Addition and Subtraction
  • Section 15 : Bitwise Operations 1 Lectures 00:05:15

    • Lecture 1 :
    • Bitwise Operations - AND, OR, XOR, NOT
  • Section 16 : Image Masking 1 Lectures 00:04:04

    • Lecture 1 :
    • Image Masking
  • Section 17 : Image Smoothing 3 Lectures 00:18:41

    • Lecture 1 :
    • Custom Filter Image Smoothing
    • Lecture 2 :
    • Average and Gaussian Image Smoothing
    • Lecture 3 :
    • Median and Bilateral Smoothing
  • Section 18 : Image Thresholding 3 Lectures 00:15:35

    • Lecture 1 :
    • Simple Thresholding
    • Lecture 2 :
    • Otsu Thresholding
    • Lecture 3 :
    • Adaptive Thresholding
  • Section 19 : Histograms 1 Lectures 00:07:41

    • Lecture 1 :
    • Histograms
  • Section 20 : Histogram Equalization 1 Lectures 00:04:44

    • Lecture 1 :
    • Histogram Equalization
  • Section 21 : Image Pyramids 1 Lectures 00:04:53

    • Lecture 1 :
    • Image Pyramids
  • Section 22 : Canny Edge Detection 1 Lectures 00:03:23

    • Lecture 1 :
    • Canny Edge Detection
  • Section 23 : Image Gradients - Laplace and Sobel 1 Lectures 00:07:04

    • Lecture 1 :
    • Image Gradients - Laplace and Sobel
  • Section 24 : Image Contours 1 Lectures 00:08:42

    • Lecture 1 :
    • Image Contours
  • Section 25 : SAMPLES AND SOURCE CODE DOWNLOAD 1 Lectures

    • Lecture 1 :
    • SAMPLES AND SOURCE CODE DOWNLOAD
    • Download source code from here: https://drive.google.com/open?id=1-VTF97DbAlFGBq0566y5aeSK4ikmeKqf
  • How do i access the course after purchase?

    It's simple. When you sign up, you'll immediately have unlimited viewing of thousands of expert courses, paths to guide your learning, tools to measure your skills and hands-on resources like exercise files. There’s no limit on what you can learn and you can cancel at any time.
  • Are these video based online self-learning courses?

    Yes. All of the courses comes with online video based lectures created by certified instructors. Instructors have crafted these courses with a blend of high quality interactive videos, lectures, quizzes & real world projects to give you an indepth knowledge about the topic.
  • Can i play & pause the course as per my convenience?

    Yes absolutely & thats one of the advantage of self-paced courses. You can anytime pause or resume the course & come back & forth from one lecture to another lecture, play the videos mulitple times & so on.
  • How do i contact the instructor for any doubts or questions?

    Most of these courses have general questions & answers already covered within the course lectures. However, if you need any further help from the instructor, you can use the inbuilt Chat with Instructor option to send a message to an instructor & they will reply you within 24 hours. You can ask as many questions as you want.
  • Do i need a pc to access the course or can i do it on mobile & tablet as well?

    Brilliant question? Isn't it? You can access the courses on any device like PC, Mobile, Tablet & even on a smart tv. For mobile & a tablet you can download the Learnfly android or an iOS app. If mobile app is not available in your country, you can access the course directly by visting our website, its fully mobile friendly.
  • Do i get any certificate for the courses?

    Yes. Once you complete any course on our platform along with provided assessments by the instructor, you will be eligble to get certificate of course completion.
  • For how long can i access my course on the platform?

    You require an active subscription to access courses on our platform. If your subscription is active, you can access any course on our platform with no restrictions.
  • Is there any free trial?

    Currently, we do not offer any free trial.
  • Can i cancel anytime?

    Yes, you can cancel your subscription at any time. Your subscription will auto-renew until you cancel, but why would you want to?

272971 Course Views

19 Courses

I am a pioneering, talented and security-oriented Android/iOS Mobile and PHP/Python Web Developer Application Developer offering more than eight years’ overall IT experience which involves designing, implementing, integrating, testing and supporting impact-full web and mobile applications. I am a Post Graduate Masters Degree holder in Computer Science and Engineering. My experience with PHP/Python Programming is an added advantage for server-based Android and iOS Client Applications. I am currently serving full-time as a Senior Solution Architect managing my client's projects from start to finish to ensure high-quality, innovative and functional design.
View More...
  • Unmatched Variety and Value!
    Learnfly's monthly subscription offers unlimited access to a vast range of courses. Affordable pricing, compared to competitors, makes it the ultimate choice for continuous learning.
    Jessica M.

    4.7

    JM
  • Top-Notch Quality, Affordable Rates!
    High-quality courses with certified instructors make Learnfly stand out. The affordable pricing is a game-changer for those seeking premium education.
    Alex P.

    4.5

    AP
  • Certified Excellence Every Time!
    Learnfly's courses, taught by certified instructors, ensure top-notch learning experiences. The course completion certificates add significant value to one's skill set.
    Sarah R.

    4.3

    SR
  • Round-the-Clock Support!
    Learnfly goes the extra mile with 24/7 course support. Their dedication to helping students succeed is commendable.
    Ryan K.

    4.1

    RK
  • Learn Anywhere, Anytime!
    Whether on mobile, PC, or tablet, Learnfly's platform offers flexibility. Learning on the go has never been easier.
    Emily S.

    4.7

    ES
  • Job-Ready Skills!
    Learnfly's job-oriented courses equip learners with practical skills for the workplace. An investment in career growth!
    Jake M.

    4.2

    JM
  • Budget-Friendly Brilliance!
    Learnfly's pricing is a steal for the quality and variety of courses offered. Quality education without breaking the bank.
    Olivia T.

    4.5

    OT
  • Instructor Excellence Unleashed!
    Learn from the best with Learnfly's certified instructors. The platform ensures that knowledge is imparted by industry experts.
    Daniel L.

    4.0

    DL
  • Achievement Unlocked!
    Learnfly not only offers courses but also recognizes your efforts with course completion certificates. A sense of accomplishment with every course finished.
    Maya H.

    4.6

    MH
  • Learning Revolution!
    Learnfly's platform is a revolution in education. Access to unlimited courses at affordable rates is a game-changer.
    Ethan W.

    4.7

    EW
  • a-tableau-prep-masterclass-with-real-world-business-problems

    a Tableau Prep Masterclass- With re...

    By : Siddharth Pawar

    Lectures 21 Beginner 1:57:42
  • data-visualization-with-tableau-10-5

    Data visualization with Tableau 10....

    By : Siddharth Pawar

    Lectures 29 Beginner 3:39:45
  • tableau-server-2018-administration

    Tableau Server 2018 Administration

    By : Siddharth Pawar

    Lectures 26 Beginner 3:9:59
  • statistical-modeling-for-data-science

    Statistical Modeling for Data scien...

    By : Gulab Chand Tejwani

    Lectures 13 Intermedite 1:4:34
  • qliksense-data-visualization-and-analytics-a-z

    QlikSense Data Visualization and An...

    By : Lorenz De Smedt

    Lectures 20 Beginner 1:57:34
  • tableau-fundamental-2020

    Tableau Fundamental 2020

    By : Sivin Duong

    Lectures 12 Beginner 1:54:46

Students learning on Learnfly works with Fortune 500 companies around the globe.

Sign Up & Start Learning
By signing up, you agree to our Terms of Use and Privacy Policy
Reset Password
Enter your email address and we'll send you a link to reset your password.