Regenerate azure-cognitiveservices-computervision package

This commit is contained in:
Kamil Pajdzik 2019-01-30 11:58:26 -08:00
Родитель 8c41fdcc70
Коммит 1995c3cbe8
39 изменённых файлов: 523 добавлений и 636 удалений

Просмотреть файл

@ -1,6 +1,6 @@
The MIT License (MIT)
Copyright (c) 2018 Microsoft
Copyright (c) 2019 Microsoft
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

Просмотреть файл

@ -18,12 +18,13 @@
class AdultInfo {
/**
* Create a AdultInfo.
* @member {boolean} [isAdultContent] A value indicating if the image
* @property {boolean} [isAdultContent] A value indicating if the image
* contains adult-oriented content.
* @member {boolean} [isRacyContent] A value indicating if the image is racy.
* @member {number} [adultScore] Score from 0 to 1 that indicates how much
* @property {boolean} [isRacyContent] A value indicating if the image is
* racy.
* @property {number} [adultScore] Score from 0 to 1 that indicates how much
* the content is considered adult-oriented within the image.
* @member {number} [racyScore] Score from 0 to 1 that indicates how
* @property {number} [racyScore] Score from 0 to 1 that indicates how
* suggestive is the image.
*/
constructor() {

Просмотреть файл

@ -17,21 +17,21 @@
class AreaOfInterestResult {
/**
* Create a AreaOfInterestResult.
* @member {object} [areaOfInterest] A bounding box for an area of interest
* @property {object} [areaOfInterest] A bounding box for an area of interest
* inside an image.
* @member {number} [areaOfInterest.x] X-coordinate of the top left point of
* the area, in pixels.
* @member {number} [areaOfInterest.y] Y-coordinate of the top left point of
* the area, in pixels.
* @member {number} [areaOfInterest.w] Width measured from the top-left point
* @property {number} [areaOfInterest.x] X-coordinate of the top left point
* of the area, in pixels.
* @member {number} [areaOfInterest.h] Height measured from the top-left
* @property {number} [areaOfInterest.y] Y-coordinate of the top left point
* of the area, in pixels.
* @property {number} [areaOfInterest.w] Width measured from the top-left
* point of the area, in pixels.
* @member {string} [requestId] Id of the REST API request.
* @member {object} [metadata]
* @member {number} [metadata.width] Image width, in pixels.
* @member {number} [metadata.height] Image height, in pixels.
* @member {string} [metadata.format] Image format.
* @property {number} [areaOfInterest.h] Height measured from the top-left
* point of the area, in pixels.
* @property {string} [requestId] Id of the REST API request.
* @property {object} [metadata]
* @property {number} [metadata.width] Image width, in pixels.
* @property {number} [metadata.height] Image height, in pixels.
* @property {string} [metadata.format] Image format.
*/
constructor() {
}

Просмотреть файл

@ -17,14 +17,14 @@
class BoundingRect {
/**
* Create a BoundingRect.
* @member {number} [x] X-coordinate of the top left point of the area, in
* @property {number} [x] X-coordinate of the top left point of the area, in
* pixels.
* @member {number} [y] Y-coordinate of the top left point of the area, in
* @property {number} [y] Y-coordinate of the top left point of the area, in
* pixels.
* @member {number} [w] Width measured from the top-left point of the area,
* in pixels.
* @member {number} [h] Height measured from the top-left point of the area,
* @property {number} [w] Width measured from the top-left point of the area,
* in pixels.
* @property {number} [h] Height measured from the top-left point of the
* area, in pixels.
*/
constructor() {
}

Просмотреть файл

@ -17,12 +17,12 @@
class Category {
/**
* Create a Category.
* @member {string} [name] Name of the category.
* @member {number} [score] Scoring of the category.
* @member {object} [detail] Details of the identified category.
* @member {array} [detail.celebrities] An array of celebrities if any
* @property {string} [name] Name of the category.
* @property {number} [score] Scoring of the category.
* @property {object} [detail] Details of the identified category.
* @property {array} [detail.celebrities] An array of celebrities if any
* identified.
* @member {array} [detail.landmarks] An array of landmarks if any
* @property {array} [detail.landmarks] An array of landmarks if any
* identified.
*/
constructor() {

Просмотреть файл

@ -17,8 +17,8 @@
class CategoryDetail {
/**
* Create a CategoryDetail.
* @member {array} [celebrities] An array of celebrities if any identified.
* @member {array} [landmarks] An array of landmarks if any identified.
* @property {array} [celebrities] An array of celebrities if any identified.
* @property {array} [landmarks] An array of landmarks if any identified.
*/
constructor() {
}

Просмотреть файл

@ -17,19 +17,19 @@
class CelebritiesModel {
/**
* Create a CelebritiesModel.
* @member {string} [name] Name of the celebrity.
* @member {number} [confidence] Confidence level for the celebrity
* @property {string} [name] Name of the celebrity.
* @property {number} [confidence] Confidence level for the celebrity
* recognition as a value ranging from 0 to 1.
* @member {object} [faceRectangle] Location of the identified face in the
* @property {object} [faceRectangle] Location of the identified face in the
* image.
* @member {number} [faceRectangle.left] X-coordinate of the top left point
* @property {number} [faceRectangle.left] X-coordinate of the top left point
* of the face, in pixels.
* @member {number} [faceRectangle.top] Y-coordinate of the top left point of
* the face, in pixels.
* @member {number} [faceRectangle.width] Width measured from the top-left
* point of the face, in pixels.
* @member {number} [faceRectangle.height] Height measured from the top-left
* @property {number} [faceRectangle.top] Y-coordinate of the top left point
* of the face, in pixels.
* @property {number} [faceRectangle.width] Width measured from the top-left
* point of the face, in pixels.
* @property {number} [faceRectangle.height] Height measured from the
* top-left point of the face, in pixels.
*/
constructor() {
}

Просмотреть файл

@ -17,12 +17,13 @@
class CelebrityResults {
/**
* Create a CelebrityResults.
* @member {array} [celebrities] List of celebrities recognized in the image.
* @member {string} [requestId] Id of the REST API request.
* @member {object} [metadata]
* @member {number} [metadata.width] Image width, in pixels.
* @member {number} [metadata.height] Image height, in pixels.
* @member {string} [metadata.format] Image format.
* @property {array} [celebrities] List of celebrities recognized in the
* image.
* @property {string} [requestId] Id of the REST API request.
* @property {object} [metadata]
* @property {number} [metadata.width] Image width, in pixels.
* @property {number} [metadata.height] Image height, in pixels.
* @property {string} [metadata.format] Image format.
*/
constructor() {
}

Просмотреть файл

@ -17,13 +17,13 @@
class ColorInfo {
/**
* Create a ColorInfo.
* @member {string} [dominantColorForeground] Possible dominant foreground
* @property {string} [dominantColorForeground] Possible dominant foreground
* color.
* @member {string} [dominantColorBackground] Possible dominant background
* @property {string} [dominantColorBackground] Possible dominant background
* color.
* @member {array} [dominantColors] An array of possible dominant colors.
* @member {string} [accentColor] Possible accent color.
* @member {boolean} [isBWImg] A value indicating if the image is black and
* @property {array} [dominantColors] An array of possible dominant colors.
* @property {string} [accentColor] Possible accent color.
* @property {boolean} [isBWImg] A value indicating if the image is black and
* white.
*/
constructor() {

Просмотреть файл

@ -17,10 +17,10 @@
class ComputerVisionError {
/**
* Create a ComputerVisionError.
* @member {object} code The error code.
* @member {string} message A message explaining the error reported by the
* @property {object} code The error code.
* @property {string} message A message explaining the error reported by the
* service.
* @member {string} [requestId] A unique request identifier.
* @property {string} [requestId] A unique request identifier.
*/
constructor() {
}

Просмотреть файл

@ -17,12 +17,12 @@
class DetectResult {
/**
* Create a DetectResult.
* @member {array} [objects] An array of detected objects.
* @member {string} [requestId] Id of the REST API request.
* @member {object} [metadata]
* @member {number} [metadata.width] Image width, in pixels.
* @member {number} [metadata.height] Image height, in pixels.
* @member {string} [metadata.format] Image format.
* @property {array} [objects] An array of detected objects.
* @property {string} [requestId] Id of the REST API request.
* @property {object} [metadata]
* @property {number} [metadata.width] Image width, in pixels.
* @property {number} [metadata.height] Image height, in pixels.
* @property {string} [metadata.format] Image format.
*/
constructor() {
}

Просмотреть файл

@ -17,25 +17,27 @@
class DetectedObject {
/**
* Create a DetectedObject.
* @member {object} [rectangle] Approximate location of the detected object.
* @member {number} [rectangle.x] X-coordinate of the top left point of the
* @property {object} [rectangle] Approximate location of the detected
* object.
* @property {number} [rectangle.x] X-coordinate of the top left point of the
* area, in pixels.
* @member {number} [rectangle.y] Y-coordinate of the top left point of the
* @property {number} [rectangle.y] Y-coordinate of the top left point of the
* area, in pixels.
* @member {number} [rectangle.w] Width measured from the top-left point of
* @property {number} [rectangle.w] Width measured from the top-left point of
* the area, in pixels.
* @member {number} [rectangle.h] Height measured from the top-left point of
* the area, in pixels.
* @member {string} [object] Label for the object.
* @member {number} [confidence] Confidence score of having observed the
* @property {number} [rectangle.h] Height measured from the top-left point
* of the area, in pixels.
* @property {string} [object] Label for the object.
* @property {number} [confidence] Confidence score of having observed the
* object in the image, as a value ranging from 0 to 1.
* @member {object} [parent] The parent object, from a taxonomy perspective.
* @property {object} [parent] The parent object, from a taxonomy
* perspective.
* The parent object is a more generic form of this object. For example, a
* 'bulldog' would have a parent of 'dog'.
* @member {string} [parent.object] Label for the object.
* @member {number} [parent.confidence] Confidence score of having observed
* @property {string} [parent.object] Label for the object.
* @property {number} [parent.confidence] Confidence score of having observed
* the object in the image, as a value ranging from 0 to 1.
* @member {object} [parent.parent] The parent object, from a taxonomy
* @property {object} [parent.parent] The parent object, from a taxonomy
* perspective.
* The parent object is a more generic form of this object. For example, a
* 'bulldog' would have a parent of 'dog'.

Просмотреть файл

@ -18,12 +18,12 @@
class DomainModelResults {
/**
* Create a DomainModelResults.
* @member {object} [result] Model-specific response.
* @member {string} [requestId] Id of the REST API request.
* @member {object} [metadata]
* @member {number} [metadata.width] Image width, in pixels.
* @member {number} [metadata.height] Image height, in pixels.
* @member {string} [metadata.format] Image format.
* @property {object} [result] Model-specific response.
* @property {string} [requestId] Id of the REST API request.
* @property {object} [metadata]
* @property {number} [metadata.width] Image width, in pixels.
* @property {number} [metadata.height] Image height, in pixels.
* @property {string} [metadata.format] Image format.
*/
constructor() {
}

Просмотреть файл

@ -17,19 +17,19 @@
class FaceDescription {
/**
* Create a FaceDescription.
* @member {number} [age] Possible age of the face.
* @member {string} [gender] Possible gender of the face. Possible values
* @property {number} [age] Possible age of the face.
* @property {string} [gender] Possible gender of the face. Possible values
* include: 'Male', 'Female'
* @member {object} [faceRectangle] Rectangle in the image containing the
* @property {object} [faceRectangle] Rectangle in the image containing the
* identified face.
* @member {number} [faceRectangle.left] X-coordinate of the top left point
* @property {number} [faceRectangle.left] X-coordinate of the top left point
* of the face, in pixels.
* @member {number} [faceRectangle.top] Y-coordinate of the top left point of
* the face, in pixels.
* @member {number} [faceRectangle.width] Width measured from the top-left
* point of the face, in pixels.
* @member {number} [faceRectangle.height] Height measured from the top-left
* @property {number} [faceRectangle.top] Y-coordinate of the top left point
* of the face, in pixels.
* @property {number} [faceRectangle.width] Width measured from the top-left
* point of the face, in pixels.
* @property {number} [faceRectangle.height] Height measured from the
* top-left point of the face, in pixels.
*/
constructor() {
}

Просмотреть файл

@ -17,13 +17,13 @@
class FaceRectangle {
/**
* Create a FaceRectangle.
* @member {number} [left] X-coordinate of the top left point of the face, in
* pixels.
* @member {number} [top] Y-coordinate of the top left point of the face, in
* pixels.
* @member {number} [width] Width measured from the top-left point of the
* @property {number} [left] X-coordinate of the top left point of the face,
* in pixels.
* @property {number} [top] Y-coordinate of the top left point of the face,
* in pixels.
* @property {number} [width] Width measured from the top-left point of the
* face, in pixels.
* @member {number} [height] Height measured from the top-left point of the
* @property {number} [height] Height measured from the top-left point of the
* face, in pixels.
*/
constructor() {

Просмотреть файл

@ -17,48 +17,48 @@
class ImageAnalysis {
/**
* Create a ImageAnalysis.
* @member {array} [categories] An array indicating identified categories.
* @member {object} [adult] An object describing whether the image contains
* @property {array} [categories] An array indicating identified categories.
* @property {object} [adult] An object describing whether the image contains
* adult-oriented content and/or is racy.
* @member {boolean} [adult.isAdultContent] A value indicating if the image
* @property {boolean} [adult.isAdultContent] A value indicating if the image
* contains adult-oriented content.
* @member {boolean} [adult.isRacyContent] A value indicating if the image is
* racy.
* @member {number} [adult.adultScore] Score from 0 to 1 that indicates how
* @property {boolean} [adult.isRacyContent] A value indicating if the image
* is racy.
* @property {number} [adult.adultScore] Score from 0 to 1 that indicates how
* much the content is considered adult-oriented within the image.
* @member {number} [adult.racyScore] Score from 0 to 1 that indicates how
* @property {number} [adult.racyScore] Score from 0 to 1 that indicates how
* suggestive is the image.
* @member {object} [color] An object providing additional metadata
* @property {object} [color] An object providing additional metadata
* describing color attributes.
* @member {string} [color.dominantColorForeground] Possible dominant
* @property {string} [color.dominantColorForeground] Possible dominant
* foreground color.
* @member {string} [color.dominantColorBackground] Possible dominant
* @property {string} [color.dominantColorBackground] Possible dominant
* background color.
* @member {array} [color.dominantColors] An array of possible dominant
* @property {array} [color.dominantColors] An array of possible dominant
* colors.
* @member {string} [color.accentColor] Possible accent color.
* @member {boolean} [color.isBWImg] A value indicating if the image is black
* and white.
* @member {object} [imageType] An object providing possible image types and
* matching confidence levels.
* @member {number} [imageType.clipArtType] Confidence level that the image
* @property {string} [color.accentColor] Possible accent color.
* @property {boolean} [color.isBWImg] A value indicating if the image is
* black and white.
* @property {object} [imageType] An object providing possible image types
* and matching confidence levels.
* @property {number} [imageType.clipArtType] Confidence level that the image
* is a clip art.
* @member {number} [imageType.lineDrawingType] Confidence level that the
* @property {number} [imageType.lineDrawingType] Confidence level that the
* image is a line drawing.
* @member {array} [tags] A list of tags with confidence level.
* @member {object} [description] A collection of content tags, along with a
* list of captions sorted by confidence level, and image metadata.
* @member {array} [description.tags] A collection of image tags.
* @member {array} [description.captions] A list of captions, sorted by
* @property {array} [tags] A list of tags with confidence level.
* @property {object} [description] A collection of content tags, along with
* a list of captions sorted by confidence level, and image metadata.
* @property {array} [description.tags] A collection of image tags.
* @property {array} [description.captions] A list of captions, sorted by
* confidence level.
* @member {array} [faces] An array of possible faces within the image.
* @member {array} [objects] Array of objects describing what was detected in
* the image.
* @member {string} [requestId] Id of the REST API request.
* @member {object} [metadata]
* @member {number} [metadata.width] Image width, in pixels.
* @member {number} [metadata.height] Image height, in pixels.
* @member {string} [metadata.format] Image format.
* @property {array} [faces] An array of possible faces within the image.
* @property {array} [objects] Array of objects describing what was detected
* in the image.
* @property {string} [requestId] Id of the REST API request.
* @property {object} [metadata]
* @property {number} [metadata.width] Image width, in pixels.
* @property {number} [metadata.height] Image height, in pixels.
* @property {string} [metadata.format] Image format.
*/
constructor() {
}

Просмотреть файл

@ -17,8 +17,8 @@
class ImageCaption {
/**
* Create a ImageCaption.
* @member {string} [text] The text of the caption.
* @member {number} [confidence] The level of confidence the service has in
* @property {string} [text] The text of the caption.
* @property {number} [confidence] The level of confidence the service has in
* the caption.
*/
constructor() {

Просмотреть файл

@ -18,13 +18,14 @@
class ImageDescription {
/**
* Create a ImageDescription.
* @member {array} [tags] A collection of image tags.
* @member {array} [captions] A list of captions, sorted by confidence level.
* @member {string} [requestId] Id of the REST API request.
* @member {object} [metadata]
* @member {number} [metadata.width] Image width, in pixels.
* @member {number} [metadata.height] Image height, in pixels.
* @member {string} [metadata.format] Image format.
* @property {array} [tags] A collection of image tags.
* @property {array} [captions] A list of captions, sorted by confidence
* level.
* @property {string} [requestId] Id of the REST API request.
* @property {object} [metadata]
* @property {number} [metadata.width] Image width, in pixels.
* @property {number} [metadata.height] Image height, in pixels.
* @property {string} [metadata.format] Image format.
*/
constructor() {
}

Просмотреть файл

@ -18,8 +18,9 @@
class ImageDescriptionDetails {
/**
* Create a ImageDescriptionDetails.
* @member {array} [tags] A collection of image tags.
* @member {array} [captions] A list of captions, sorted by confidence level.
* @property {array} [tags] A collection of image tags.
* @property {array} [captions] A list of captions, sorted by confidence
* level.
*/
constructor() {
}

Просмотреть файл

@ -17,9 +17,9 @@
class ImageMetadata {
/**
* Create a ImageMetadata.
* @member {number} [width] Image width, in pixels.
* @member {number} [height] Image height, in pixels.
* @member {string} [format] Image format.
* @property {number} [width] Image width, in pixels.
* @property {number} [height] Image height, in pixels.
* @property {string} [format] Image format.
*/
constructor() {
}

Просмотреть файл

@ -17,10 +17,10 @@
class ImageTag {
/**
* Create a ImageTag.
* @member {string} [name] Name of the entity.
* @member {number} [confidence] The level of confidence that the entity was
* observed.
* @member {string} [hint] Optional hint/details for this tag.
* @property {string} [name] Name of the entity.
* @property {number} [confidence] The level of confidence that the entity
* was observed.
* @property {string} [hint] Optional hint/details for this tag.
*/
constructor() {
}

Просмотреть файл

@ -17,9 +17,9 @@
class ImageType {
/**
* Create a ImageType.
* @member {number} [clipArtType] Confidence level that the image is a clip
* @property {number} [clipArtType] Confidence level that the image is a clip
* art.
* @member {number} [lineDrawingType] Confidence level that the image is a
* @property {number} [lineDrawingType] Confidence level that the image is a
* line drawing.
*/
constructor() {

Просмотреть файл

@ -16,7 +16,7 @@
class ImageUrl {
/**
* Create a ImageUrl.
* @member {string} url Publicly reachable URL of an image.
* @property {string} url Publicly reachable URL of an image.
*/
constructor() {
}

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -17,12 +17,12 @@
class LandmarkResults {
/**
* Create a LandmarkResults.
* @member {array} [landmarks] List of landmarks recognized in the image.
* @member {string} [requestId] Id of the REST API request.
* @member {object} [metadata]
* @member {number} [metadata.width] Image width, in pixels.
* @member {number} [metadata.height] Image height, in pixels.
* @member {string} [metadata.format] Image format.
* @property {array} [landmarks] List of landmarks recognized in the image.
* @property {string} [requestId] Id of the REST API request.
* @property {object} [metadata]
* @property {number} [metadata.width] Image width, in pixels.
* @property {number} [metadata.height] Image height, in pixels.
* @property {string} [metadata.format] Image format.
*/
constructor() {
}

Просмотреть файл

@ -17,8 +17,8 @@
class LandmarksModel {
/**
* Create a LandmarksModel.
* @member {string} [name] Name of the landmark.
* @member {number} [confidence] Confidence level for the landmark
* @property {string} [name] Name of the landmark.
* @property {number} [confidence] Confidence level for the landmark
* recognition as a value ranging from 0 to 1.
*/
constructor() {

Просмотреть файл

@ -16,9 +16,9 @@
class Line {
/**
* Create a Line.
* @member {array} [boundingBox]
* @member {string} [text]
* @member {array} [words]
* @property {array} [boundingBox]
* @property {string} [text]
* @property {array} [words]
*/
constructor() {
}

Просмотреть файл

@ -17,7 +17,7 @@
class ListModelsResult {
/**
* Create a ListModelsResult.
* @member {array} [modelsProperty] An array of supported models.
* @property {array} [modelsProperty] An array of supported models.
*/
constructor() {
}

Просмотреть файл

@ -17,8 +17,8 @@
class ModelDescription {
/**
* Create a ModelDescription.
* @member {string} [name] The name of the model.
* @member {array} [categories] Categories of the model.
* @property {string} [name] The name of the model.
* @property {array} [categories] Categories of the model.
*/
constructor() {
}

Просмотреть файл

@ -17,10 +17,11 @@
class ObjectHierarchy {
/**
* Create a ObjectHierarchy.
* @member {string} [object] Label for the object.
* @member {number} [confidence] Confidence score of having observed the
* @property {string} [object] Label for the object.
* @property {number} [confidence] Confidence score of having observed the
* object in the image, as a value ranging from 0 to 1.
* @member {object} [parent] The parent object, from a taxonomy perspective.
* @property {object} [parent] The parent object, from a taxonomy
* perspective.
* The parent object is a more generic form of this object. For example, a
* 'bulldog' would have a parent of 'dog'.
*/

Просмотреть файл

@ -17,14 +17,14 @@
class OcrLine {
/**
* Create a OcrLine.
* @member {string} [boundingBox] Bounding box of a recognized line. The four
* integers represent the x-coordinate of the left edge, the y-coordinate of
* the top edge, width, and height of the bounding box, in the coordinate
* system of the input image, after it has been rotated around its center
* according to the detected text angle (see textAngle property), with the
* origin at the top-left corner, and the y-axis pointing down.
* @member {array} [words] An array of objects, where each object represents
* a recognized word.
* @property {string} [boundingBox] Bounding box of a recognized line. The
* four integers represent the x-coordinate of the left edge, the
* y-coordinate of the top edge, width, and height of the bounding box, in
* the coordinate system of the input image, after it has been rotated around
* its center according to the detected text angle (see textAngle property),
* with the origin at the top-left corner, and the y-axis pointing down.
* @property {array} [words] An array of objects, where each object
* represents a recognized word.
*/
constructor() {
}

Просмотреть файл

@ -18,13 +18,13 @@
class OcrRegion {
/**
* Create a OcrRegion.
* @member {string} [boundingBox] Bounding box of a recognized region. The
* @property {string} [boundingBox] Bounding box of a recognized region. The
* four integers represent the x-coordinate of the left edge, the
* y-coordinate of the top edge, width, and height of the bounding box, in
* the coordinate system of the input image, after it has been rotated around
* its center according to the detected text angle (see textAngle property),
* with the origin at the top-left corner, and the y-axis pointing down.
* @member {array} [lines] An array of recognized lines of text.
* @property {array} [lines] An array of recognized lines of text.
*/
constructor() {
}

Просмотреть файл

@ -16,9 +16,9 @@
class OcrResult {
/**
* Create a OcrResult.
* @member {string} [language] The BCP-47 language code of the text in the
* @property {string} [language] The BCP-47 language code of the text in the
* image.
* @member {number} [textAngle] The angle, in degrees, of the detected text
* @property {number} [textAngle] The angle, in degrees, of the detected text
* with respect to the closest horizontal or vertical direction. After
* rotating the input image clockwise by this angle, the recognized text
* lines become horizontal or vertical. In combination with the orientation
@ -28,12 +28,12 @@ class OcrResult {
* the angle cannot be confidently detected, this property is not present. If
* the image contains text at different angles, only part of the text will be
* recognized correctly.
* @member {string} [orientation] Orientation of the text recognized in the
* @property {string} [orientation] Orientation of the text recognized in the
* image. The value (up, down, left, or right) refers to the direction that
* the top of the recognized text is facing, after the image has been rotated
* around its center according to the detected text angle (see textAngle
* property).
* @member {array} [regions] An array of objects, where each object
* @property {array} [regions] An array of objects, where each object
* represents a region of recognized text.
*/
constructor() {

Просмотреть файл

@ -17,13 +17,13 @@
class OcrWord {
/**
* Create a OcrWord.
* @member {string} [boundingBox] Bounding box of a recognized word. The four
* integers represent the x-coordinate of the left edge, the y-coordinate of
* the top edge, width, and height of the bounding box, in the coordinate
* system of the input image, after it has been rotated around its center
* according to the detected text angle (see textAngle property), with the
* origin at the top-left corner, and the y-axis pointing down.
* @member {string} [text] String value of a recognized word.
* @property {string} [boundingBox] Bounding box of a recognized word. The
* four integers represent the x-coordinate of the left edge, the
* y-coordinate of the top edge, width, and height of the bounding box, in
* the coordinate system of the input image, after it has been rotated around
* its center according to the detected text angle (see textAngle property),
* with the origin at the top-left corner, and the y-axis pointing down.
* @property {string} [text] String value of a recognized word.
*/
constructor() {
}

Просмотреть файл

@ -16,7 +16,7 @@
class RecognitionResult {
/**
* Create a RecognitionResult.
* @member {array} [lines]
* @property {array} [lines]
*/
constructor() {
}

Просмотреть файл

@ -17,12 +17,12 @@
class TagResult {
/**
* Create a TagResult.
* @member {array} [tags] A list of tags with confidence level.
* @member {string} [requestId] Id of the REST API request.
* @member {object} [metadata]
* @member {number} [metadata.width] Image width, in pixels.
* @member {number} [metadata.height] Image height, in pixels.
* @member {string} [metadata.format] Image format.
* @property {array} [tags] A list of tags with confidence level.
* @property {string} [requestId] Id of the REST API request.
* @property {object} [metadata]
* @property {number} [metadata.width] Image width, in pixels.
* @property {number} [metadata.height] Image height, in pixels.
* @property {string} [metadata.format] Image format.
*/
constructor() {
}

Просмотреть файл

@ -16,10 +16,10 @@
class TextOperationResult {
/**
* Create a TextOperationResult.
* @member {string} [status] Status of the text operation. Possible values
* @property {string} [status] Status of the text operation. Possible values
* include: 'Not Started', 'Running', 'Failed', 'Succeeded'
* @member {object} [recognitionResult]
* @member {array} [recognitionResult.lines]
* @property {object} [recognitionResult]
* @property {array} [recognitionResult.lines]
*/
constructor() {
}

Просмотреть файл

@ -16,8 +16,8 @@
class Word {
/**
* Create a Word.
* @member {array} [boundingBox]
* @member {string} [text]
* @property {array} [boundingBox]
* @property {string} [text]
*/
constructor() {
}

Просмотреть файл

@ -21,4 +21,4 @@
"bugs": {
"url": "https://github.com/azure/azure-sdk-for-node/issues"
}
}
}