Skip to content

Commit

Permalink
Version 0.7:
Browse files Browse the repository at this point in the history
Motion Recognition: Define virtual buttons (regions of interest) to detect motion
  • Loading branch information
pablogm committed Sep 19, 2015
1 parent b3c4d87 commit fc2f2a9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
Binary file modified HelloVisualSearch/VSAumentia/VSAumentia.aar
Binary file not shown.
2 changes: 1 addition & 1 deletion HelloVisualSearch/app/build.gradle
Expand Up @@ -48,5 +48,5 @@ dependencies {
compile project(':VSAumentia')

// Option 2
//compile 'VisualSearchSDK:visualsearchsdk:0.6.0'
//compile 'VisualSearchSDK:visualsearchsdk:0.7.0'
}
Expand Up @@ -79,7 +79,9 @@ protected void onCreate(Bundle savedInstanceState)
frame = (FrameLayout) findViewById(R.id.cameraFrameId);

// Init Visual Search engine
vsAumentia = new VSAumentia(this, API_KEY, VSAumentia.SCREEN_ORIENTATION_PORTRAIT, PreviewSizeWidth, PreviewSizeHeight, true, ImageFormat.NV21, frame);
vsAumentia = VSAumentia.getmInstance();

vsAumentia.init(this, API_KEY, VSAumentia.SCREEN_ORIENTATION_PORTRAIT, PreviewSizeWidth, PreviewSizeHeight, true, ImageFormat.NV21, frame, VSAumentia.VISUAL_SEARCH_ENGINE);

// Set mathing type ( QR codes and Images )
vsAumentia.setMatchingType(VSAumentia.IMAGE_QR_MATCHER_MODE);
Expand Down

0 comments on commit fc2f2a9

Please sign in to comment.