-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Report Wrong Code #150
Labels
Comments
Hi, Thank you for the report :) You are correct, I changed mentioned method name and additionally fixed some timing issue present in the build-in motion detector feature. |
sarxos
added a commit
that referenced
this issue
Oct 7, 2013
hii friend ..can you tell me about motion detection using webcam ,which softwares are use and source code |
Hi @shivapant, Here is very simple implementation: Use case examples: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In DetectMotionExample.java
has some wrong point
at line 18
detector.setCheckInterval(100); // one check per 100 ms
should be
detector.setInterval(100); // one check per 100 ms.
I don't know how it happened but I just check on your document and find the way out.
The text was updated successfully, but these errors were encountered: