Socket
Socket
Sign inDemoInstall

cloudmersive-image-api-client

Package Overview
Dependencies
38
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.5 to 1.1.6

docs/FineTextDetectionResult.md

102

docs/RecognizeApi.md

@@ -11,2 +11,4 @@ # CloudmersiveImageApiClient.RecognizeApi

[**recognizeDetectPeople**](RecognizeApi.md#recognizeDetectPeople) | **POST** /image/recognize/detect-people | Detect people, including locations, in an image
[**recognizeDetectTextFine**](RecognizeApi.md#recognizeDetectTextFine) | **POST** /image/recognize/detect-text/fine | Detect fine text in a photo of a document
[**recognizeDetectTextLarge**](RecognizeApi.md#recognizeDetectTextLarge) | **POST** /image/recognize/detect-text/large | Detect large text in a photo
[**recognizeDetectVehicleLicensePlates**](RecognizeApi.md#recognizeDetectVehicleLicensePlates) | **POST** /image/recognize/detect-vehicle-license-plates | Detect vehicle license plates in an image

@@ -231,2 +233,102 @@

<a name="recognizeDetectTextFine"></a>
# **recognizeDetectTextFine**
> FineTextDetectionResult recognizeDetectTextFine(imageFile)
Detect fine text in a photo of a document
Identify the position, and size of small/fine text within a photograph of a document. Identify the location of small text in a photo - such as words and other forms of high density text. Can be used on a scan of a document or a photograph (e.g. smartphone camera) of a document, page or receipt. For OCR purposes - please see our Deep Learning OCR APIs.
### Example
```javascript
var CloudmersiveImageApiClient = require('cloudmersive-image-api-client');
var defaultClient = CloudmersiveImageApiClient.ApiClient.instance;
// Configure API key authorization: Apikey
var Apikey = defaultClient.authentications['Apikey'];
Apikey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//Apikey.apiKeyPrefix = 'Token';
var apiInstance = new CloudmersiveImageApiClient.RecognizeApi();
var imageFile = "/path/to/file.txt"; // File | Image file to perform the operation on. Common file formats such as PNG, JPEG are supported.
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.recognizeDetectTextFine(imageFile, callback);
```
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**imageFile** | **File**| Image file to perform the operation on. Common file formats such as PNG, JPEG are supported. |
### Return type
[**FineTextDetectionResult**](FineTextDetectionResult.md)
### Authorization
[Apikey](../README.md#Apikey)
### HTTP request headers
- **Content-Type**: multipart/form-data
- **Accept**: application/json, text/json, application/xml, text/xml
<a name="recognizeDetectTextLarge"></a>
# **recognizeDetectTextLarge**
> TextDetectionResult recognizeDetectTextLarge()
Detect large text in a photo
Identify the position, and size of large text within a photograph. Identify the location of large text in a photo - such as signs, titles, etc. and other forms of large, low-density text. Not suitable for high-density text (e.g. scans of documents, receipts, etc.) for OCR purposes - for OCR, please see our Deep Learning OCR APIs.
### Example
```javascript
var CloudmersiveImageApiClient = require('cloudmersive-image-api-client');
var defaultClient = CloudmersiveImageApiClient.ApiClient.instance;
// Configure API key authorization: Apikey
var Apikey = defaultClient.authentications['Apikey'];
Apikey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//Apikey.apiKeyPrefix = 'Token';
var apiInstance = new CloudmersiveImageApiClient.RecognizeApi();
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.recognizeDetectTextLarge(callback);
```
### Parameters
This endpoint does not need any parameter.
### Return type
[**TextDetectionResult**](TextDetectionResult.md)
### Authorization
[Apikey](../README.md#Apikey)
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json, text/json, application/xml, text/xml
<a name="recognizeDetectVehicleLicensePlates"></a>

@@ -233,0 +335,0 @@ # **recognizeDetectVehicleLicensePlates**

2

package.json
{
"name": "cloudmersive-image-api-client",
"version": "1.1.5",
"version": "1.1.6",
"description": "Image_Recognition_and_Processing_APIs_let_you_use_Machine_Learning_to_recognize_and_process_images_and_also_perform_useful_image_modification_operations_",

@@ -5,0 +5,0 @@ "license": "Unlicense",

@@ -8,3 +8,3 @@ # cloudmersive-image-api-client

- API version: v1
- Package version: 1.1.5
- Package version: 1.1.6

@@ -146,2 +146,4 @@

*CloudmersiveImageApiClient.RecognizeApi* | [**recognizeDetectPeople**](docs/RecognizeApi.md#recognizeDetectPeople) | **POST** /image/recognize/detect-people | Detect people, including locations, in an image
*CloudmersiveImageApiClient.RecognizeApi* | [**recognizeDetectTextFine**](docs/RecognizeApi.md#recognizeDetectTextFine) | **POST** /image/recognize/detect-text/fine | Detect fine text in a photo of a document
*CloudmersiveImageApiClient.RecognizeApi* | [**recognizeDetectTextLarge**](docs/RecognizeApi.md#recognizeDetectTextLarge) | **POST** /image/recognize/detect-text/large | Detect large text in a photo
*CloudmersiveImageApiClient.RecognizeApi* | [**recognizeDetectVehicleLicensePlates**](docs/RecognizeApi.md#recognizeDetectVehicleLicensePlates) | **POST** /image/recognize/detect-vehicle-license-plates | Detect vehicle license plates in an image

@@ -167,2 +169,4 @@ *CloudmersiveImageApiClient.ResizeApi* | [**resizePost**](docs/ResizeApi.md#resizePost) | **POST** /image/resize/preserveAspectRatio/{maxWidth}/{maxHeight} | Resize an image with parameters

- [CloudmersiveImageApiClient.FaceWithLandmarks](docs/FaceWithLandmarks.md)
- [CloudmersiveImageApiClient.FineTextDetectionResult](docs/FineTextDetectionResult.md)
- [CloudmersiveImageApiClient.FineTextItem](docs/FineTextItem.md)
- [CloudmersiveImageApiClient.ImageDescriptionResponse](docs/ImageDescriptionResponse.md)

@@ -173,2 +177,4 @@ - [CloudmersiveImageApiClient.NsfwResult](docs/NsfwResult.md)

- [CloudmersiveImageApiClient.RecognitionOutcome](docs/RecognitionOutcome.md)
- [CloudmersiveImageApiClient.TextDetectionResult](docs/TextDetectionResult.md)
- [CloudmersiveImageApiClient.TextItem](docs/TextItem.md)
- [CloudmersiveImageApiClient.VehicleLicensePlateDetectionResult](docs/VehicleLicensePlateDetectionResult.md)

@@ -175,0 +181,0 @@

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -37,3 +37,3 @@ * Do not edit the class manually.

* @module api/ArtisticApi
* @version 1.1.5
* @version 1.1.6
*/

@@ -40,0 +40,0 @@

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -37,3 +37,3 @@ * Do not edit the class manually.

* @module api/EditApi
* @version 1.1.5
* @version 1.1.6
*/

@@ -40,0 +40,0 @@

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -37,3 +37,3 @@ * Do not edit the class manually.

* @module api/FaceApi
* @version 1.1.5
* @version 1.1.6
*/

@@ -40,0 +40,0 @@

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -37,3 +37,3 @@ * Do not edit the class manually.

* @module api/NsfwApi
* @version 1.1.5
* @version 1.1.6
*/

@@ -40,0 +40,0 @@

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -20,6 +20,6 @@ * Do not edit the class manually.

// AMD. Register as an anonymous module.
define(['ApiClient', 'model/ImageDescriptionResponse', 'model/ObjectDetectionResult', 'model/VehicleLicensePlateDetectionResult'], factory);
define(['ApiClient', 'model/FineTextDetectionResult', 'model/ImageDescriptionResponse', 'model/ObjectDetectionResult', 'model/TextDetectionResult', 'model/VehicleLicensePlateDetectionResult'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
module.exports = factory(require('../ApiClient'), require('../model/ImageDescriptionResponse'), require('../model/ObjectDetectionResult'), require('../model/VehicleLicensePlateDetectionResult'));
module.exports = factory(require('../ApiClient'), require('../model/FineTextDetectionResult'), require('../model/ImageDescriptionResponse'), require('../model/ObjectDetectionResult'), require('../model/TextDetectionResult'), require('../model/VehicleLicensePlateDetectionResult'));
} else {

@@ -30,5 +30,5 @@ // Browser globals (root is window)

}
root.CloudmersiveImageApiClient.RecognizeApi = factory(root.CloudmersiveImageApiClient.ApiClient, root.CloudmersiveImageApiClient.ImageDescriptionResponse, root.CloudmersiveImageApiClient.ObjectDetectionResult, root.CloudmersiveImageApiClient.VehicleLicensePlateDetectionResult);
root.CloudmersiveImageApiClient.RecognizeApi = factory(root.CloudmersiveImageApiClient.ApiClient, root.CloudmersiveImageApiClient.FineTextDetectionResult, root.CloudmersiveImageApiClient.ImageDescriptionResponse, root.CloudmersiveImageApiClient.ObjectDetectionResult, root.CloudmersiveImageApiClient.TextDetectionResult, root.CloudmersiveImageApiClient.VehicleLicensePlateDetectionResult);
}
}(this, function(ApiClient, ImageDescriptionResponse, ObjectDetectionResult, VehicleLicensePlateDetectionResult) {
}(this, function(ApiClient, FineTextDetectionResult, ImageDescriptionResponse, ObjectDetectionResult, TextDetectionResult, VehicleLicensePlateDetectionResult) {
'use strict';

@@ -39,3 +39,3 @@

* @module api/RecognizeApi
* @version 1.1.5
* @version 1.1.6
*/

@@ -251,2 +251,91 @@

/**
* Callback function to receive the result of the recognizeDetectTextFine operation.
* @callback module:api/RecognizeApi~recognizeDetectTextFineCallback
* @param {String} error Error message, if any.
* @param {module:model/FineTextDetectionResult} data The data returned by the service call.
* @param {String} response The complete HTTP response.
*/
/**
* Detect fine text in a photo of a document
* Identify the position, and size of small/fine text within a photograph of a document. Identify the location of small text in a photo - such as words and other forms of high density text. Can be used on a scan of a document or a photograph (e.g. smartphone camera) of a document, page or receipt. For OCR purposes - please see our Deep Learning OCR APIs.
* @param {File} imageFile Image file to perform the operation on. Common file formats such as PNG, JPEG are supported.
* @param {module:api/RecognizeApi~recognizeDetectTextFineCallback} callback The callback function, accepting three arguments: error, data, response
* data is of type: {@link module:model/FineTextDetectionResult}
*/
this.recognizeDetectTextFine = function(imageFile, callback) {
var postBody = null;
// verify the required parameter 'imageFile' is set
if (imageFile === undefined || imageFile === null) {
throw new Error("Missing the required parameter 'imageFile' when calling recognizeDetectTextFine");
}
var pathParams = {
};
var queryParams = {
};
var collectionQueryParams = {
};
var headerParams = {
};
var formParams = {
'imageFile': imageFile
};
var authNames = ['Apikey'];
var contentTypes = ['multipart/form-data'];
var accepts = ['application/json', 'text/json', 'application/xml', 'text/xml'];
var returnType = FineTextDetectionResult;
return this.apiClient.callApi(
'/image/recognize/detect-text/fine', 'POST',
pathParams, queryParams, collectionQueryParams, headerParams, formParams, postBody,
authNames, contentTypes, accepts, returnType, callback
);
}
/**
* Callback function to receive the result of the recognizeDetectTextLarge operation.
* @callback module:api/RecognizeApi~recognizeDetectTextLargeCallback
* @param {String} error Error message, if any.
* @param {module:model/TextDetectionResult} data The data returned by the service call.
* @param {String} response The complete HTTP response.
*/
/**
* Detect large text in a photo
* Identify the position, and size of large text within a photograph. Identify the location of large text in a photo - such as signs, titles, etc. and other forms of large, low-density text. Not suitable for high-density text (e.g. scans of documents, receipts, etc.) for OCR purposes - for OCR, please see our Deep Learning OCR APIs.
* @param {module:api/RecognizeApi~recognizeDetectTextLargeCallback} callback The callback function, accepting three arguments: error, data, response
* data is of type: {@link module:model/TextDetectionResult}
*/
this.recognizeDetectTextLarge = function(callback) {
var postBody = null;
var pathParams = {
};
var queryParams = {
};
var collectionQueryParams = {
};
var headerParams = {
};
var formParams = {
};
var authNames = ['Apikey'];
var contentTypes = [];
var accepts = ['application/json', 'text/json', 'application/xml', 'text/xml'];
var returnType = TextDetectionResult;
return this.apiClient.callApi(
'/image/recognize/detect-text/large', 'POST',
pathParams, queryParams, collectionQueryParams, headerParams, formParams, postBody,
authNames, contentTypes, accepts, returnType, callback
);
}
/**
* Callback function to receive the result of the recognizeDetectVehicleLicensePlates operation.

@@ -253,0 +342,0 @@ * @callback module:api/RecognizeApi~recognizeDetectVehicleLicensePlatesCallback

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -37,3 +37,3 @@ * Do not edit the class manually.

* @module api/ResizeApi
* @version 1.1.5
* @version 1.1.6
*/

@@ -40,0 +40,0 @@

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -36,3 +36,3 @@ * Do not edit the class manually.

* @module ApiClient
* @version 1.1.5
* @version 1.1.6
*/

@@ -39,0 +39,0 @@

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -20,8 +20,8 @@ * Do not edit the class manually.

// AMD. Register as an anonymous module.
define(['ApiClient', 'model/AgeDetectionResult', 'model/DetectedLicensePlate', 'model/DetectedObject', 'model/DrawRectangleInstance', 'model/DrawRectangleRequest', 'model/DrawTextInstance', 'model/DrawTextRequest', 'model/Face', 'model/FaceCompareResponse', 'model/FaceLocateResponse', 'model/FaceLocateWithLandmarksResponse', 'model/FaceMatch', 'model/FacePoint', 'model/FaceWithLandmarks', 'model/ImageDescriptionResponse', 'model/NsfwResult', 'model/ObjectDetectionResult', 'model/PersonWithAge', 'model/RecognitionOutcome', 'model/VehicleLicensePlateDetectionResult', 'api/ArtisticApi', 'api/EditApi', 'api/FaceApi', 'api/NsfwApi', 'api/RecognizeApi', 'api/ResizeApi'], factory);
define(['ApiClient', 'model/AgeDetectionResult', 'model/DetectedLicensePlate', 'model/DetectedObject', 'model/DrawRectangleInstance', 'model/DrawRectangleRequest', 'model/DrawTextInstance', 'model/DrawTextRequest', 'model/Face', 'model/FaceCompareResponse', 'model/FaceLocateResponse', 'model/FaceLocateWithLandmarksResponse', 'model/FaceMatch', 'model/FacePoint', 'model/FaceWithLandmarks', 'model/FineTextDetectionResult', 'model/FineTextItem', 'model/ImageDescriptionResponse', 'model/NsfwResult', 'model/ObjectDetectionResult', 'model/PersonWithAge', 'model/RecognitionOutcome', 'model/TextDetectionResult', 'model/TextItem', 'model/VehicleLicensePlateDetectionResult', 'api/ArtisticApi', 'api/EditApi', 'api/FaceApi', 'api/NsfwApi', 'api/RecognizeApi', 'api/ResizeApi'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
module.exports = factory(require('./ApiClient'), require('./model/AgeDetectionResult'), require('./model/DetectedLicensePlate'), require('./model/DetectedObject'), require('./model/DrawRectangleInstance'), require('./model/DrawRectangleRequest'), require('./model/DrawTextInstance'), require('./model/DrawTextRequest'), require('./model/Face'), require('./model/FaceCompareResponse'), require('./model/FaceLocateResponse'), require('./model/FaceLocateWithLandmarksResponse'), require('./model/FaceMatch'), require('./model/FacePoint'), require('./model/FaceWithLandmarks'), require('./model/ImageDescriptionResponse'), require('./model/NsfwResult'), require('./model/ObjectDetectionResult'), require('./model/PersonWithAge'), require('./model/RecognitionOutcome'), require('./model/VehicleLicensePlateDetectionResult'), require('./api/ArtisticApi'), require('./api/EditApi'), require('./api/FaceApi'), require('./api/NsfwApi'), require('./api/RecognizeApi'), require('./api/ResizeApi'));
module.exports = factory(require('./ApiClient'), require('./model/AgeDetectionResult'), require('./model/DetectedLicensePlate'), require('./model/DetectedObject'), require('./model/DrawRectangleInstance'), require('./model/DrawRectangleRequest'), require('./model/DrawTextInstance'), require('./model/DrawTextRequest'), require('./model/Face'), require('./model/FaceCompareResponse'), require('./model/FaceLocateResponse'), require('./model/FaceLocateWithLandmarksResponse'), require('./model/FaceMatch'), require('./model/FacePoint'), require('./model/FaceWithLandmarks'), require('./model/FineTextDetectionResult'), require('./model/FineTextItem'), require('./model/ImageDescriptionResponse'), require('./model/NsfwResult'), require('./model/ObjectDetectionResult'), require('./model/PersonWithAge'), require('./model/RecognitionOutcome'), require('./model/TextDetectionResult'), require('./model/TextItem'), require('./model/VehicleLicensePlateDetectionResult'), require('./api/ArtisticApi'), require('./api/EditApi'), require('./api/FaceApi'), require('./api/NsfwApi'), require('./api/RecognizeApi'), require('./api/ResizeApi'));
}
}(function(ApiClient, AgeDetectionResult, DetectedLicensePlate, DetectedObject, DrawRectangleInstance, DrawRectangleRequest, DrawTextInstance, DrawTextRequest, Face, FaceCompareResponse, FaceLocateResponse, FaceLocateWithLandmarksResponse, FaceMatch, FacePoint, FaceWithLandmarks, ImageDescriptionResponse, NsfwResult, ObjectDetectionResult, PersonWithAge, RecognitionOutcome, VehicleLicensePlateDetectionResult, ArtisticApi, EditApi, FaceApi, NsfwApi, RecognizeApi, ResizeApi) {
}(function(ApiClient, AgeDetectionResult, DetectedLicensePlate, DetectedObject, DrawRectangleInstance, DrawRectangleRequest, DrawTextInstance, DrawTextRequest, Face, FaceCompareResponse, FaceLocateResponse, FaceLocateWithLandmarksResponse, FaceMatch, FacePoint, FaceWithLandmarks, FineTextDetectionResult, FineTextItem, ImageDescriptionResponse, NsfwResult, ObjectDetectionResult, PersonWithAge, RecognitionOutcome, TextDetectionResult, TextItem, VehicleLicensePlateDetectionResult, ArtisticApi, EditApi, FaceApi, NsfwApi, RecognizeApi, ResizeApi) {
'use strict';

@@ -58,3 +58,3 @@

* @module index
* @version 1.1.5
* @version 1.1.6
*/

@@ -138,2 +138,12 @@ var exports = {

/**
* The FineTextDetectionResult model constructor.
* @property {module:model/FineTextDetectionResult}
*/
FineTextDetectionResult: FineTextDetectionResult,
/**
* The FineTextItem model constructor.
* @property {module:model/FineTextItem}
*/
FineTextItem: FineTextItem,
/**
* The ImageDescriptionResponse model constructor.

@@ -164,2 +174,12 @@ * @property {module:model/ImageDescriptionResponse}

/**
* The TextDetectionResult model constructor.
* @property {module:model/TextDetectionResult}
*/
TextDetectionResult: TextDetectionResult,
/**
* The TextItem model constructor.
* @property {module:model/TextItem}
*/
TextItem: TextItem,
/**
* The VehicleLicensePlateDetectionResult model constructor.

@@ -166,0 +186,0 @@ * @property {module:model/VehicleLicensePlateDetectionResult}

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -40,3 +40,3 @@ * Do not edit the class manually.

* @module model/AgeDetectionResult
* @version 1.1.5
* @version 1.1.6
*/

@@ -43,0 +43,0 @@

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -40,3 +40,3 @@ * Do not edit the class manually.

* @module model/DetectedLicensePlate
* @version 1.1.5
* @version 1.1.6
*/

@@ -43,0 +43,0 @@

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -40,3 +40,3 @@ * Do not edit the class manually.

* @module model/DetectedObject
* @version 1.1.5
* @version 1.1.6
*/

@@ -43,0 +43,0 @@

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -40,3 +40,3 @@ * Do not edit the class manually.

* @module model/DrawRectangleInstance
* @version 1.1.5
* @version 1.1.6
*/

@@ -43,0 +43,0 @@

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -40,3 +40,3 @@ * Do not edit the class manually.

* @module model/DrawRectangleRequest
* @version 1.1.5
* @version 1.1.6
*/

@@ -43,0 +43,0 @@

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -40,3 +40,3 @@ * Do not edit the class manually.

* @module model/DrawTextInstance
* @version 1.1.5
* @version 1.1.6
*/

@@ -43,0 +43,0 @@

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -40,3 +40,3 @@ * Do not edit the class manually.

* @module model/DrawTextRequest
* @version 1.1.5
* @version 1.1.6
*/

@@ -43,0 +43,0 @@

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -40,3 +40,3 @@ * Do not edit the class manually.

* @module model/Face
* @version 1.1.5
* @version 1.1.6
*/

@@ -43,0 +43,0 @@

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -40,3 +40,3 @@ * Do not edit the class manually.

* @module model/FaceCompareResponse
* @version 1.1.5
* @version 1.1.6
*/

@@ -43,0 +43,0 @@

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -40,3 +40,3 @@ * Do not edit the class manually.

* @module model/FaceLocateResponse
* @version 1.1.5
* @version 1.1.6
*/

@@ -43,0 +43,0 @@

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -40,3 +40,3 @@ * Do not edit the class manually.

* @module model/FaceLocateWithLandmarksResponse
* @version 1.1.5
* @version 1.1.6
*/

@@ -43,0 +43,0 @@

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -40,3 +40,3 @@ * Do not edit the class manually.

* @module model/FaceMatch
* @version 1.1.5
* @version 1.1.6
*/

@@ -43,0 +43,0 @@

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -40,3 +40,3 @@ * Do not edit the class manually.

* @module model/FacePoint
* @version 1.1.5
* @version 1.1.6
*/

@@ -43,0 +43,0 @@

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -40,3 +40,3 @@ * Do not edit the class manually.

* @module model/FaceWithLandmarks
* @version 1.1.5
* @version 1.1.6
*/

@@ -43,0 +43,0 @@

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -40,3 +40,3 @@ * Do not edit the class manually.

* @module model/ImageDescriptionResponse
* @version 1.1.5
* @version 1.1.6
*/

@@ -43,0 +43,0 @@

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -40,3 +40,3 @@ * Do not edit the class manually.

* @module model/NsfwResult
* @version 1.1.5
* @version 1.1.6
*/

@@ -43,0 +43,0 @@

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -40,3 +40,3 @@ * Do not edit the class manually.

* @module model/ObjectDetectionResult
* @version 1.1.5
* @version 1.1.6
*/

@@ -43,0 +43,0 @@

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -40,3 +40,3 @@ * Do not edit the class manually.

* @module model/PersonWithAge
* @version 1.1.5
* @version 1.1.6
*/

@@ -43,0 +43,0 @@

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -40,3 +40,3 @@ * Do not edit the class manually.

* @module model/RecognitionOutcome
* @version 1.1.5
* @version 1.1.6
*/

@@ -43,0 +43,0 @@

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -40,3 +40,3 @@ * Do not edit the class manually.

* @module model/VehicleLicensePlateDetectionResult
* @version 1.1.5
* @version 1.1.6
*/

@@ -43,0 +43,0 @@

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -13,0 +13,0 @@ * Do not edit the class manually.

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -13,0 +13,0 @@ * Do not edit the class manually.

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -13,0 +13,0 @@ * Do not edit the class manually.

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -13,0 +13,0 @@ * Do not edit the class manually.

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -94,2 +94,22 @@ * Do not edit the class manually.

});
describe('recognizeDetectTextFine', function() {
it('should call recognizeDetectTextFine successfully', function(done) {
//uncomment below and update the code to test recognizeDetectTextFine
//instance.recognizeDetectTextFine(function(error) {
// if (error) throw error;
//expect().to.be();
//});
done();
});
});
describe('recognizeDetectTextLarge', function() {
it('should call recognizeDetectTextLarge successfully', function(done) {
//uncomment below and update the code to test recognizeDetectTextLarge
//instance.recognizeDetectTextLarge(function(error) {
// if (error) throw error;
//expect().to.be();
//});
done();
});
});
describe('recognizeDetectVehicleLicensePlates', function() {

@@ -96,0 +116,0 @@ it('should call recognizeDetectVehicleLicensePlates successfully', function(done) {

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -13,0 +13,0 @@ * Do not edit the class manually.

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -13,0 +13,0 @@ * Do not edit the class manually.

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -13,0 +13,0 @@ * Do not edit the class manually.

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -13,0 +13,0 @@ * Do not edit the class manually.

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -13,0 +13,0 @@ * Do not edit the class manually.

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -13,0 +13,0 @@ * Do not edit the class manually.

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -13,0 +13,0 @@ * Do not edit the class manually.

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -13,0 +13,0 @@ * Do not edit the class manually.

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -13,0 +13,0 @@ * Do not edit the class manually.

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -13,0 +13,0 @@ * Do not edit the class manually.

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -13,0 +13,0 @@ * Do not edit the class manually.

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -13,0 +13,0 @@ * Do not edit the class manually.

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -13,0 +13,0 @@ * Do not edit the class manually.

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -13,0 +13,0 @@ * Do not edit the class manually.

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -13,0 +13,0 @@ * Do not edit the class manually.

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -13,0 +13,0 @@ * Do not edit the class manually.

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -13,0 +13,0 @@ * Do not edit the class manually.

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -13,0 +13,0 @@ * Do not edit the class manually.

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -13,0 +13,0 @@ * Do not edit the class manually.

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -13,0 +13,0 @@ * Do not edit the class manually.

@@ -10,3 +10,3 @@ /**

*
* Swagger Codegen version: unset
* Swagger Codegen version: 2.3.1
*

@@ -13,0 +13,0 @@ * Do not edit the class manually.

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc