Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
p5js-webcam1 [2024/04/14 07:13] – renick | p5js-webcam1 [2024/08/22 00:01] (current) – renick | ||
---|---|---|---|
Line 9: | Line 9: | ||
In this example, we'll update text and the fill color of a rect based on the captured image and the mouse position. You can read the four values under the mouse (R, G, B, and A) next to the " | In this example, we'll update text and the fill color of a rect based on the captured image and the mouse position. You can read the four values under the mouse (R, G, B, and A) next to the " | ||
- | **NOTE: you'll probably need to open these examples in a new tab because of the use of the webcam.** | + | **NOTE: you'll probably need to open these examples in a new tab because of the use of the webcam. |
< | < | ||
Line 35: | Line 35: | ||
===== reducing jitter ===== | ===== reducing jitter ===== | ||
- | That's cool, but there' | + | That's cool, but there' |
+ | |||
+ | We can make the animation look smoother if we use what is sometimes called a moving average. Instead of getting the value at each frame, we'll take the average value over 20 frames, which will make it change less from frame to frame and then look smoother. What we'll do is: | ||
- capture the values of the pixel under the mouse at each frame | - capture the values of the pixel under the mouse at each frame | ||
- | - take the average value for R, G, B, and A over a period of 10 frames | + | - take the average value for R, G, B, and A over a period of 20 frames |
- use the new array of average values as the basis for our mapping | - use the new array of average values as the basis for our mapping | ||
Line 49: | Line 51: | ||
<iframe src=" | <iframe src=" | ||
</ | </ | ||
+ | |||
+ | ===== more on the webcam ===== | ||
+ | |||
+ | This set of videos by Jeff Thompson (http:// | ||
+ | |||
+ | - https:// | ||
+ | - https:// | ||
+ | |||
+ | His code is at this link: https:// | ||
+ | |||
+ | He explains how to get a particular pixel value in these videos: | ||
+ | |||
+ | - (basics) https:// | ||
+ | - (more performant by reading the flat pixel array) https:// | ||
+ | |||
+ | Here's a useful example from Kokyoong Lim for some simple motion detection: | ||
+ | |||
+ | - https:// | ||