OpenCV Tutorials

How to Dynamically Resize Image in OpenCV using Tkinter 0

How to Dynamically Resize Image in OpenCV using Tkinter

Program 1 from tkinter import * import tkinter.simpledialog import cv2 def displayImage(): img=cv2.imread(“D://opencvapp//wildlifeImages//wildlife-tiger.jpg”) cv2.imshow(‘Image Window’,img) def resizeImage(): img = cv2.imread(“D://opencvapp//wildlifeImages//wildlife-tiger.jpg”) x = tkinter.simpledialog.askinteger(“Width”, “Enter Width:”) y = tkinter.simpledialog.askinteger(“Height”, “Enter Height:”) img = cv2.resize(img, (x,...

How to Rotate an Image in OpenCV 0

How to Rotate an Image in OpenCV

Program 1 import cv2 img=cv2.imread(“D://opencvapp//mountain-girl.jpg”) img=cv2.resize(img,(500,500)) #img=cv2.rotate(img,cv2.cv2.ROTATE_90_CLOCKWISE) #img=cv2.rotate(img,cv2.cv2.ROTATE_90_COUNTERCLOCKWISE) img=cv2.rotate(img,cv2.cv2.ROTATE_180) cv2.imwrite(‘newmountain.jpg’,img) cv2.imshow(‘Mountain Image’,img) cv2.waitKey(0) cv2.destroyAllWindows()  

opencv projects 0

30 OpenCV Project Ideas for Beginners

Peek through the lens of innovation as we delve into the exciting world of OpenCV projects. From transforming ordinary images into captivating visual masterpieces to empowering machines with the ability to ‘see,’ these30 OpenCV...

lego brick finder opencv 0

OpenCV Project – LEGO Brick Finder

The LEGO brick finder is an innovative computer vision application designed to identify and locate LEGO bricks within images or real-world scenes. Using advanced color-based detection and image processing techniques, it can distinguish various...

opencv mouse events 0

OpenCV Mouse Events

Unlock the power of interaction in your image processing endeavours with OpenCV’s captivating mouse events! In the digital realm, where pixels come to life, learn how to harness the click, drag, and magic of...

opencv template matching 0

OpenCV Template Matching

Unlock the hidden potential of images with OpenCV’s template matching! In the world of computer vision, the ability to seamlessly find a needle in a haystack of pixels is a superpower. Join us as...

opencv contours 0

Contours in OpenCV

Embark on a visual journey through the enchanting world of OpenCV contours, where the language of shapes comes alive. From delineating objects to characterizing patterns, contours in OpenCV unravel the secrets hidden within images....