Skip to content

Commit aa3fe0d

Browse files
author
KJ Lawrence
committed
Initial commit of node-openalpr
1 parent 5861d32 commit aa3fe0d

File tree

181 files changed

+7543
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

181 files changed

+7543
-0
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
openalpr
2+
node_modules
3+
build
4+
!lib/*
5+
!release/**
6+
!openalpr_runtime/**

.npmignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.gitignore
2+
*~
3+
.settings
4+
.c9*

ChangeLog

Whitespace-only changes.

Gruntfile.js

+75
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
module.exports = function(grunt) {
2+
grunt.initConfig({
3+
gyp: {
4+
ia32: {
5+
command: 'rebuild',
6+
options: {
7+
arch: 'ia32'
8+
}
9+
},
10+
x64: {
11+
command: 'rebuild',
12+
options: {
13+
arch: 'x64'
14+
}
15+
}
16+
},
17+
"nw-gyp": {
18+
ia32: {
19+
command: 'rebuild',
20+
options: {
21+
arch: 'ia32'
22+
}
23+
},
24+
x64: {
25+
command: 'rebuild',
26+
options: {
27+
arch: 'x64'
28+
}
29+
}
30+
},
31+
copy: {
32+
ia32: {
33+
files: [{src: 'build/Release/node_printer.node', dest: 'lib/node_printer_' + process.platform + '_ia32.node'}]
34+
},
35+
x64: {
36+
files: [{src: 'build/Release/node_printer.node', dest: 'lib/node_printer_' + process.platform + '_x64.node'}]
37+
}
38+
}
39+
});
40+
41+
grunt.loadNpmTasks('grunt-contrib-jshint');
42+
grunt.loadNpmTasks('grunt-node-gyp');
43+
grunt.loadNpmTasks('grunt-nw-gyp');
44+
grunt.loadNpmTasks('grunt-contrib-copy');
45+
46+
grunt.registerTask('build-nw-ia32', [
47+
'nw-gyp:ia32',
48+
'copy:ia32'
49+
]);
50+
51+
grunt.registerTask('build-ia32', [
52+
'gyp:ia32',
53+
'copy:ia32'
54+
]);
55+
56+
grunt.registerTask('build-x64', [
57+
'gyp:x64',
58+
'copy:x64'
59+
]);
60+
61+
grunt.registerTask('build-nw-x64', [
62+
'nw-gyp:x64',
63+
'copy:x64'
64+
]);
65+
66+
grunt.registerTask('build', [
67+
'build-ia32',
68+
'build-x64'
69+
]);
70+
71+
grunt.registerTask('build-nw', [
72+
'build-nw-ia32',
73+
'build-nw-x64'
74+
]);
75+
}

README.md

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
node-openalpr
2+
============
3+
4+
This package binds OpenALPR with Node.js
5+
6+
# Installation and Example
7+
8+
Use npm to get the node-openalpr package. We'll attempt to use node-pre-gyp to compile from source, but if
9+
that's not possible we'll fallback to precompiled binaries.
10+
11+
```npm install node-openalpr```
12+
13+
### Example
14+
15+
```javascript
16+
var openalpr = require ("node-openalpr");
17+
18+
function identify (id, path) {
19+
console.log (openalpr.IdentifyLicense (path, function (error, output) {
20+
console.log (id +" "+ output.processing_time_ms);
21+
22+
if (id == 349) {
23+
console.log (openalpr.Stop ());
24+
}
25+
}));
26+
}
27+
28+
openalpr.Start ();
29+
openalpr.GetVersion ();
30+
31+
for (var i = 0; i < 350; i++) {
32+
identify (i, "lp.jpg");
33+
}
34+
```
35+
36+
### Methods
37+
38+
This is a breakdown of all of the methods available for node-openalpr. Start needs to be called before any other method.
39+
40+
* `openalpr.Start ([config, [runtime, [count, [start_queue]]]])` - Initializes OpenALPR with default settings
41+
* config - Path to configuration file. On Windows defaults to the config file in node-openalpr directory, on Linux defaults to openalpr installation
42+
* runtime - Path to runtime data. On Windows defaults to "openalpr_runtime" folder in node-openalpr directory, on Linux defaults to openalpr installation
43+
* count - Number of concurrent OpenALPR processes to run - defaults to CPU core count
44+
* start_queue - Auto start queue monitoring thread - defaults to true
45+
* `openalpr.Stop ()` - Stops the OpenALPR processes and clears out any queued images
46+
* `openalpr.StartQueue ()` - Starts the OpenALPR queue monitoring thread (normally started automatically after calling Start ())
47+
* `openalpr.StopQueue ()` - Stops the OpenALPR queue monitoring thread
48+
* `openalpr.queueLoop ()` - Method used in checking queue - can be called manually if start_queue is false for finer control
49+
* `openalpr.IdentifyLicense (path, options/callback[, callback])` - Begins the process of identifying a license from the given image
50+
* path - Path to image - if image does not exist an exception will be thrown
51+
* callback/options - Additional options for the image or a callback
52+
* options.state (string) - State ("oh") license plates are in for additional validation
53+
* options.prewarp (string) - Prewarp configuration information
54+
* options.detectRegion (boolean) - Use detect region functionality of OpenALPR? (slower)
55+
* callback - Callback with results: function (errors, output)
56+
* `openalpr.GetVersion ()` - Get the version of OpenALPR currently being run against
57+
58+
# How to Compile
59+
60+
0. [Download and install io.js v3.0.0+](https://iojs.org/en/index.html)
61+
0. [Download and install git](https://git-scm.com/downloads)
62+
63+
#### Windows
64+
65+
0. [Download and install Visual Studio 2013/2015](https://www.visualstudio.com/)
66+
0. Run PowerShell ISE as an administrator and execute: Set-ExecutionPolicy RemoteSigned
67+
0. Run openalpr-install.ps1
68+
0. Take output from openalpr/windows/build/dist and put into "lib" and "release/win32" folder in node-openalpr
69+
0. Run npm install
70+
71+
#### Linux
72+
73+
0. Run openalpr-install.sh
74+
0. Run npm install

binding.gyp

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
'targets': [
3+
{
4+
'target_name': '<(module_name)',
5+
'sources': [
6+
"src/node_openalpr.cc"
7+
],
8+
'include_dirs': [
9+
"<!(node -e \"require('nan')\")",
10+
"includes/",
11+
"lib/"
12+
],
13+
'conditions': [
14+
['OS=="win"', {
15+
'libraries': [ '<!@(["python", "tools/getSourceFiles.py", "lib", "lib"])' ],
16+
'dll_files': [ '<!@(["python", "tools/getSourceFiles.py", "lib", "dll"])' ],
17+
'msvs_settings': {
18+
'VCCLCompilerTool': {
19+
'AdditionalOptions': [
20+
'/GR',
21+
'/MD',
22+
'/EHsc'
23+
]
24+
}
25+
}
26+
}],
27+
['OS!="win"', {
28+
'libraries': [ "/usr/lib/libopenalpr.so" ]
29+
}]
30+
]
31+
},
32+
{
33+
"target_name": "action_after_build",
34+
"type": "none",
35+
"dependencies": [ "<(module_name)" ],
36+
"copies": [
37+
{
38+
"files": [ "<(PRODUCT_DIR)/<(module_name).node" ],
39+
"destination": "<(module_path)"
40+
}
41+
]
42+
}
43+
]
44+
}

includes/TRexpp.h

+97
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
#ifndef _TREXPP_H_
2+
#define _TREXPP_H_
3+
/***************************************************************
4+
T-Rex a tiny regular expression library
5+
6+
Copyright (C) 2003-2004 Alberto Demichelis
7+
8+
This software is provided 'as-is', without any express
9+
or implied warranty. In no event will the authors be held
10+
liable for any damages arising from the use of this software.
11+
12+
Permission is granted to anyone to use this software for
13+
any purpose, including commercial applications, and to alter
14+
it and redistribute it freely, subject to the following restrictions:
15+
16+
1. The origin of this software must not be misrepresented;
17+
you must not claim that you wrote the original software.
18+
If you use this software in a product, an acknowledgment
19+
in the product documentation would be appreciated but
20+
is not required.
21+
22+
2. Altered source versions must be plainly marked as such,
23+
and must not be misrepresented as being the original software.
24+
25+
3. This notice may not be removed or altered from any
26+
source distribution.
27+
28+
****************************************************************/
29+
30+
extern "C" {
31+
#include "trex.h"
32+
}
33+
34+
struct TRexParseException
35+
{
36+
TRexParseException(const TRexChar *c):desc(c) {} const TRexChar *desc;
37+
};
38+
39+
class TRexpp
40+
{
41+
public:
42+
TRexpp()
43+
{
44+
_exp = (TRex *)0;
45+
}
46+
~TRexpp()
47+
{
48+
CleanUp();
49+
}
50+
// compiles a regular expression
51+
void Compile(const TRexChar *pattern)
52+
{
53+
const TRexChar *error;
54+
CleanUp();
55+
if(!(_exp = trex_compile(pattern,&error)))
56+
throw TRexParseException(error);
57+
}
58+
// return true if the given text match the expression
59+
bool Match(const TRexChar* text)
60+
{
61+
return _exp?(trex_match(_exp,text) != 0):false;
62+
}
63+
// Searches for the first match of the expression in a zero terminated string
64+
bool Search(const TRexChar* text, const TRexChar** out_begin, const TRexChar** out_end)
65+
{
66+
return _exp?(trex_search(_exp,text,out_begin,out_end) != 0):false;
67+
}
68+
// Searches for the first match of the expression in a string sarting at text_begin and ending at text_end
69+
bool SearchRange(const TRexChar* text_begin,const TRexChar* text_end,const TRexChar** out_begin, const TRexChar** out_end)
70+
{
71+
return _exp?(trex_searchrange(_exp,text_begin,text_end,out_begin,out_end) != 0):false;
72+
}
73+
bool GetSubExp(int n, const TRexChar** out_begin, int *out_len)
74+
{
75+
TRexMatch match;
76+
TRexBool res = _exp?(trex_getsubexp(_exp,n,&match)):TRex_False;
77+
if(res)
78+
{
79+
*out_begin = match.begin;
80+
*out_len = match.len;
81+
return true;
82+
}
83+
return false;
84+
}
85+
int GetSubExpCount()
86+
{
87+
return _exp?trex_getsubexpcount(_exp):0;
88+
}
89+
private:
90+
void CleanUp()
91+
{
92+
if(_exp) trex_free(_exp);
93+
_exp = (TRex *)0;
94+
}
95+
TRex *_exp;
96+
};
97+
#endif //_TREXPP_H_

0 commit comments

Comments
 (0)