Author name: Gajula Siri Chandana

Set Window Title in OpenCV with Python using setWindowTitle() Function

OpenCV (Open Source Computer Vision Library) is a powerful library used for computer vision tasks. It is widely used for image processing, video analysis, object detection, machine learning, etc . In Python, OpenCV provides bindings to the original C++ library, making it easier to use for various computer vision tasks. Using setWindowTitle() cv2.setWindowTitle()  is a …

Set Window Title in OpenCV with Python using setWindowTitle() Function Read More »

Swap two Rows in a NumPy Array in Python

Swapping rows in NumPy array is used for data manipulations and mathematical computations . Swapping Rows using numpy.roll() roll() is method in python numpy module. roll() methods rolls an array elements along the axis that is specified. Syntax : numpy.roll(array,shift,axis=None) Basic example to illustrate swapping rows using roll() method #importing NumPy Module import numpy as …

Swap two Rows in a NumPy Array in Python Read More »

Scroll to Top