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.2.3 to 1.2.5

docs/ColorResult.md

8

docs/DetectedLicensePlate.md

@@ -6,10 +6,10 @@ # CloudmersiveImageApiClient.DetectedLicensePlate

------------ | ------------- | ------------- | -------------
**locationX** | **Number** | | [optional]
**locationY** | **Number** | | [optional]
**width** | **Number** | | [optional]
**height** | **Number** | | [optional]
**licensePlateTextBestMatch** | **String** | Text from the license plate, highest-confidence result | [optional]
**licensePlateTextRunnerUp** | **String** | Alternate text from the license plate, based on second-highest-confidence result | [optional]
**locationX** | **Number** | X location of the left edge of the license plate, starting from the left edge of the photo (X = 0) | [optional]
**locationY** | **Number** | Y location of the top edge of the license plate, starting from the top edge of the photo (Y = 0) | [optional]
**width** | **Number** | Width of the license plate's location in pixels | [optional]
**height** | **Number** | Height of the license plate's location in pixels | [optional]
**licensePlateRecognitionConfidenceLevel** | **Number** | Confidence score on a range of 0.0 - 1.0 of the accuracy of the detected license plate, with higher scores being better; values about 0.75 are high confidence | [optional]

@@ -10,5 +10,7 @@ # CloudmersiveImageApiClient.EditApi

