Load a image in OpenCV

In order to load a image in opencv, place the image in a folder/in the same folder where you are executing the code. import cv2 import matplotlib.pyplot as plt img=cv2.imread(‘img1.png’,-1) cv2.imshow(‘image’,img) cv2.waitKey() cv2.destroyAllWindows() Details: cv2.imread(filename[, flags]) Parameters: filename – Name of file to be loaded. flags –Flags specifying the color type of a loaded image: CV_LOAD_IMAGE_ANYDEPTH – …

What is Computer Vision

Computer vision is a field of computer science that works on enabling computers to identify and process images in the same way that human vision does, and then provide appropriate output. For this we use Opencv, dlib libraries. These libraries provide an n-dimentional array of digits. Once we get this array we implement algorithms to …

How to start with Python

When it comes to learning an object-oriented programming language, you might consider starting with either Python or Java. While Python can be more user-friendly than Java, as it has a more intuitive coding style, both languages do have their unique advantages for developers and end users. However, if you are just beginning your path towards …

Variables

Variables While a “variable” in algebra really just means one thing–an unknown value–you’ll come across dozens of types of variables in statistics. Some are used more than others. For example, you’ll be much more likely to come across continuous variables than you would dummy variables. Click on a variable name to learn more about that …