Skip to content
Advertisement

Histogram of my cam in real time

Im trying to show the histogram in real time from grayscale of my webcam, the problem is that histogram is not being update and my cam stop until i close histogram’s window. How can i fix this? I want to show the grayscale img from my webcam and its histogram in same time, is possible do that?

JavaScript

Advertisement

Answer

I have been working for a while in the same task. After some time, I have a piece of code that works very good. It displays the camera image in a window and a histogram in other. Since I’m interested in finding colors, I’m working with the “hue” channel of each frame.

JavaScript

The code is based on the code from JohnLinux post (How do I plot a 32-Bin Histogram for a Grayscale Image in Python using OpenCV) and other lines of code come from what I have learnt from Adrian Rosenbrock’s site https://www.pyimagesearch.com/.

Advertisement