-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates to move the global variables to it's own file
git-svn-id: https://android-motion-detection.googlecode.com/svn/trunk@15 996b93ed-3e4d-4b21-1044-74bd19560d1d
- Loading branch information
1 parent
50fd093
commit cf986f1
Showing
4 changed files
with
32 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.jwetherell.motion_detection; | ||
|
||
public class Globals { | ||
public static boolean USE_RGB = false; | ||
public static boolean USE_LUMA = true; | ||
public static boolean USE_STATE = false; | ||
public static boolean SAVE_PREVIOUS = false; | ||
public static boolean SAVE_ORIGINAL = false; | ||
public static boolean SAVE_CHANGES = true; | ||
public static int PICTURE_DELAY = 10000; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters