MMMohammed Muqaffamuddininmuqafam.hashnode.dev·Oct 20, 2023 · 1 min readComputer Vision: Showing Date and time on Video CapturingWe are learning the basics of the Computer Vision: We are capturing the video from the camera and then displaying the Date and time The steps for the Code is: First, we need to import the libraries like cv2 and datetime Then for video capturing tak...00
MMMohammed Muqaffamuddininmuqafam.hashnode.dev·Oct 19, 2023 · 1 min readComputer Vision: Geometric shapes on Image.Now, we are taking images and drawing the geometric shapes on the image. Here we take the Lena image and draw a line on it. command is cv2.line() Steps: First, we need to take an image Take the cv2.line in that gives the image first give starting ...00
MMMohammed Muqaffamuddininmuqafam.hashnode.dev·Oct 19, 2023 · 2 min readComputer Vision: Video Capturing through Camera.We are using the command cv2.VideoCapture(0) Import the necessary OpenCV library with import cv2. Open a connection to the video source (in this case, a webcam) using cv2.VideoCapture. You can specify a different video source by changing the argum...00
MMMohammed Muqaffamuddininmuqafam.hashnode.dev·Oct 18, 2023 · 1 min readComputer Vision: Reading, Writing and showing the Image.First, we need to Read the image, write the image and show the image in OpenCV. cv2.imread("") - command used for reading the image cv2_imshow() - used to show the image cv2.destroyAllWindows - used for clearing the windows. We are using the simple e...00
MMMohammed Muqaffamuddininmuqafam.hashnode.dev·Oct 18, 2023 · 2 min readWhat is Computer VisionWhat is computer vision? Computer vision is a multidisciplinary field of artificial intelligence (AI) and computer science that focuses on enabling computers to interpret and understand visual information from the world, just as humans do with their ...00