OpenCV
- 09 August
Python | cv2 imshow() Method
In this tutorial, we will see how to display an image as an output using python by the use of open-cv which is exist as cv2 (computer vision) library. We can use imshow() method of cv2 library to display an image in a window. In order to use cv2 library, we need to import cv2 […]
- 09 August
Python | cv2 imwrite() Method
In this tutorial, we will see how to save an image in your own system using python by using open-cv which exists as cv2 (computer vision) library. You can use imwrite() method of cv2 library to save an image on your system. To use cv2 library, you need to import cv2 library using import statement. […]
- 15 May
Python| cv2 resize() Method
In this tutorial, we will see how to resize an image in python programming language using open-cv which is exist as cv2 (computer vision) library in python. You can use resize() method of cv2 library to resize an image. In order to use cv2 library, you need to import cv2 library using import statement. Resizing […]