int LDR = 1;
int speaker = 10;
int val = 0;
int tones[] = {3830, 3400, 3038, 2864, 2550, 2272, 2028, 1915, 1700, 1519, 1432, 1275, 1136, 1014, 956};
void setup() {
pinMode(LDR, INPUT); // declare the LDR as an INPUT
pinMode(speaker, OUTPUT); // declare the ledPin as an OUTPUT
}
void loop() {
val = analogRead(LDR);
digitalWrite(speaker, HIGH);
delayMicroseconds(tones[val]);
digitalWrite(speaker, LOW);
delayMicroseconds(tones[val]);
}
NEURAL NETWORKS FOR 3D MOTION DETECTION FROM A SEQUENCE OF IMAGE FRAMES
-
NEURAL NETWORKS FOR 3D MOTION DETECTION FROM A SEQUENCE OF IMAGE FRAMES
In video surveillance, video signals from multiple remote locations are
displayed...