• Stars
    star
    100
  • Rank 331,690 (Top 7 %)
  • Language
    Java
  • License
    MIT License
  • Created about 8 years ago
  • Updated 11 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Image detection cordova plugin

not-maintenace

No Maintenance Intended


Image Detection Plugin (Android & iOS)

This plugin allows the application to detect if an inputed image target is visible, or not, by matching the image features with the device camera features using OpenCV (v3.1. on Android, v2.4.13 on iOS) It also presents the device camera preview in the background.

[email protected]

The branch [email protected] should work using this version.

Changes

  • Added setting multiple patterns and loop functionality to detect which is visible

Note (view mode)

The plugin is aimed to work in portrait mode, should also work in landscape but no guarantees.

Install

To install the plugin in your current Cordova project run outside you project root

git clone https://github.com/Cloudoki/ImageDetectionCordovaPlugin.git
cd <your-project-root>
cordova plugin add ../ImageDetectionCordovaPlugin

Android

  • The plugin aims to be used with Android API >= 16 (4.1 Jelly Bean).

IOS

  • The plugin aims to be used with iOS version >= 7.
  • Important! Go into src/ios folder and extract opencv2.framework from the zip file into the same folder.
  • Since iOS 10, <key>NSCameraUsageDescription</key> is required in the project Info.plist of any app that wants to use Camera.

The plugin should add this automatically but in case this does not happen to add it, just open the project in XCode, go to the Info tab and add the NSCameraUsageDescription key with a string value that explain why your app need an access to the camera.

Note

In config.xml add Android and iOS target preference

<platform name="android">
    <preference name="android-minSdkVersion" value="16" />
</platform>
<platform name="ios">
    <preference name="target-device" value="handset"/>
    <preference name="deployment-target" value="7.0"/>
</platform>

And don't forget to set the background to be transparent or the preview may not shown up. Again in config.xml add the following preference.

<preference name="backgroundColor" value="0x00000000" />

Usage

The plugin offers the functions startProcessing, setDetectionTimeout, isDetecting and setPattern.

startProcessing - the plugin will process the video frames captured by the camera if the inputed argument is true, if the argument is false no frames will be processed. Calls on success if the argument is set and on error if no value set.

Note: the plugins start with this option true.

startProcessing(true or false, successCallback, errorCallback);

isDetecting - the plugin will callback on success function if detecting the pattern or on error function if it's not. The response will also say what index of the patterns is being detected, the detection rect coordinates and the center/centroid in a JSON object. Just parse it using JSON.parse().

isDetecting(successCallback, errorCallback);
// JSON RESPONSE EXAMPLE
{
  "message": "pattern detected",
  "index": 0,
  "coords": {
    "1": { "x": 170.839401, "y": 181.510239 },
    "2": { "x": 293.745239, "y": 180.525345 },
    "3": { "x": 301.409363, "y": 352.518280 },
    "4": { "x": 171.494492, "y": 360.808655 }
  },
  "center": {
    "x": 234.956223, "y": 268.231842
  }
}

setDetectionTimeout - this function will set a timeout (in seconds) in which the processing of the frames will not occur. Calls on success if the argument is set and on error if no value set.

setDetectionTimeout(timeout, successCallback, errorCallback);

setPatterns - sets the patterns targets to be detected. Calls on success if the patterns are set and on error if one or more patterns fail to be set. The input patterns must be an array of base64 image string.

setPatterns([base64image, ...], successCallback, errorCallback);

Usage example

var imgDetectionPlugin = window.plugins.ImageDetectionPlugin || new ImageDetectionPlugin();

imgDetectionPlugin.startProcessing(true, function(success){console.log(success);}, function(error){console.log(error);});

imgDetectionPlugin.isDetecting(function(success){
  console.log(success);
  var resp = JSON.parse(success);
  console.log(resp.index, "image detected - ", indexes[resp.index], resp.coords, resp.center);
}, function(error){console.log(error);});

function setAllPatterns(patterns) {
  imgDetectionPlugin.setPatterns(patterns, function(success){console.log(success);}, function(error){console.log(error);});
}

var loadAllImg = 0;
var patternsHolder = [];
var indexes = {};
var limit = 3;

function ToDataURL (self) {
  var canvas = document.createElement('canvas');
  var ctx = canvas.getContext('2d');
  var dataURL;
  canvas.height = self.height;
  canvas.width = self.width;
  ctx.drawImage(self, 0, 0);
  dataURL = canvas.toDataURL("image/jpeg", 0.8);
  patternsHolder.push(dataURL);
  indexes[loadAllImg] = self.src.substr(self.src.lastIndexOf("/") + 1);
  loadAllImg += 1;
  console.log("!!!", loadAllImg, indexes);
  if(loadAllImg == limit){
    console.log("patterns set", patternsHolder);
    setAllPatterns(patternsHolder);
  }
  canvas = null;
}

var img = new Image();
img.crossOrigin = "Anonymous";
img.onload = function(){
  ToDataURL(this)
};
img.src = "img/patterns/target1.jpg";

var img = new Image();
img.crossOrigin = "Anonymous";
img.onload = function(){
  ToDataURL(this)
};
img.src = "img/patterns/target2.jpg";

var img = new Image();
img.crossOrigin = "Anonymous";
img.onload = function(){
  ToDataURL(this)
};
img.src = "img/patterns/target3.jpg";

imgDetectionPlugin.setDetectionTimeout(2, function(success){console.log(success);}, function(error){console.log(error);});

Demo Project

ImageDetectionDemoApp

More Repositories

1

mp4-to-mpegdash

Script to convert a MP4 file into MPEG-DASH
Prolog
23
star
2

android-google-cloud-speech-api

Android+Google Cloud Speech API
Protocol Buffer
12
star
3

ghostsheet

Ghost empty theme hooked with grunt, less, an other goodies
Handlebars
11
star
4

elastic-event-js

Event logging using ElasticSearch
JavaScript
10
star
5

appdoki-be

Backend for our own company application. Beers involved.
Go
7
star
6

iso-language-codes

Node util for ISO Language Codes (639-1 and 693-2) and IETF Language Types
JavaScript
6
star
7

react-redux-donderstarter

React/Redux Donderstarter
JavaScript
5
star
8

casperstarter

A grunt + less version of the casper theme for Ghost
CSS
5
star
9

api-node-swagger

API Layer - Node.JS - Swagger
JavaScript
4
star
10

backbone-i18n

Content internalization and localization (i18n) with Backbone and Mustache
JavaScript
3
star
11

appdoki-rn

Hackfridays project to test and learn mobile development with react native
TypeScript
3
star
12

Oauth2-stack

A complete Ouath2 Server and Views stack
PHP
2
star
13

backbone-donderstarter

Backbone boilerplate with oauth, mustache, gulp & bower
JavaScript
2
star
14

node-rethinkdb-echo

Pretty simple Node.js application to demonstrate the RethinkDB change feeds functionality.
JavaScript
2
star
15

hyper-ui-donderstarter

CSS
1
star
16

wustache

Wordpress Mustache implementation
JavaScript
1
star
17

openapi-style-guide

Cloudoki's OpenAPI style guide in the form of a spectral ruleset file
1
star
18

scrum-team-toolbelt

Document examples for the article called "A day in the life of a PO"
1
star
19

Hackbox

Vagrant box to base hackathons on
Shell
1
star
20

gulp-donderstarter

Base for static front-end development using gulp, sass and bower
JavaScript
1
star
21

node-learn-rethinkdb

Getting started with node and RethinkDB
JavaScript
1
star
22

MuchVote-site

HTML
1
star