Aug 25, 2021Practical Aspects of OpenCV1.Angle Finder Code import cv2 import math path = 'test.jpg' img = cv2.imread(path) pointsList = [] def mousePoints(event,x,y,flags,params): if event == cv2.EVENT_LBUTTONDOWN: size = len(pointsList) if size != 0 and size % 3 != 0…Opencv4 min readOpencv4 min read
Aug 17, 2021Basics of OpenCVOpenCV (Open Source Computer Vision Library) is an open source computer vision and machine learning software library. OpenCV was built to provide a common infrastructure for computer vision applications and to accelerate the use of machine perception in the commercial products Image processing is a form of signal processing in…Opencv5 min readOpencv5 min read
Jun 9, 2021Interview Preparation Python-Part1Usage of __name__ in python # Suppose we have 2 python files in same directory namely first_module.py,second_module.py #Inside first_module.py #Inside second_module.pyPython4 min readPython4 min read