For further actions, you may consider blocking this person and/or reporting abuse
Introducing Qodo Gen 1.0: Transform Your Workflow with Agentic AI
Rather than just generating snippets, our agents understand your entire project context, can make decisions, use tools, and carry out tasks autonomously.
Read next

Unveiling Mozilla Public License 2.0: A Game-Changer in Open Source Licensing
Zhang Wei -

Unveiling the GNU Lesser General Public License v3: A Deep Dive
ashu-commits -

Unveiling Sun Public License 1.0: A Deep Dive into Fair Code Licensing
Vitali Sorenko -

Exploring the Enduring Legacy of the BSD 3-Clause License
Ahmend Riss -
Top comments (2)
these days i also play with the pi, controlling a servo motor. i did not have a usb cam nor the camera module, but just today i have build camera control. running node.js on the pi to move the motor And host an express server.
in a simple html file, i made an app, capturing video from the pc or phone and send move commands to the pi.
all the video processing now does not happen on the Pi, is now basically free for the Pi.
but i did not think that video processing would be a big issue, as the Pi has a 4core cpu and plenty of RAM for processing a picture.
I would worry more if i can capture pictures with manual camera settings.
can you share some more of your experience and ideas?
Okay sure. So what I am doing is, I am capturing video and then detecting face into a particular frame and then according to the face landmark I am doing some arithmetic operation and then finally displaying status according to the result of the operation. So now for each frame it calling several methods of face detected. Now what my observation is,in case of normal face detection using haar cascade classifier it's working properly with a very good fps, which is expected but when I am passing the image through multiple methods to get the status then the fps is dropping too much. Some time it's 1frame per 3sec.
To get more detail about the project please follow my twitter account @srideep_kar I am very active there so I can interact quickly. Thanks.