Skip to content
This repository has been archived by the owner on Jun 23, 2019. It is now read-only.

Releases: felixrieseberg/project-oxford

v2.0.0

23 Mar 00:58
Compare
Choose a tag to compare

The only breaking change here happened in this PR: #53 around the identity() call. If you're not using this call, you can upgrade without worries.

Upgrade to Project Oxford API v1

14 Dec 18:37
Compare
Choose a tag to compare

⚠️ This version includes breaking changes for everyone coming from 0.3.0 or below. All versions of project-oxford at or below 0.3.0 were written for the Project Oxford v0 API. ⚠️

  • Be warned that v1 IDs are not compatible with the v0 API. If you've squirreled away these IDs, you will need to retrain your PersonGroup.
  • The concept of a FaceList has been introduced. This is a collection of face IDs that you would typically associate with a Person in a PersonGroup.
  • The concept of persistedFaceIds has been introduced. These IDs are long-lived, and are used for training. By contrast, a plain faceId is a byproduct of face feature detection. Note that face.detect method no longer returns a faceId by default. If you are interested in getting a faceId, you must request it in the options {returnFaceId: true}.
  • You can get a persistedFaceId either via faceList.addFace or person.addFace.
  • A UA string was added for server-side analytics.
  • Emotion API did not handle rectangles as input correctly, now they do.
  • Emotion API now has some tests.