OpenCV Python – Bitwise Operations ”; Previous Next Bitwise operations are used in image manipulation and for extracting the essential parts in the image. Following operators are implemented in OpenCV − bitwise_and bitwise_or bitwise_xor bitwise_not Example 1 To demonstrate the use of these operators, two images with filled and empty circles are taken. Following program demonstrates the use of bitwise operators in OpenCV-Python − import cv2 import numpy as np img1 = cv2.imread(”a.png”) img2 = cv2.imread(”b.png”) dest1 = cv2.bitwise_and(img2, img1, mask = None) dest2 = cv2.bitwise_or(img2, img1, mask = None) dest3 = cv2.bitwise_xor(img1, img2, mask = None) cv2.imshow(”A”, img1) cv2.imshow(”B”, img2) cv2.imshow(”AND”, dest1) cv2.imshow(”OR”, dest2) cv2.imshow(”XOR”, dest3) cv2.imshow(”NOT A”, cv2.bitwise_not(img1)) cv2.imshow(”NOT B”, cv2.bitwise_not(img2)) if cv2.waitKey(0) & 0xff == 27: cv2.destroyAllWindows() Output Example 2 In another example involving bitwise operations, the opencv logo is superimposed on another image. Here, we obtain a mask array calling threshold() function on the logo and perform AND operation between them. Similarly, by NOT operation, we get an inverse mask. Also, we get AND with the background image. Following is the program which determines the use of bitwise operations − import cv2 as cv import numpy as np img1 = cv.imread(”lena.jpg”) img2 = cv.imread(”whitelogo.png”) rows,cols,channels = img2.shape roi = img1[0:rows, 0:cols] img2gray = cv.cvtColor(img2,cv.COLOR_BGR2GRAY) ret, mask = cv.threshold(img2gray, 10, 255, cv.THRESH_BINARY) mask_inv = cv.bitwise_not(mask) # Now black-out the area of logo img1_bg = cv.bitwise_and(roi,roi,mask = mask_inv) # Take only region of logo from logo image. img2_fg = cv.bitwise_and(img2,img2,mask = mask) # Put logo in ROI dst = cv.add(img2_fg, img1_bg) img1[0:rows, 0:cols ] = dst cv.imshow(Result,img1) cv.waitKey(0) cv.destroyAllWindows() Output The masked images give following result − Print Page Previous Next Advertisements ”;
Category: opencv Python
OpenCV Python – Histogram
OpenCV Python – Histogram ”; Previous Next Histogram shows the intensity distribution in an image. It plots the pixel values (0 to 255) on X axis and number of pixels on Y axis. By using histogram, one can understand the contrast, brightness and intensity distribution of the specified image. The bins in a histogram represent incremental parts of the values on X axis. In our case, it is the pixel value and the default bin size is one. In OpenCV library, the function cv2.calcHist() function which computes the histogram from the input image. The command for the function is as follows − cv.calcHist(images, channels, mask, histSize, ranges) Parameters The cv2.calcHist() function’s parameters are as follows − images − It is the source image of type uint8 or float32, in square brackets, i.e., “[img]”. channels − It is the index of the channel for which we calculate histogram. For a grayscale image, its value is [0]. For BGR images, you can pass [0], [1] or [2] to calculate the histogram of each channel. mask − Mask image is given as “None” for full image. For a particular region of image, you have to create a mask image for that and give it as a mask. histSize − This represents our BIN count. ranges − Normally, it is [0,256]. Histogram using Matplotlib A histogram plot can be obtained either with the help of Matplotlib’s pyplot.plot() function or by calling Polylines() function from OpenCV library. Example Following program computes histogram for each channel in the image (lena.jpg) and plots the intensity distribution for each channel − import numpy as np import cv2 as cv from matplotlib import pyplot as plt img = cv.imread(”lena.jpg”) color = (”b”,”g”,”r”) for i,col in enumerate(color): hist = cv.calcHist([img],[i],None,[256],[0,256]) plt.plot(hist, color = col) plt.xlim([0,256]) plt.show() Output Print Page Previous Next Advertisements ”;
OpenCV Python – Draw Shapes and Text ”; Previous Next In this chapter, we will learn how to draw shapes and text on images with the help of OpenCV-Python. Let us begin by understanding about drawing shapes on images. Draw Shapes on Images We need to understand the required functions in OpenCV-Python, which help us to draw the shapes on images. Functions The OpenCV-Python package (referred as cv2) contains the following functions to draw the respective shapes. Function Description Command cv2.line() Draws a line segment connecting two points. cv2.line(img, pt1, pt2, color, thickness) cv2.circle() Draws a circle of given radius at given point as center cv2.circle(img, center, radius, color, thickness) cv2.rectangle Draws a rectangle with given points as top-left and bottom-right. cv2.rectangle(img, pt1, pt2, color, thickness) cv2.ellipse() Draws a simple or thick elliptic arc or fills an ellipse sector. cv2.ellipse(img, center, axes, angle, startAngle, endAngle, color, thickness) Parameters The common parameters to the above functions are as follows − Sr.No. Function & Description 1 img The image where you want to draw the shapes 2 color Color of the shape. for BGR, pass it as a tuple. For grayscale, just pass the scalar value. 3 thickness Thickness of the line or circle etc. If -1 is passed for closed figures like circles, it will fill the shape. 4 lineType Type of line, whether 8-connected, anti-aliased line etc. Example Following example shows how the shapes are drawn on top of an image. The program for the same is given below − import numpy as np import cv2 img = cv2.imread(”LENA.JPG”,1) cv2.line(img,(20,400),(400,20),(255,255,255),3) cv2.rectangle(img,(200,100),(400,400),(0,255,0),5) cv2.circle(img,(80,80), 55, (255,255,0), -1) cv2.ellipse(img, (300,425), (80, 20), 5, 0, 360, (0,0,255), -1) cv2.imshow(”image”,img) cv2.waitKey(0) cv2.destroyAllWindows() Output Draw Text The cv2.putText() function is provided to write a text on the image. The command for the same is as follows − img, text, org, fontFace, fontScale, color, thickness) Fonts OpenCV supports the following fonts − Font Name Font Size FONT_HERSHEY_SIMPLEX 0 FONT_HERSHEY_PLAIN 1 FONT_HERSHEY_DUPLEX 2 FONT_HERSHEY_COMPLEX 3 FONT_HERSHEY_TRIPLEX 4 FONT_HERSHEY_COMPLEX_SMALL 5 FONT_HERSHEY_SCRIPT_SIMPLEX 6 FONT_HERSHEY_SCRIPT_COMPLEX 7 FONT_ITALIC 16 Example Following program adds a text caption to a photograph showing Lionel Messi, the famous footballer. import numpy as np import cv2 img = cv2.imread(”messi.JPG”,1) txt=”Lionel Messi” font = cv2.FONT_HERSHEY_SIMPLEX cv2.putText(img,txt,(10,100), font, 2,(255,255,255),2,cv2.LINE_AA) cv2.imshow(”image”,img) cv2.waitKey(0) cv2.destroyAllWindows() Output Print Page Previous Next Advertisements ”;
OpenCV Python – Image Threshold ”; Previous Next In digital image processing, the thresholding is a process of creating a binary image based on a threshold value of pixel intensity. Thresholding process separates the foreground pixels from background pixels. OpenCV provides functions to perform simple, adaptive and Otsu’s thresholding. In simple thresholding, all pixels with value less than threshold are set to zero, rest to the maximum pixel value. This is the simplest form of thresholding. The cv2.threshold() function has the following definition. cv2.threshold((src, thresh, maxval, type, dst) Parameters The parameters for the image thresholding are as follows − Src: Input array. Dst: Output array of same size. Thresh: Threshold value. Maxval: Maximum value. Type: Thresholding type. Types of Thresholding Other types of thresholding are enumerated as below − Sr.No Type & Function 1 cv.THRESH_BINARY dst(x,y) = maxval if src(x,y)>thresh 0 otherwise 2 cv.THRESH_BINARY_INV dst(x,y)=0 if src(x,y)>thresh maxval otherwise 3 cv.THRESH_TRUNC dst(x,y)=threshold if src(x,y)>thresh src(x,y) otherwise 4 cv.THRESH_TOZERO dst(x,y)=src(x,y) if src(x,y)>thresh 0 otherwise 5 cv.THRESH_TOZERO_INV dst(x,y)=0 if src(x,y)>thresh src(x,y)otherwise These threshold types result in operation on input image according to following diagram − The threshold() function returns threshold used and threshold image. Following program produces a binary image from the original with a gradient of grey values from 255 to 0 by setting a threshold to 127. Example Original and resultant threshold binary images are plotted side by side using Matplotlib library. import cv2 as cv import numpy as np from matplotlib import pyplot as plt img = cv.imread(”gradient.png”,0) ret,img1 = cv.threshold(img,127,255,cv.THRESH_BINARY) plt.subplot(2,3,1),plt.imshow(img,”gray”,vmin=0,vmax=255) plt.title(”Original”) plt.subplot(2,3,2),plt.imshow(img1,”gray”,vmin=0,vmax=255) plt.title(”Binary”) plt.show() Output The adaptive thresholding determines the threshold for a pixel based on a small region around it. So, different thresholds for different regions of the same image are obtained. This gives better results for images with varying illumination. The cv2.adaptiveThreshold() method takes following input arguments − cv.adaptiveThreshold( src, maxValue, adaptiveMethod, thresholdType, blockSize, C[, dst] ) The adaptiveMethod has following enumerated values − cv.ADAPTIVE_THRESH_MEAN_C − The threshold value is the mean of the neighbourhood area minus the constant C. cv.ADAPTIVE_THRESH_GAUSSIAN_C − The threshold value is a Gaussianweighted sum of the neighbourhood values minus the constant C. Example In the example below, the original image (messi.jpg is applied with mean and Gaussian adaptive thresholding. import cv2 as cv import numpy as np from matplotlib import pyplot as plt img = cv.imread(”messi.jpg”,0) img = cv.medianBlur(img,5) th1 = cv.adaptiveThreshold(img,255,cv.ADAPTIVE_THRESH_MEAN_C, cv.THRESH_BINARY,11,2) th2 = cv.adaptiveThreshold(img,255,cv.ADAPTIVE_THRESH_GAUSSIAN_C, cv.THRESH_BINARY,11,2) titles = [”Original”, ”Mean Thresholding”, ”Gaussian Thresholding”] images = [img, th1, th2] for i in range(3): plt.subplot(2,2,i+1),plt.imshow(images[i],”gray”) plt.title(titles[i]) plt.xticks([]),plt.yticks([]) plt.show() Output Original as well as adaptive threshold binary images are plotted by using matplotlib as shown below − Example OTSU algorithm determines the threshold value automatically from the image histogram. We need to pass the cv.THRES_OTSU flag in addition to the THRESH-BINARY flag. import cv2 as cv import numpy as np from matplotlib import pyplot as plt img = cv.imread(”messi.jpg”,0) # global thresholding ret1,img1 = cv.threshold(img,127,255,cv.THRESH_BINARY) # Otsu”s thresholding ret2,img2 = cv.threshold(img,0,255,cv.THRESH_BINARY+cv.THRESH_OTSU) plt.subplot(2,2,1),plt.imshow(img,”gray”,vmin=0,vmax=255) plt.title(”Original”) plt.subplot(2,2,2),plt.imshow(img1,”gray”) plt.title(”Binary”) plt.subplot(2,2,3),plt.imshow(img2,”gray”) plt.title(”OTSU”) plt.show() Output The matplotlib’s plot result is as follows − Print Page Previous Next Advertisements ”;
OpenCV Python – Overview
OpenCV Python – Overview ”; Previous Next OpenCV stands for Open Source Computer Vision and is a library of functions which is useful in real time computer vision application programming. The term Computer vision is used for a subject of performing the analysis of digital images and videos using a computer program. Computer vision is an important constituent of modern disciplines such as artificial intelligence and machine learning. Originally developed by Intel, OpenCV is a cross platform library written in C++ but also has a C Interface Wrappers for OpenCV which have been developed for many other programming languages such as Java and Python. In this tutorial, functionality of OpenCV’s Python library will be described. OpenCV-Python OpenCV-Python is a Python wrapper around C++ implementation of OpenCV library. It makes use of NumPy library for numerical operations and is a rapid prototyping tool for computer vision problems. OpenCV-Python is a cross-platform library, available for use on all Operating System (OS) platforms including, Windows, Linux, MacOS and Android. OpenCV also supports the Graphics Processing Unit (GPU) acceleration. This tutorial is designed for the computer science students and professionals who wish to gain expertise in the field of computer vision applications. Prior knowledge of Python and NumPy library is essential to understand the functionality of OpenCV-Python. Print Page Previous Next Advertisements ”;