[**editContrastAdaptive**](EditApi.md#editContrastAdaptive) | **POST** /image/edit/contrast/{gamma}/adaptive | Adaptively adjust the contrast of the image to be more appealing and easy to see
[**editCropRectangle**](EditApi.md#editCropRectangle) | **POST** /image/edit/crop/rectangle/{left}/{top}/{width}/{height} | Crop an image to a rectangular area
[**editDrawPolygon**](EditApi.md#editDrawPolygon) | **POST** /image/edit/draw/polygon | Draw a polygon onto an image
[**editDrawRectangle**](EditApi.md#editDrawRectangle) | **POST** /image/edit/draw/rectangle | Draw a rectangle onto an image
[**editDrawText**](EditApi.md#editDrawText) | **POST** /image/edit/draw/text | Draw text onto an image
[**editDropShadow**](EditApi.md#editDropShadow) | **POST** /image/edit/drop-shadow/{x}/{y}/{sigma}/{opacity} | Add a customizeable drop shadow to an image
[**editRotate**](EditApi.md#editRotate) | **POST** /image/edit/rotate/{degrees}/angle | Rotate an image any number of degrees

@@ -185,2 +187,67 @@

<a name="editCropRectangle"></a>
# **editCropRectangle**
> &#39;Blob&#39; editCropRectangle(left, top, width, height, imageFile)
Crop an image to a rectangular area
Crop an image to a target rectangular area
### 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.EditApi();
var left = 56; // Number | The left edge of the rectangular crop area in pixels (X).
var top = 56; // Number | The top edge of the rectangular crop area in pixels (Y).
var width = 56; // Number | The width of the rectangular crop area in pixels.
var height = 56; // Number | The height of the rectangular crop area in pixels.
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.editCropRectangle(left, top, width, height, imageFile, callback);
```
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**left** | **Number**| The left edge of the rectangular crop area in pixels (X). |
**top** | **Number**| The top edge of the rectangular crop area in pixels (Y). |
**width** | **Number**| The width of the rectangular crop area in pixels. |
**height** | **Number**| The height of the rectangular crop area in pixels. |
**imageFile** | **File**| Image file to perform the operation on. Common file formats such as PNG, JPEG are supported. |
### Return type
**&#39;Blob&#39;**
### Authorization
[Apikey](../README.md#Apikey)
### HTTP request headers
- **Content-Type**: multipart/form-data
- **Accept**: application/octet-stream
<a name="editDrawPolygon"></a>

@@ -345,2 +412,67 @@ # **editDrawPolygon**

<a name="editDropShadow"></a>
# **editDropShadow**
> &#39;Blob&#39; editDropShadow(x, y, sigma, opacity, imageFile)
Add a customizeable drop shadow to an image
Add a customizeable drop shadow to the image
### 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.EditApi();
var x = 56; // Number | Horizontal (X) offset of the drop shadow
var y = 56; // Number | Vertical (Y) offset of the drop shadow
var sigma = 56; // Number | Sigma (blur distance) of the drop shadow
var opacity = 56; // Number | Opacity of the drop shadow; 0 is 0% and 100 is 100%
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.editDropShadow(x, y, sigma, opacity, imageFile, callback);
```
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**x** | **Number**| Horizontal (X) offset of the drop shadow |
**y** | **Number**| Vertical (Y) offset of the drop shadow |
**sigma** | **Number**| Sigma (blur distance) of the drop shadow |
**opacity** | **Number**| Opacity of the drop shadow; 0 is 0% and 100 is 100% |
**imageFile** | **File**| Image file to perform the operation on. Common file formats such as PNG, JPEG are supported. |
### Return type
**&#39;Blob&#39;**
### Authorization
[Apikey](../README.md#Apikey)
### HTTP request headers
- **Content-Type**: multipart/form-data
- **Accept**: application/octet-stream
<a name="editRotate"></a>

@@ -347,0 +479,0 @@ # **editRotate**

@@ -6,7 +6,7 @@ # CloudmersiveImageApiClient.FaceCompareResponse

------------ | ------------- | ------------- | -------------
**errorDetails** | **String** | | [optional]
**successful** | **Boolean** | True if the operation was successful, false otherwise | [optional]
**faces** | [**[FaceMatch]**](FaceMatch.md) | Array of faces found in the input image | [optional]
**faceCount** | **Number** | Number of faces found in the image | [optional]
**errorDetails** | **String** | Details of any errors that occurred | [optional]

@@ -6,7 +6,7 @@ # CloudmersiveImageApiClient.FaceLocateWithLandmarksResponse

------------ | ------------- | ------------- | -------------
**errorDetails** | **String** | | [optional]
**successful** | **Boolean** | True if the operation was successful, false otherwise | [optional]
**faces** | [**[FaceWithLandmarks]**](FaceWithLandmarks.md) | Array of faces found in the image | [optional]
**faceCount** | **Number** | Number of faces found in the image | [optional]
**errorDetails** | **String** | Details of any errors that occurred | [optional]

@@ -6,11 +6,2 @@ # CloudmersiveImageApiClient.FaceWithLandmarks

------------ | ------------- | ------------- | -------------
**leftEyebrow** | [**[FacePoint]**](FacePoint.md) | | [optional]
**rightEyebrow** | [**[FacePoint]**](FacePoint.md) | | [optional]
**leftEye** | [**[FacePoint]**](FacePoint.md) | | [optional]
**rightEye** | [**[FacePoint]**](FacePoint.md) | | [optional]
**bottomAndSidesOfFace** | [**[FacePoint]**](FacePoint.md) | | [optional]
**noseBridge** | [**[FacePoint]**](FacePoint.md) | | [optional]
**noseBottom** | [**[FacePoint]**](FacePoint.md) | | [optional]
**lipsInnerOutline** | [**[FacePoint]**](FacePoint.md) | | [optional]
**lipsOuterOutline** | [**[FacePoint]**](FacePoint.md) | | [optional]
**leftX** | **Number** | X coordinate of the left side of the face | [optional]

@@ -20,3 +11,12 @@ **topY** | **Number** | Y coordinate of the top side of the face | [optional]

**bottomY** | **Number** | Y coordinate of the bottom side of the face | [optional]
**leftEyebrow** | [**[FacePoint]**](FacePoint.md) | Point locations of the left eyebrow (the eyebrow cloesest to the left side of the picture) | [optional]
**rightEyebrow** | [**[FacePoint]**](FacePoint.md) | Point locations of the right eyebrow (the eyebrow cloesest to the right side of the picture) | [optional]
**leftEye** | [**[FacePoint]**](FacePoint.md) | Point locations of the left eye (the eye closest to the left side of the picture) | [optional]
**rightEye** | [**[FacePoint]**](FacePoint.md) | Point locations of the right eye (the eye closest to the right side of the picture) | [optional]
**bottomAndSidesOfFace** | [**[FacePoint]**](FacePoint.md) | Point locations of the bottom and sides of the face (cheeks and chin) | [optional]
**noseBridge** | [**[FacePoint]**](FacePoint.md) | Point locations of the nose bridge (the vertical portion of the nose) | [optional]
**noseBottom** | [**[FacePoint]**](FacePoint.md) | Point locations of the bottom (nostrils) of the nose | [optional]
**lipsInnerOutline** | [**[FacePoint]**](FacePoint.md) | Point locations of the inner outline of the lips | [optional]
**lipsOuterOutline** | [**[FacePoint]**](FacePoint.md) | Point locations of the outer outline of the lips | [optional]

@@ -14,2 +14,3 @@ # CloudmersiveImageApiClient.RecognizeApi

[**recognizeDetectVehicleLicensePlates**](RecognizeApi.md#recognizeDetectVehicleLicensePlates) | **POST** /image/recognize/detect-vehicle-license-plates | Detect vehicle license plates in an image
[**recognizeFindSymbol**](RecognizeApi.md#recognizeFindSymbol) | **POST** /image/recognize/find/symbol | Find the location of a symbol in an image

@@ -288,3 +289,3 @@

# **recognizeDetectTextLarge**
> TextDetectionResult recognizeDetectTextLarge()
> TextDetectionResult recognizeDetectTextLarge(imageFile)

@@ -308,2 +309,5 @@ Detect large text in a photo

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) {

@@ -316,8 +320,11 @@ if (error) {

};
apiInstance.recognizeDetectTextLarge(callback);
apiInstance.recognizeDetectTextLarge(imageFile, callback);
```
### Parameters
This endpoint does not need any parameter.
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**imageFile** | **File**| Image file to perform the operation on. Common file formats such as PNG, JPEG are supported. |
### Return type

@@ -333,3 +340,3 @@

- **Content-Type**: Not defined
- **Content-Type**: multipart/form-data
- **Accept**: application/json, text/json, application/xml, text/xml

@@ -390,1 +397,57 @@

<a name="recognizeFindSymbol"></a>
# **recognizeFindSymbol**
> FindSymbolResult recognizeFindSymbol(inputImage, targetImage)
Find the location of a symbol in an image
Determine if an image contains a symbol, and if so, the location of that symbol in the image.
### 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 inputImage = "/path/to/file.txt"; // File | Image file to search through for the target image.
var targetImage = "/path/to/file.txt"; // File | Image to find in the input image.
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.recognizeFindSymbol(inputImage, targetImage, callback);
```
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**inputImage** | **File**| Image file to search through for the target image. |
**targetImage** | **File**| Image to find in the input image. |
### Return type
[**FindSymbolResult**](FindSymbolResult.md)
### Authorization
[Apikey](../README.md#Apikey)
### HTTP request headers
- **Content-Type**: multipart/form-data
- **Accept**: application/json, text/json, application/xml, text/xml

@@ -7,3 +7,4 @@ # CloudmersiveImageApiClient.ResizeApi

------------- | ------------- | -------------
[**resizePost**](ResizeApi.md#resizePost) | **POST** /image/resize/preserveAspectRatio/{maxWidth}/{maxHeight} | Resize an image with parameters
[**resizePost**](ResizeApi.md#resizePost) | **POST** /image/resize/preserveAspectRatio/{maxWidth}/{maxHeight} | Resize an image while preserving aspect ratio
[**resizeResizeSimple**](ResizeApi.md#resizeResizeSimple) | **POST** /image/resize/target/{width}/{height} | Resize an image

@@ -15,3 +16,3 @@

Resize an image with parameters
Resize an image while preserving aspect ratio

@@ -71,1 +72,60 @@ Resize an image to a maximum width and maximum height, while preserving the image&#39;s original aspect ratio

<a name="resizeResizeSimple"></a>
# **resizeResizeSimple**
> &#39;Blob&#39; resizeResizeSimple(width, height, imageFile)
Resize an image
Resize an image to a specific width and specific height
### 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.ResizeApi();
var width = 56; // Number |
var height = 56; // Number |
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.resizeResizeSimple(width, height, imageFile, callback);
```
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**width** | **Number**| |
**height** | **Number**| |
**imageFile** | **File**| Image file to perform the operation on. Common file formats such as PNG, JPEG are supported. |
### Return type
**&#39;Blob&#39;**
### Authorization
[Apikey](../README.md#Apikey)
### HTTP request headers
- **Content-Type**: multipart/form-data
- **Accept**: image/png
{
"name": "cloudmersive-image-api-client",
"version": "1.2.3",
"version": "1.2.5",
"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.2.3
- Package version: 1.2.5

@@ -135,5 +135,7 @@

*CloudmersiveImageApiClient.EditApi* | [**editContrastAdaptive**](docs/EditApi.md#editContrastAdaptive) | **POST** /image/edit/contrast/{gamma}/adaptive | Adaptively adjust the contrast of the image to be more appealing and easy to see
*CloudmersiveImageApiClient.EditApi* | [**editCropRectangle**](docs/EditApi.md#editCropRectangle) | **POST** /image/edit/crop/rectangle/{left}/{top}/{width}/{height} | Crop an image to a rectangular area
*CloudmersiveImageApiClient.EditApi* | [**editDrawPolygon**](docs/EditApi.md#editDrawPolygon) | **POST** /image/edit/draw/polygon | Draw a polygon onto an image
*CloudmersiveImageApiClient.EditApi* | [**editDrawRectangle**](docs/EditApi.md#editDrawRectangle) | **POST** /image/edit/draw/rectangle | Draw a rectangle onto an image
*CloudmersiveImageApiClient.EditApi* | [**editDrawText**](docs/EditApi.md#editDrawText) | **POST** /image/edit/draw/text | Draw text onto an image
*CloudmersiveImageApiClient.EditApi* | [**editDropShadow**](docs/EditApi.md#editDropShadow) | **POST** /image/edit/drop-shadow/{x}/{y}/{sigma}/{opacity} | Add a customizeable drop shadow to an image
*CloudmersiveImageApiClient.EditApi* | [**editRotate**](docs/EditApi.md#editRotate) | **POST** /image/edit/rotate/{degrees}/angle | Rotate an image any number of degrees

@@ -147,2 +149,11 @@ *CloudmersiveImageApiClient.FaceApi* | [**faceCompare**](docs/FaceApi.md#faceCompare) | **POST** /image/face/compare-and-match | Compare and match faces

*CloudmersiveImageApiClient.FaceApi* | [**faceLocateWithLandmarks**](docs/FaceApi.md#faceLocateWithLandmarks) | **POST** /image/face/locate-with-landmarks | Find faces and face landmarks (eyes, eye brows, nose, mouth) in an image
*CloudmersiveImageApiClient.FilterApi* | [**filterBlackAndWhite**](docs/FilterApi.md#filterBlackAndWhite) | **POST** /image/filter/black-and-white | Convert image to black-and-white grayscale
*CloudmersiveImageApiClient.FilterApi* | [**filterDespeckle**](docs/FilterApi.md#filterDespeckle) | **POST** /image/filter/despeckle | Despeckle (remove point noise) from the image
*CloudmersiveImageApiClient.FilterApi* | [**filterEdgeDetect**](docs/FilterApi.md#filterEdgeDetect) | **POST** /image/filter/edge-detect/{radius} | Detect and highlight edges in an image
*CloudmersiveImageApiClient.FilterApi* | [**filterEmboss**](docs/FilterApi.md#filterEmboss) | **POST** /image/filter/emboss/{radius}/{sigma} | Emboss an image
*CloudmersiveImageApiClient.FilterApi* | [**filterGaussianBlur**](docs/FilterApi.md#filterGaussianBlur) | **POST** /image/filter/blur/guassian/{radius}/{sigma} | Perform a guassian blur on the input image
*CloudmersiveImageApiClient.FilterApi* | [**filterMotionBlur**](docs/FilterApi.md#filterMotionBlur) | **POST** /image/filter/blur/motion/{radius}/{sigma}/{angle} | Perform a motion blur on the input image
*CloudmersiveImageApiClient.FilterApi* | [**filterPosterize**](docs/FilterApi.md#filterPosterize) | **POST** /image/filter/posterize | Posterize the image by reducing distinct colors
*CloudmersiveImageApiClient.FilterApi* | [**filterSwirl**](docs/FilterApi.md#filterSwirl) | **POST** /image/filter/swirl | Swirl distort the image
*CloudmersiveImageApiClient.InfoApi* | [**infoGetDominantColor**](docs/InfoApi.md#infoGetDominantColor) | **POST** /image/get-info/dominant-color | Returns the dominant colors of the image
*CloudmersiveImageApiClient.NsfwApi* | [**nsfwClassify**](docs/NsfwApi.md#nsfwClassify) | **POST** /image/nsfw/classify | Not safe for work (NSFW) racy content classification

@@ -156,3 +167,5 @@ *CloudmersiveImageApiClient.RecognizeApi* | [**recognizeDescribe**](docs/RecognizeApi.md#recognizeDescribe) | **POST** /image/recognize/describe | Describe an image in natural language

*CloudmersiveImageApiClient.RecognizeApi* | [**recognizeDetectVehicleLicensePlates**](docs/RecognizeApi.md#recognizeDetectVehicleLicensePlates) | **POST** /image/recognize/detect-vehicle-license-plates | Detect vehicle license plates in an image
*CloudmersiveImageApiClient.ResizeApi* | [**resizePost**](docs/ResizeApi.md#resizePost) | **POST** /image/resize/preserveAspectRatio/{maxWidth}/{maxHeight} | Resize an image with parameters
*CloudmersiveImageApiClient.RecognizeApi* | [**recognizeFindSymbol**](docs/RecognizeApi.md#recognizeFindSymbol) | **POST** /image/recognize/find/symbol | Find the location of a symbol in an image
*CloudmersiveImageApiClient.ResizeApi* | [**resizePost**](docs/ResizeApi.md#resizePost) | **POST** /image/resize/preserveAspectRatio/{maxWidth}/{maxHeight} | Resize an image while preserving aspect ratio
*CloudmersiveImageApiClient.ResizeApi* | [**resizeResizeSimple**](docs/ResizeApi.md#resizeResizeSimple) | **POST** /image/resize/target/{width}/{height} | Resize an image

@@ -163,4 +176,6 @@

- [CloudmersiveImageApiClient.AgeDetectionResult](docs/AgeDetectionResult.md)
- [CloudmersiveImageApiClient.ColorResult](docs/ColorResult.md)
- [CloudmersiveImageApiClient.DetectedLicensePlate](docs/DetectedLicensePlate.md)
- [CloudmersiveImageApiClient.DetectedObject](docs/DetectedObject.md)
- [CloudmersiveImageApiClient.DominantColorResult](docs/DominantColorResult.md)
- [CloudmersiveImageApiClient.DrawPolygonInstance](docs/DrawPolygonInstance.md)

@@ -179,2 +194,3 @@ - [CloudmersiveImageApiClient.DrawPolygonRequest](docs/DrawPolygonRequest.md)

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

@@ -181,0 +197,0 @@ - [CloudmersiveImageApiClient.FineTextItem](docs/FineTextItem.md)

@@ -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.2.3
* @version 1.2.5
*/

@@ -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.2.3
* @version 1.2.5
*/

@@ -218,2 +218,78 @@

/**
* Callback function to receive the result of the editCropRectangle operation.
* @callback module:api/EditApi~editCropRectangleCallback
* @param {String} error Error message, if any.
* @param {'Blob'} data The data returned by the service call.
* @param {String} response The complete HTTP response.
*/
/**
* Crop an image to a rectangular area
* Crop an image to a target rectangular area
* @param {Number} left The left edge of the rectangular crop area in pixels (X).
* @param {Number} top The top edge of the rectangular crop area in pixels (Y).
* @param {Number} width The width of the rectangular crop area in pixels.
* @param {Number} height The height of the rectangular crop area in pixels.
* @param {File} imageFile Image file to perform the operation on. Common file formats such as PNG, JPEG are supported.
* @param {module:api/EditApi~editCropRectangleCallback} callback The callback function, accepting three arguments: error, data, response
* data is of type: {@link 'Blob'}
*/
this.editCropRectangle = function(left, top, width, height, imageFile, callback) {
var postBody = null;
// verify the required parameter 'left' is set
if (left === undefined || left === null) {
throw new Error("Missing the required parameter 'left' when calling editCropRectangle");
}
// verify the required parameter 'top' is set
if (top === undefined || top === null) {
throw new Error("Missing the required parameter 'top' when calling editCropRectangle");
}
// verify the required parameter 'width' is set
if (width === undefined || width === null) {
throw new Error("Missing the required parameter 'width' when calling editCropRectangle");
}
// verify the required parameter 'height' is set
if (height === undefined || height === null) {
throw new Error("Missing the required parameter 'height' when calling editCropRectangle");
}
// verify the required parameter 'imageFile' is set
if (imageFile === undefined || imageFile === null) {
throw new Error("Missing the required parameter 'imageFile' when calling editCropRectangle");
}
var pathParams = {
'left': left,
'top': top,
'width': width,
'height': height
};
var queryParams = {
};
var collectionQueryParams = {
};
var headerParams = {
};
var formParams = {
'imageFile': imageFile
};
var authNames = ['Apikey'];
var contentTypes = ['multipart/form-data'];
var accepts = ['application/octet-stream'];
var returnType = 'Blob';
return this.apiClient.callApi(
'/image/edit/crop/rectangle/{left}/{top}/{width}/{height}', 'POST',
pathParams, queryParams, collectionQueryParams, headerParams, formParams, postBody,
authNames, contentTypes, accepts, returnType, callback
);
}
/**
* Callback function to receive the result of the editDrawPolygon operation.

@@ -360,2 +436,78 @@ * @callback module:api/EditApi~editDrawPolygonCallback

/**
* Callback function to receive the result of the editDropShadow operation.
* @callback module:api/EditApi~editDropShadowCallback
* @param {String} error Error message, if any.
* @param {'Blob'} data The data returned by the service call.
* @param {String} response The complete HTTP response.
*/
/**
* Add a customizeable drop shadow to an image
* Add a customizeable drop shadow to the image
* @param {Number} x Horizontal (X) offset of the drop shadow
* @param {Number} y Vertical (Y) offset of the drop shadow
* @param {Number} sigma Sigma (blur distance) of the drop shadow
* @param {Number} opacity Opacity of the drop shadow; 0 is 0% and 100 is 100%
* @param {File} imageFile Image file to perform the operation on. Common file formats such as PNG, JPEG are supported.
* @param {module:api/EditApi~editDropShadowCallback} callback The callback function, accepting three arguments: error, data, response
* data is of type: {@link 'Blob'}
*/
this.editDropShadow = function(x, y, sigma, opacity, imageFile, callback) {
var postBody = null;
// verify the required parameter 'x' is set
if (x === undefined || x === null) {
throw new Error("Missing the required parameter 'x' when calling editDropShadow");
}
// verify the required parameter 'y' is set
if (y === undefined || y === null) {
throw new Error("Missing the required parameter 'y' when calling editDropShadow");
}
// verify the required parameter 'sigma' is set
if (sigma === undefined || sigma === null) {
throw new Error("Missing the required parameter 'sigma' when calling editDropShadow");
}
// verify the required parameter 'opacity' is set
if (opacity === undefined || opacity === null) {
throw new Error("Missing the required parameter 'opacity' when calling editDropShadow");
}
// verify the required parameter 'imageFile' is set
if (imageFile === undefined || imageFile === null) {
throw new Error("Missing the required parameter 'imageFile' when calling editDropShadow");
}
var pathParams = {
'x': x,
'y': y,
'sigma': sigma,
'opacity': opacity
};
var queryParams = {
};
var collectionQueryParams = {
};
var headerParams = {
};
var formParams = {
'imageFile': imageFile
};
var authNames = ['Apikey'];
var contentTypes = ['multipart/form-data'];
var accepts = ['application/octet-stream'];
var returnType = 'Blob';
return this.apiClient.callApi(
'/image/edit/drop-shadow/{x}/{y}/{sigma}/{opacity}', 'POST',
pathParams, queryParams, collectionQueryParams, headerParams, formParams, postBody,
authNames, contentTypes, accepts, returnType, callback
);
}
/**
* Callback function to receive the result of the editRotate operation.

@@ -362,0 +514,0 @@ * @callback module:api/EditApi~editRotateCallback

@@ -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.2.3
* @version 1.2.5
*/

@@ -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.2.3
* @version 1.2.5
*/

@@ -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/FineTextDetectionResult', 'model/ImageDescriptionResponse', 'model/ObjectDetectionResult', 'model/TextDetectionResult', 'model/VehicleLicensePlateDetectionResult'], factory);
define(['ApiClient', 'model/FindSymbolResult', '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/FineTextDetectionResult'), require('../model/ImageDescriptionResponse'), require('../model/ObjectDetectionResult'), require('../model/TextDetectionResult'), require('../model/VehicleLicensePlateDetectionResult'));
module.exports = factory(require('../ApiClient'), require('../model/FindSymbolResult'), 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.FineTextDetectionResult, root.CloudmersiveImageApiClient.ImageDescriptionResponse, root.CloudmersiveImageApiClient.ObjectDetectionResult, root.CloudmersiveImageApiClient.TextDetectionResult, root.CloudmersiveImageApiClient.VehicleLicensePlateDetectionResult);
root.CloudmersiveImageApiClient.RecognizeApi = factory(root.CloudmersiveImageApiClient.ApiClient, root.CloudmersiveImageApiClient.FindSymbolResult, root.CloudmersiveImageApiClient.FineTextDetectionResult, root.CloudmersiveImageApiClient.ImageDescriptionResponse, root.CloudmersiveImageApiClient.ObjectDetectionResult, root.CloudmersiveImageApiClient.TextDetectionResult, root.CloudmersiveImageApiClient.VehicleLicensePlateDetectionResult);
}
}(this, function(ApiClient, FineTextDetectionResult, ImageDescriptionResponse, ObjectDetectionResult, TextDetectionResult, VehicleLicensePlateDetectionResult) {
}(this, function(ApiClient, FindSymbolResult, FineTextDetectionResult, ImageDescriptionResponse, ObjectDetectionResult, TextDetectionResult, VehicleLicensePlateDetectionResult) {
'use strict';

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

* @module api/RecognizeApi
* @version 1.2.3
* @version 1.2.5
*/

@@ -309,9 +309,15 @@

* 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 {File} imageFile Image file to perform the operation on. Common file formats such as PNG, JPEG are supported.
* @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) {
this.recognizeDetectTextLarge = 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 recognizeDetectTextLarge");
}
var pathParams = {

@@ -326,6 +332,7 @@ };

var formParams = {
'imageFile': imageFile
};
var authNames = ['Apikey'];
var contentTypes = [];
var contentTypes = ['multipart/form-data'];
var accepts = ['application/json', 'text/json', 'application/xml', 'text/xml'];

@@ -388,2 +395,57 @@ var returnType = TextDetectionResult;

}
/**
* Callback function to receive the result of the recognizeFindSymbol operation.
* @callback module:api/RecognizeApi~recognizeFindSymbolCallback
* @param {String} error Error message, if any.
* @param {module:model/FindSymbolResult} data The data returned by the service call.
* @param {String} response The complete HTTP response.
*/
/**
* Find the location of a symbol in an image
* Determine if an image contains a symbol, and if so, the location of that symbol in the image.
* @param {File} inputImage Image file to search through for the target image.
* @param {File} targetImage Image to find in the input image.
* @param {module:api/RecognizeApi~recognizeFindSymbolCallback} callback The callback function, accepting three arguments: error, data, response
* data is of type: {@link module:model/FindSymbolResult}
*/
this.recognizeFindSymbol = function(inputImage, targetImage, callback) {
var postBody = null;
// verify the required parameter 'inputImage' is set
if (inputImage === undefined || inputImage === null) {
throw new Error("Missing the required parameter 'inputImage' when calling recognizeFindSymbol");
}
// verify the required parameter 'targetImage' is set
if (targetImage === undefined || targetImage === null) {
throw new Error("Missing the required parameter 'targetImage' when calling recognizeFindSymbol");
}
var pathParams = {
};
var queryParams = {
};
var collectionQueryParams = {
};
var headerParams = {
};
var formParams = {
'inputImage': inputImage,
'targetImage': targetImage
};
var authNames = ['Apikey'];
var contentTypes = ['multipart/form-data'];
var accepts = ['application/json', 'text/json', 'application/xml', 'text/xml'];
var returnType = FindSymbolResult;
return this.apiClient.callApi(
'/image/recognize/find/symbol', 'POST',
pathParams, queryParams, collectionQueryParams, headerParams, formParams, postBody,
authNames, contentTypes, accepts, returnType, callback
);
}
};

@@ -390,0 +452,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/ResizeApi
* @version 1.2.3
* @version 1.2.5
*/

@@ -61,3 +61,3 @@

/**
* Resize an image with parameters
* Resize an image while preserving aspect ratio
* Resize an image to a maximum width and maximum height, while preserving the image&#39;s original aspect ratio

@@ -114,2 +114,64 @@ * @param {Number} maxWidth Maximum width of the output image - final image will be as large as possible while less than or equial to this width

}
/**
* Callback function to receive the result of the resizeResizeSimple operation.
* @callback module:api/ResizeApi~resizeResizeSimpleCallback
* @param {String} error Error message, if any.
* @param {'Blob'} data The data returned by the service call.
* @param {String} response The complete HTTP response.
*/
/**
* Resize an image
* Resize an image to a specific width and specific height
* @param {Number} width
* @param {Number} height
* @param {File} imageFile Image file to perform the operation on. Common file formats such as PNG, JPEG are supported.
* @param {module:api/ResizeApi~resizeResizeSimpleCallback} callback The callback function, accepting three arguments: error, data, response
* data is of type: {@link 'Blob'}
*/
this.resizeResizeSimple = function(width, height, imageFile, callback) {
var postBody = null;
// verify the required parameter 'width' is set
if (width === undefined || width === null) {
throw new Error("Missing the required parameter 'width' when calling resizeResizeSimple");
}
// verify the required parameter 'height' is set
if (height === undefined || height === null) {
throw new Error("Missing the required parameter 'height' when calling resizeResizeSimple");
}
// verify the required parameter 'imageFile' is set
if (imageFile === undefined || imageFile === null) {
throw new Error("Missing the required parameter 'imageFile' when calling resizeResizeSimple");
}
var pathParams = {
'width': width,
'height': height
};
var queryParams = {
};
var collectionQueryParams = {
};
var headerParams = {
};
var formParams = {
'imageFile': imageFile
};
var authNames = ['Apikey'];
var contentTypes = ['multipart/form-data'];
var accepts = ['image/png'];
var returnType = 'Blob';
return this.apiClient.callApi(
'/image/resize/target/{width}/{height}', 'POST',
pathParams, queryParams, collectionQueryParams, headerParams, formParams, postBody,
authNames, contentTypes, accepts, returnType, callback
);
}
};

@@ -116,0 +178,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.2.3
* @version 1.2.5
*/

@@ -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/DrawPolygonInstance', 'model/DrawPolygonRequest', '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/GenderDetectionResult', 'model/ImageDescriptionResponse', 'model/NsfwResult', 'model/ObjectDetectionResult', 'model/PersonWithAge', 'model/PersonWithGender', 'model/PolygonPoint', 'model/RecognitionOutcome', 'model/TextDetectionResult', 'model/TextItem', 'model/VehicleLicensePlateDetectionResult', 'api/ArtisticApi', 'api/EditApi', 'api/FaceApi', 'api/NsfwApi', 'api/RecognizeApi', 'api/ResizeApi'], factory);
define(['ApiClient', 'model/AgeDetectionResult', 'model/ColorResult', 'model/DetectedLicensePlate', 'model/DetectedObject', 'model/DominantColorResult', 'model/DrawPolygonInstance', 'model/DrawPolygonRequest', 'model/DrawRectangleInstance', 'model/DrawRectangleRequest', 'model/DrawTextInstance', 'model/DrawTextRequest', 'model/Face', 'model/FaceCompareResponse', 'model/FaceLocateResponse', 'model/FaceLocateWithLandmarksResponse', 'model/FaceMatch', 'model/FacePoint', 'model/FaceWithLandmarks', 'model/FindSymbolResult', 'model/FineTextDetectionResult', 'model/FineTextItem', 'model/GenderDetectionResult', 'model/ImageDescriptionResponse', 'model/NsfwResult', 'model/ObjectDetectionResult', 'model/PersonWithAge', 'model/PersonWithGender', 'model/PolygonPoint', 'model/RecognitionOutcome', 'model/TextDetectionResult', 'model/TextItem', 'model/VehicleLicensePlateDetectionResult', 'api/ArtisticApi', 'api/EditApi', 'api/FaceApi', 'api/FilterApi', 'api/InfoApi', '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/DrawPolygonInstance'), require('./model/DrawPolygonRequest'), 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/GenderDetectionResult'), require('./model/ImageDescriptionResponse'), require('./model/NsfwResult'), require('./model/ObjectDetectionResult'), require('./model/PersonWithAge'), require('./model/PersonWithGender'), require('./model/PolygonPoint'), 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'));
module.exports = factory(require('./ApiClient'), require('./model/AgeDetectionResult'), require('./model/ColorResult'), require('./model/DetectedLicensePlate'), require('./model/DetectedObject'), require('./model/DominantColorResult'), require('./model/DrawPolygonInstance'), require('./model/DrawPolygonRequest'), 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/FindSymbolResult'), require('./model/FineTextDetectionResult'), require('./model/FineTextItem'), require('./model/GenderDetectionResult'), require('./model/ImageDescriptionResponse'), require('./model/NsfwResult'), require('./model/ObjectDetectionResult'), require('./model/PersonWithAge'), require('./model/PersonWithGender'), require('./model/PolygonPoint'), require('./model/RecognitionOutcome'), require('./model/TextDetectionResult'), require('./model/TextItem'), require('./model/VehicleLicensePlateDetectionResult'), require('./api/ArtisticApi'), require('./api/EditApi'), require('./api/FaceApi'), require('./api/FilterApi'), require('./api/InfoApi'), require('./api/NsfwApi'), require('./api/RecognizeApi'), require('./api/ResizeApi'));
}
}(function(ApiClient, AgeDetectionResult, DetectedLicensePlate, DetectedObject, DrawPolygonInstance, DrawPolygonRequest, DrawRectangleInstance, DrawRectangleRequest, DrawTextInstance, DrawTextRequest, Face, FaceCompareResponse, FaceLocateResponse, FaceLocateWithLandmarksResponse, FaceMatch, FacePoint, FaceWithLandmarks, FineTextDetectionResult, FineTextItem, GenderDetectionResult, ImageDescriptionResponse, NsfwResult, ObjectDetectionResult, PersonWithAge, PersonWithGender, PolygonPoint, RecognitionOutcome, TextDetectionResult, TextItem, VehicleLicensePlateDetectionResult, ArtisticApi, EditApi, FaceApi, NsfwApi, RecognizeApi, ResizeApi) {
}(function(ApiClient, AgeDetectionResult, ColorResult, DetectedLicensePlate, DetectedObject, DominantColorResult, DrawPolygonInstance, DrawPolygonRequest, DrawRectangleInstance, DrawRectangleRequest, DrawTextInstance, DrawTextRequest, Face, FaceCompareResponse, FaceLocateResponse, FaceLocateWithLandmarksResponse, FaceMatch, FacePoint, FaceWithLandmarks, FindSymbolResult, FineTextDetectionResult, FineTextItem, GenderDetectionResult, ImageDescriptionResponse, NsfwResult, ObjectDetectionResult, PersonWithAge, PersonWithGender, PolygonPoint, RecognitionOutcome, TextDetectionResult, TextItem, VehicleLicensePlateDetectionResult, ArtisticApi, EditApi, FaceApi, FilterApi, InfoApi, NsfwApi, RecognizeApi, ResizeApi) {
'use strict';

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

* @module index
* @version 1.2.3
* @version 1.2.5
*/

@@ -73,2 +73,7 @@ var exports = {

/**
* The ColorResult model constructor.
* @property {module:model/ColorResult}
*/
ColorResult: ColorResult,
/**
* The DetectedLicensePlate model constructor.

@@ -84,2 +89,7 @@ * @property {module:model/DetectedLicensePlate}

/**
* The DominantColorResult model constructor.
* @property {module:model/DominantColorResult}
*/
DominantColorResult: DominantColorResult,
/**
* The DrawPolygonInstance model constructor.

@@ -150,2 +160,7 @@ * @property {module:model/DrawPolygonInstance}

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

@@ -231,2 +246,12 @@ * @property {module:model/FineTextDetectionResult}

/**
* The FilterApi service constructor.
* @property {module:api/FilterApi}
*/
FilterApi: FilterApi,
/**
* The InfoApi service constructor.
* @property {module:api/InfoApi}
*/
InfoApi: InfoApi,
/**
* The NsfwApi service constructor.

@@ -233,0 +258,0 @@ * @property {module:api/NsfwApi}

@@ -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.2.3
* @version 1.2.5
*/

@@ -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.2.3
* @version 1.2.5
*/

@@ -73,2 +73,8 @@

if (data.hasOwnProperty('LicensePlateText_BestMatch')) {
obj['LicensePlateText_BestMatch'] = ApiClient.convertToType(data['LicensePlateText_BestMatch'], 'String');
}
if (data.hasOwnProperty('LicensePlateText_RunnerUp')) {
obj['LicensePlateText_RunnerUp'] = ApiClient.convertToType(data['LicensePlateText_RunnerUp'], 'String');
}
if (data.hasOwnProperty('LocationX')) {

@@ -86,8 +92,2 @@ obj['LocationX'] = ApiClient.convertToType(data['LocationX'], 'Number');

}
if (data.hasOwnProperty('LicensePlateText_BestMatch')) {
obj['LicensePlateText_BestMatch'] = ApiClient.convertToType(data['LicensePlateText_BestMatch'], 'String');
}
if (data.hasOwnProperty('LicensePlateText_RunnerUp')) {
obj['LicensePlateText_RunnerUp'] = ApiClient.convertToType(data['LicensePlateText_RunnerUp'], 'String');
}
if (data.hasOwnProperty('LicensePlateRecognitionConfidenceLevel')) {

@@ -101,2 +101,13 @@ obj['LicensePlateRecognitionConfidenceLevel'] = ApiClient.convertToType(data['LicensePlateRecognitionConfidenceLevel'], 'Number');

/**
* Text from the license plate, highest-confidence result
* @member {String} LicensePlateText_BestMatch
*/
exports.prototype['LicensePlateText_BestMatch'] = undefined;
/**
* Alternate text from the license plate, based on second-highest-confidence result
* @member {String} LicensePlateText_RunnerUp
*/
exports.prototype['LicensePlateText_RunnerUp'] = undefined;
/**
* X location of the left edge of the license plate, starting from the left edge of the photo (X = 0)
* @member {Number} LocationX

@@ -106,2 +117,3 @@ */

/**
* Y location of the top edge of the license plate, starting from the top edge of the photo (Y = 0)
* @member {Number} LocationY

@@ -111,2 +123,3 @@ */

/**
* Width of the license plate's location in pixels
* @member {Number} Width

@@ -116,2 +129,3 @@ */

/**
* Height of the license plate's location in pixels
* @member {Number} Height

@@ -121,12 +135,2 @@ */

/**
* Text from the license plate, highest-confidence result
* @member {String} LicensePlateText_BestMatch
*/
exports.prototype['LicensePlateText_BestMatch'] = undefined;
/**
* Alternate text from the license plate, based on second-highest-confidence result
* @member {String} LicensePlateText_RunnerUp
*/
exports.prototype['LicensePlateText_RunnerUp'] = undefined;
/**
* Confidence score on a range of 0.0 - 1.0 of the accuracy of the detected license plate, with higher scores being better; values about 0.75 are high confidence

@@ -133,0 +137,0 @@ * @member {Number} LicensePlateRecognitionConfidenceLevel

@@ -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.2.3
* @version 1.2.5
*/

@@ -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/DrawPolygonInstance
* @version 1.2.3
* @version 1.2.5
*/

@@ -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/DrawPolygonRequest
* @version 1.2.3
* @version 1.2.5
*/

@@ -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.2.3
* @version 1.2.5
*/

@@ -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.2.3
* @version 1.2.5
*/

@@ -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.2.3
* @version 1.2.5
*/

@@ -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.2.3
* @version 1.2.5
*/

@@ -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.2.3
* @version 1.2.5
*/

@@ -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.2.3
* @version 1.2.5
*/

@@ -70,5 +70,2 @@

if (data.hasOwnProperty('ErrorDetails')) {
obj['ErrorDetails'] = ApiClient.convertToType(data['ErrorDetails'], 'String');
}
if (data.hasOwnProperty('Successful')) {

@@ -83,2 +80,5 @@ obj['Successful'] = ApiClient.convertToType(data['Successful'], 'Boolean');

}
if (data.hasOwnProperty('ErrorDetails')) {
obj['ErrorDetails'] = ApiClient.convertToType(data['ErrorDetails'], 'String');
}
}

@@ -89,6 +89,2 @@ return obj;

/**
* @member {String} ErrorDetails
*/
exports.prototype['ErrorDetails'] = undefined;
/**
* True if the operation was successful, false otherwise

@@ -108,2 +104,7 @@ * @member {Boolean} Successful

exports.prototype['FaceCount'] = undefined;
/**
* Details of any errors that occurred
* @member {String} ErrorDetails
*/
exports.prototype['ErrorDetails'] = undefined;

@@ -110,0 +111,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.2.3
* @version 1.2.5
*/

@@ -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.2.3
* @version 1.2.5
*/

@@ -70,5 +70,2 @@

if (data.hasOwnProperty('ErrorDetails')) {
obj['ErrorDetails'] = ApiClient.convertToType(data['ErrorDetails'], 'String');
}
if (data.hasOwnProperty('Successful')) {

@@ -83,2 +80,5 @@ obj['Successful'] = ApiClient.convertToType(data['Successful'], 'Boolean');

}
if (data.hasOwnProperty('ErrorDetails')) {
obj['ErrorDetails'] = ApiClient.convertToType(data['ErrorDetails'], 'String');
}
}

@@ -89,6 +89,2 @@ return obj;

/**
* @member {String} ErrorDetails
*/
exports.prototype['ErrorDetails'] = undefined;
/**
* True if the operation was successful, false otherwise

@@ -108,2 +104,7 @@ * @member {Boolean} Successful

exports.prototype['FaceCount'] = undefined;
/**
* Details of any errors that occurred
* @member {String} ErrorDetails
*/
exports.prototype['ErrorDetails'] = undefined;

@@ -110,0 +111,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.2.3
* @version 1.2.5
*/

@@ -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.2.3
* @version 1.2.5
*/

@@ -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.2.3
* @version 1.2.5
*/

@@ -79,2 +79,14 @@

if (data.hasOwnProperty('LeftX')) {
obj['LeftX'] = ApiClient.convertToType(data['LeftX'], 'Number');
}
if (data.hasOwnProperty('TopY')) {
obj['TopY'] = ApiClient.convertToType(data['TopY'], 'Number');
}
if (data.hasOwnProperty('RightX')) {
obj['RightX'] = ApiClient.convertToType(data['RightX'], 'Number');
}
if (data.hasOwnProperty('BottomY')) {
obj['BottomY'] = ApiClient.convertToType(data['BottomY'], 'Number');
}
if (data.hasOwnProperty('LeftEyebrow')) {

@@ -107,14 +119,2 @@ obj['LeftEyebrow'] = ApiClient.convertToType(data['LeftEyebrow'], [FacePoint]);

}
if (data.hasOwnProperty('LeftX')) {
obj['LeftX'] = ApiClient.convertToType(data['LeftX'], 'Number');
}
if (data.hasOwnProperty('TopY')) {
obj['TopY'] = ApiClient.convertToType(data['TopY'], 'Number');
}
if (data.hasOwnProperty('RightX')) {
obj['RightX'] = ApiClient.convertToType(data['RightX'], 'Number');
}
if (data.hasOwnProperty('BottomY')) {
obj['BottomY'] = ApiClient.convertToType(data['BottomY'], 'Number');
}
}

@@ -125,2 +125,23 @@ return obj;

/**
* X coordinate of the left side of the face
* @member {Number} LeftX
*/
exports.prototype['LeftX'] = undefined;
/**
* Y coordinate of the top side of the face
* @member {Number} TopY
*/
exports.prototype['TopY'] = undefined;
/**
* X coordinate of the right side of the face
* @member {Number} RightX
*/
exports.prototype['RightX'] = undefined;
/**
* Y coordinate of the bottom side of the face
* @member {Number} BottomY
*/
exports.prototype['BottomY'] = undefined;
/**
* Point locations of the left eyebrow (the eyebrow cloesest to the left side of the picture)
* @member {Array.<module:model/FacePoint>} LeftEyebrow

@@ -130,2 +151,3 @@ */

/**
* Point locations of the right eyebrow (the eyebrow cloesest to the right side of the picture)
* @member {Array.<module:model/FacePoint>} RightEyebrow

@@ -135,2 +157,3 @@ */

/**
* Point locations of the left eye (the eye closest to the left side of the picture)
* @member {Array.<module:model/FacePoint>} LeftEye

@@ -140,2 +163,3 @@ */

/**
* Point locations of the right eye (the eye closest to the right side of the picture)
* @member {Array.<module:model/FacePoint>} RightEye

@@ -145,2 +169,3 @@ */

/**
* Point locations of the bottom and sides of the face (cheeks and chin)
* @member {Array.<module:model/FacePoint>} BottomAndSidesOfFace

@@ -150,2 +175,3 @@ */

/**
* Point locations of the nose bridge (the vertical portion of the nose)
* @member {Array.<module:model/FacePoint>} NoseBridge

@@ -155,2 +181,3 @@ */

/**
* Point locations of the bottom (nostrils) of the nose
* @member {Array.<module:model/FacePoint>} NoseBottom

@@ -160,2 +187,3 @@ */

/**
* Point locations of the inner outline of the lips
* @member {Array.<module:model/FacePoint>} LipsInnerOutline

@@ -165,25 +193,6 @@ */

/**
* Point locations of the outer outline of the lips
* @member {Array.<module:model/FacePoint>} LipsOuterOutline
*/
exports.prototype['LipsOuterOutline'] = undefined;
/**
* X coordinate of the left side of the face
* @member {Number} LeftX
*/
exports.prototype['LeftX'] = undefined;
/**
* Y coordinate of the top side of the face
* @member {Number} TopY
*/
exports.prototype['TopY'] = undefined;
/**
* X coordinate of the right side of the face
* @member {Number} RightX
*/
exports.prototype['RightX'] = undefined;
/**
* Y coordinate of the bottom side of the face
* @member {Number} BottomY
*/
exports.prototype['BottomY'] = undefined;

@@ -190,0 +199,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/FineTextDetectionResult
* @version 1.2.3
* @version 1.2.5
*/

@@ -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/FineTextItem
* @version 1.2.3
* @version 1.2.5
*/

@@ -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/GenderDetectionResult
* @version 1.2.3
* @version 1.2.5
*/

@@ -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.2.3
* @version 1.2.5
*/

@@ -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.2.3
* @version 1.2.5
*/

@@ -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.2.3
* @version 1.2.5
*/

@@ -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.2.3
* @version 1.2.5
*/

@@ -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/PersonWithGender
* @version 1.2.3
* @version 1.2.5
*/

@@ -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/PolygonPoint
* @version 1.2.3
* @version 1.2.5
*/

@@ -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.2.3
* @version 1.2.5
*/

@@ -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/TextDetectionResult
* @version 1.2.3
* @version 1.2.5
*/

@@ -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/TextItem
* @version 1.2.3
* @version 1.2.5
*/

@@ -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.2.3
* @version 1.2.5
*/

@@ -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
*

@@ -84,2 +84,12 @@ * Do not edit the class manually.

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

@@ -115,2 +125,12 @@ it('should call editDrawPolygon successfully', function(done) {

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

@@ -117,0 +137,0 @@ it('should call editRotate 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
*

@@ -124,4 +124,14 @@ * Do not edit the class manually.

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

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

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

@@ -64,4 +64,14 @@ * Do not edit the class manually.

});
describe('resizeResizeSimple', function() {
it('should call resizeResizeSimple successfully', function(done) {
//uncomment below and update the code to test resizeResizeSimple
//instance.resizeResizeSimple(function(error) {
// if (error) throw error;
//expect().to.be();
//});
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
*

@@ -60,2 +60,14 @@ * Do not edit the class manually.

it('should have the property licensePlateTextBestMatch (base name: "LicensePlateText_BestMatch")', function() {
// uncomment below and update the code to test the property licensePlateTextBestMatch
//var instane = new CloudmersiveImageApiClient.DetectedLicensePlate();
//expect(instance).to.be();
});
it('should have the property licensePlateTextRunnerUp (base name: "LicensePlateText_RunnerUp")', function() {
// uncomment below and update the code to test the property licensePlateTextRunnerUp
//var instane = new CloudmersiveImageApiClient.DetectedLicensePlate();
//expect(instance).to.be();
});
it('should have the property locationX (base name: "LocationX")', function() {

@@ -85,14 +97,2 @@ // uncomment below and update the code to test the property locationX

it('should have the property licensePlateTextBestMatch (base name: "LicensePlateText_BestMatch")', function() {
// uncomment below and update the code to test the property licensePlateTextBestMatch
//var instane = new CloudmersiveImageApiClient.DetectedLicensePlate();
//expect(instance).to.be();
});
it('should have the property licensePlateTextRunnerUp (base name: "LicensePlateText_RunnerUp")', function() {
// uncomment below and update the code to test the property licensePlateTextRunnerUp
//var instane = new CloudmersiveImageApiClient.DetectedLicensePlate();
//expect(instance).to.be();
});
it('should have the property licensePlateRecognitionConfidenceLevel (base name: "LicensePlateRecognitionConfidenceLevel")', function() {

@@ -99,0 +99,0 @@ // uncomment below and update the code to test the property licensePlateRecognitionConfidenceLevel

@@ -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
*

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

it('should have the property errorDetails (base name: "ErrorDetails")', function() {
// uncomment below and update the code to test the property errorDetails
//var instane = new CloudmersiveImageApiClient.FaceCompareResponse();
//expect(instance).to.be();
});
it('should have the property successful (base name: "Successful")', function() {

@@ -85,4 +79,10 @@ // uncomment below and update the code to test the property successful

it('should have the property errorDetails (base name: "ErrorDetails")', function() {
// uncomment below and update the code to test the property errorDetails
//var instane = new CloudmersiveImageApiClient.FaceCompareResponse();
//expect(instance).to.be();
});
});
}));

@@ -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
*

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

it('should have the property errorDetails (base name: "ErrorDetails")', function() {
// uncomment below and update the code to test the property errorDetails
//var instane = new CloudmersiveImageApiClient.FaceLocateWithLandmarksResponse();
//expect(instance).to.be();
});
it('should have the property successful (base name: "Successful")', function() {

@@ -85,4 +79,10 @@ // uncomment below and update the code to test the property successful

it('should have the property errorDetails (base name: "ErrorDetails")', function() {
// uncomment below and update the code to test the property errorDetails
//var instane = new CloudmersiveImageApiClient.FaceLocateWithLandmarksResponse();
//expect(instance).to.be();
});
});
}));

@@ -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
*

@@ -60,2 +60,26 @@ * Do not edit the class manually.

it('should have the property leftX (base name: "LeftX")', function() {
// uncomment below and update the code to test the property leftX
//var instane = new CloudmersiveImageApiClient.FaceWithLandmarks();
//expect(instance).to.be();
});
it('should have the property topY (base name: "TopY")', function() {
// uncomment below and update the code to test the property topY
//var instane = new CloudmersiveImageApiClient.FaceWithLandmarks();
//expect(instance).to.be();
});
it('should have the property rightX (base name: "RightX")', function() {
// uncomment below and update the code to test the property rightX
//var instane = new CloudmersiveImageApiClient.FaceWithLandmarks();
//expect(instance).to.be();
});
it('should have the property bottomY (base name: "BottomY")', function() {
// uncomment below and update the code to test the property bottomY
//var instane = new CloudmersiveImageApiClient.FaceWithLandmarks();
//expect(instance).to.be();
});
it('should have the property leftEyebrow (base name: "LeftEyebrow")', function() {

@@ -115,28 +139,4 @@ // uncomment below and update the code to test the property leftEyebrow

it('should have the property leftX (base name: "LeftX")', function() {
// uncomment below and update the code to test the property leftX
//var instane = new CloudmersiveImageApiClient.FaceWithLandmarks();
//expect(instance).to.be();
});
it('should have the property topY (base name: "TopY")', function() {
// uncomment below and update the code to test the property topY
//var instane = new CloudmersiveImageApiClient.FaceWithLandmarks();
//expect(instance).to.be();
});
it('should have the property rightX (base name: "RightX")', function() {
// uncomment below and update the code to test the property rightX
//var instane = new CloudmersiveImageApiClient.FaceWithLandmarks();
//expect(instance).to.be();
});
it('should have the property bottomY (base name: "BottomY")', function() {
// uncomment below and update the code to test the property bottomY
//var instane = new CloudmersiveImageApiClient.FaceWithLandmarks();
//expect(instance).to.be();
});
});
}));

@@ -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