Finance[US] Career Guide Free Tutorials Go to Your University Placement Preparation 
0 like 0 dislike
2.7k views
in OpenCV (Open Source Computer Vision Library) by Goeduhub's Expert (9.3k points)
What is OpenCV? How to install OpenCV with Anaconda in windows and getting started with openCV.  What is the features of OpenCV.

1 Answer

1 like 0 dislike
by Goeduhub's Expert (9.3k points)
selected by
 
Best answer

What is OpenCV ?

OpenCV is a cross-platform library using which we can develop real-time computer vision applications. It mainly focuses on image processing; video capture and analysis including features like face detection and object detection.

Features of OpenCV Library

  • Read and write images
  • Capture and save videos
  • Process images (filter, transform)
  •  Perform feature detection
  • Detect specific objects such as faces, eyes, cars, in the videos or images.
  • Analyze the video, i.e., estimate the motion in it, subtract the background, and track objects in it.

How to install opencv3 with Anaconda ?


Steps to install Opencv

Step 1 : Create Virtual Environment in Anaconda

Go to Start Menu -open Anaconda Prompt then type below command

            conda create --name opencv-env python=3.6

Press Y and Enter, the environment will be installed

Step 2 : Install OpenCV

 2.1 Activate the environment using below command

        activate opencv-env

2.2 Install OpenCV and other important packages

pip install numpy scipy matplotlib scikit-learn jupyter

pip install opencv-contrib-python

pip install dlib

2.3 Test your installation

            Open the python prompt on the command line by typing python on the command prompt

import cv2

cv2.__version__

import dlib

dlib.__version__

Getting Started with Images

Read an image

  • Use the function cv2.imread() to read an image. The image should be in the working directory or a full path of image should be given.
  • Second argument is a flag that specifies way the image should be read.
  1. cv2.IMREAD_COLOR : Loads a color image. Any transparency of image will be neglected. It is the default flag.

  2. cv2.IMREAD_GRAYSCALE : Loads image in grayscale mode

  3. cv2.IMREAD_UNCHANGED : Loads image as such including alpha channel

Note :- Instead of these three flags, you can simply pass integers 1, 0 or -1 respectively.

image

Display an image

  • Use the function cv2.imshow() to display an image in a window. The window automatically fits to the image size.
  • First argument is a window name which is a string. second argument is our image. You can create as many windows as you wish, but with different window names.
  • cv2.destroyAllWindows() simply destroys all the windows we created. If you want to destroy any specific window, use the function cv2.destroyWindow() where you pass the exact window name as the argument.
  • cv2.waitKey() is a keyboard binding function. Its argument is the time in milliseconds. The function waits for specified milliseconds for any keyboard event. If you press any key in that time, the program continues. If 0 is passed, it waits indefinitely for a key stroke. 
Limited Time Offer (till 09/09/2020):- Free Online 5.13 HRS long Course on Computer Vision with OpenCV | Deep Learning CNN Projects:- Apply Coupon

 

Learn & Improve In-Demand Data Skills Online in this Summer With  These High Quality Courses[Recommended by GOEDUHUB]:-

Best Data Science Online Courses[Lists] on:-

Claim your 10 Days FREE Trial for Pluralsight.

Best Data Science Courses on Datacamp
Best Data Science Courses on Coursera
Best Data Science Courses on Udemy
Best Data Science Courses on Pluralsight
Best Data Science Courses & Microdegrees on Udacity
Best Artificial Intelligence[AI] Courses on Coursera
Best Machine Learning[ML] Courses on Coursera
Best Python Programming Courses on Coursera
Best Artificial Intelligence[AI] Courses on Udemy
Best Python Programming Courses on Udemy

 Important Lists:

Important Lists, Exams & Cutoffs Exams after Graduation PSUs

 Goeduhub:

About Us | Contact Us || Terms & Conditions | Privacy Policy ||  Youtube Channel || Telegram Channel © goeduhub.com Social::   |  | 

 

Free Online Directory

...