diff --git a/.project b/.project index 46cc716..c70d5d5 100644 --- a/.project +++ b/.project @@ -1,6 +1,6 @@ - Face.com API + SkyBiometry Face Detection and Recognition API diff --git a/.settings/launch/AccountLimitsExample.launch b/.settings/launch/AccountLimitsExample.launch index 90af4bd..c58279e 100644 --- a/.settings/launch/AccountLimitsExample.launch +++ b/.settings/launch/AccountLimitsExample.launch @@ -11,13 +11,13 @@ - + - + diff --git a/.settings/launch/AccountStatusExample.launch b/.settings/launch/AccountStatusExample.launch index f4a05a8..0968da5 100644 --- a/.settings/launch/AccountStatusExample.launch +++ b/.settings/launch/AccountStatusExample.launch @@ -11,13 +11,13 @@ - + - + diff --git a/.settings/launch/FacesDetectURLsExample.launch b/.settings/launch/FacesDetectURLsExample.launch index a383cea..32269a5 100644 --- a/.settings/launch/FacesDetectURLsExample.launch +++ b/.settings/launch/FacesDetectURLsExample.launch @@ -11,13 +11,13 @@ - + - + diff --git a/.settings/launch/FacesGroupBitmapDataExample.launch b/.settings/launch/FacesGroupBitmapDataExample.launch index c05eda3..b706ee4 100644 --- a/.settings/launch/FacesGroupBitmapDataExample.launch +++ b/.settings/launch/FacesGroupBitmapDataExample.launch @@ -11,13 +11,13 @@ - + - + diff --git a/.settings/launch/FacesRecognizeBitmapDataExample.launch b/.settings/launch/FacesRecognizeBitmapDataExample.launch index 40c71bb..9e97f04 100644 --- a/.settings/launch/FacesRecognizeBitmapDataExample.launch +++ b/.settings/launch/FacesRecognizeBitmapDataExample.launch @@ -11,13 +11,13 @@ - + - + diff --git a/.settings/launch/FacesRecognizeExample.launch b/.settings/launch/FacesRecognizeExample.launch index 69e1713..145fba2 100644 --- a/.settings/launch/FacesRecognizeExample.launch +++ b/.settings/launch/FacesRecognizeExample.launch @@ -11,13 +11,13 @@ - + - + diff --git a/.settings/launch/FacesRecognizeURLsExample.launch b/.settings/launch/FacesRecognizeURLsExample.launch index 1a18d9c..3860bd8 100644 --- a/.settings/launch/FacesRecognizeURLsExample.launch +++ b/.settings/launch/FacesRecognizeURLsExample.launch @@ -11,13 +11,13 @@ - + - + diff --git a/.settings/launch/FacesStatusExample.launch b/.settings/launch/FacesStatusExample.launch index 9e7e91a..3013fa1 100644 --- a/.settings/launch/FacesStatusExample.launch +++ b/.settings/launch/FacesStatusExample.launch @@ -11,13 +11,13 @@ - + - + diff --git a/README b/README index 5033cd8..1d85cd5 100644 --- a/README +++ b/README @@ -1,10 +1,10 @@ -Face.com REST API Actionscript 3 client library. +SkyBiometry Face Detection and Recognition API Actionscript 3 client library. For a demonstration how to use this library, see *.as files from directory src/examples/. For more information about the API and the return values, visit the official documentation: -http://developers.face.com/docs/api/ +http://www.skybiometry.com/Documentation Important! diff --git a/src/facecom/api/FaceAPI.as b/src/facecom/api/FaceAPI.as index 48dc90c..4bc7a2a 100644 --- a/src/facecom/api/FaceAPI.as +++ b/src/facecom/api/FaceAPI.as @@ -30,7 +30,7 @@ package facecom.api { * @author medec */ public class FaceAPI extends EventDispatcher { - public static const API_DOMAIN : String = 'http://api.face.com/'; + public static const API_DOMAIN : String = 'https://api.skybiometry.com/fc/'; facecom var apiKey : String; facecom var apiSecret : String; private var _faces : FacesProxy; diff --git a/src/facecom/api/model/core/Tag.as b/src/facecom/api/model/core/Tag.as index bfe8be4..b955def 100644 --- a/src/facecom/api/model/core/Tag.as +++ b/src/facecom/api/model/core/Tag.as @@ -58,9 +58,9 @@ package facecom.api.model.core { center = new Point(data['center']['x'], data['center']['y']); eye_left = new Point(data['eye_left']['x'], data['eye_left']['y']); eye_right = new Point(data['eye_right']['x'], data['eye_right']['y']); - mouth_left = new Point(data['mouth_left']['x'], data['mouth_left']['y']); + //mouth_left = new Point(data['mouth_left']['x'], data['mouth_left']['y']); mouth_center = new Point(data['mouth_center']['x'], data['mouth_center']['y']); - mouth_right = new Point(data['mouth_right']['x'], data['mouth_right']['y']); + //mouth_right = new Point(data['mouth_right']['x'], data['mouth_right']['y']); nose = new Point(data['nose']['x'], data['nose']['y']); ear_left = data['ear_left'];