Skip to content

Tag: opencv

Python opencv/cvzone – UnboundLocalError

I am trying to make a ar mouse (camera vould detect your hand and than your finger vould be the mouse). But when checking which fingers are up I get an error. When making this program I followed this tutorial: https://www.youtube.com/watch?v=8gPONnGIPgw&t=332s. When doing that I made one thing different w…

Replace cv2.warpPerspective for big images

I use python OpenCV to register images, and once I’ve found the homography matrix H, I use cv2.warpPerspective to compute final the transformation. However, it seems that cv2.warpPerspective is limited to short encoding for performance purposes, see here. I didn’t some test, and indeed the limit o…

How to change pixel value based on a condition

The image is 1920 by 1080. How can I change the value of a pixel when a channel value is higher than the other? Here is what I did. Is there a more efficient way than iterating on each pixel? Answer Don’t use any loop for this, use ndarray capability and logical indexing. What you want to achieve is som…