HandWave


Source link: https://github.com/kritts/HandWave

HandWave

========

An Android library that allows developers to add touch free capabilities to their mobile applications.

Overview

HandWave is a library that allows developers to enable touch-free interactions in their apps. HandWave uses the built-in, forward-facing camera on a device to recognize users’ in-air gestures. The API provides developers with access to a variety of touch-free gestures which invoke callback functions when detected.

Example apps using the HandWave library can be found [here] ( https://github.com/kritts/HandWave-Sample-Apps). Details about how to use the library in your code are included below.

A video demonstrating capabilities of the library can be found here:

Setting up the HandWave library

I primarily use Eclipse for development therefore the instructions below are for Eclipse. I plan to add instructions for Android Studio later.

  1. Clone the repo: git clone https://github.com/kritts/HandWave.git
  2. Import TouchFreeLibrary as a library
    1. Click File | Import | Android | Existing Android Code into Workspace
    2. Select the TouchFreeLibrary project
    3. Click Finish
    4. Right-click on TouchFreeLibrary, then click Properties
    5. In the project properties window, click the Android section
    6. Check the Is Library checkbox
    7. Add a reference to the TouchFreeLibrary project (click Remove to remove any broken references, then click Add to add the correct one)
    8. You will also need to need to add OpenCV as a library. Detailed instructions on how to do so can be found here.
      1. It's up to you which version of OpenCV you'd like to use (all of the recent versions should work just fine), but the 2.4.3 is the version I used during development.

Using the HandWave library

There are a few different ways in which the library can be used. Complete examples of each can be found here.

Setting up an activity

You will need to initialize the OpenCV library in your code. To do this, you can add the following lines of code: I'd recommend adding this line in onCreate: OpenCVLoader.initAsync(OpenCVLoader.OPENCV_VERSION_2_4_3, this, mLoaderCallback);

And then the following lines of code elsewhere:

 /** OpenCV library initialization. */  private BaseLoaderCallback mLoaderCallback = new BaseLoaderCallback(this) {

@Override
public void onManagerConnected(int status) {

 switch (status) {

  case LoaderCallbackInterface.SUCCESS: {

 mOpenCVInitiated = true;

 CameraGestureSensor.loadLibrary();

 mGestureSensor.start();
  // your main gesture sensor object 

}
 break;
  default:
  {

super.onManagerConnected(status);

  
}
 break;
 
}

  
}
  
}
; 

For your app to use the front facing camera, you need to add the follow permission to your application's AndroidManifest file:

<uses-permission android:name="android.permission.CAMERA" />

For an activity to detect left, right, up, and down gestures, the activity needs to implement a CameraGestureSensor listener. This can simply be done as follows:
public class MainActivity extends Activity implements CameraGestureSensor.Listener {

When you implement a CameraGestureSensor listener, there are 4 methods that must be implemented. The methods are: onGestureUp, onGestureDown, onGestureRight, and onGestureLeft.

As you may expect, those methods are called when their corresponding gestures are detected.

HandWave also supports touch-free clicks. Clicks are generated by hovering a hand over the front-facing camera. This functionality can be most easily seen in the video in the overview.

For an activity to detect clicks, it must implement a ClickSensor listener. As you may expect, this can be done as follows:

public class MainActivity extends Activity implements ClickSensor.Listener {

When you implement a ClickSensor, there is one method you must implement: onSensorClick.

Implementing a CameraGestureSensor

Creating an instance of CameraGestureSensor can be done as follows: CameraGestureSensor mGestureSensor = new CameraGestureSensor(this);

For your activity to be a gesture or click listener (which I'd recommend), you should include the following lines of code: mGestureSensor.addGestureListener(this); or mGestureSensor.addClickListener(this);

To start the instance of the CameraGestureSensor, use the start method: mGestureSensor.start(); . I'd recommend doing this in onResume. To stop the instance of the CameraGestureSensor, use the stop method: mGestureSensor.stop(); . I'd recommend doing this in onPause.

Acknowledgements

The code for this library was initially created by Leeran Raphaely. It has since been modified to fix bugs in the code and improve the overall speed of the algorithms.
The changes were made by Krittika D'Silva and Nicola Dell.

License

Copyright 2014 Krittika D'Silva  Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License. You may obtain a copy of the License at
  http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 

Resources

FireLayout is a CoordinatorLayout linked to its reference on your Firebase Real-Time Database. You can generate your own layout through firebase console.

WaveFileGenerator class let's you generate wave files for specified frequency in android.

Show you connection status view.

Android busybox library.

A RecyclerView Adapter which allows you to have an Infinite scrolling list in your apps. This library offers you a custom adapter to use with any recycler view. You get a callback when the user is about to reach the bottom (or top, depending on your configuration), of the list, which you can use to load more data. You can also customize what the loading view at the bottom of the list looks like.

StayWoke essentially has two features:

  • Keep the screen awake while on specified activities using StayWoke.init(...)
  • Wake up the screen as soon as your app gets deployed on to the phone using WakeUp.init(...)

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes