Added OpenALPR Java binding via JNI

This commit is contained in:
Matt Hill
2015-03-08 18:31:42 -04:00
parent e2cf6cdb98
commit cb5f3823e8
27 changed files with 6352 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
package com.openalpr.jni;
import com.openalpr.jni.json.JSONObject;
public class AlprCoordinate {
private final int x;
private final int y;
AlprCoordinate(JSONObject coordinateObj)
{
x = coordinateObj.getInt("x");
y = coordinateObj.getInt("y");
}
public int getX() {
return x;
}
public int getY() {
return y;
}
}