package vision
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
- case class AIAdult(isAdultContent: Boolean, isRacyContent: Boolean, adultScore: Double, racyScore: Double) extends Product with Serializable
- case class AIBrand(name: String, rectangle: Rectangle2) extends Product with Serializable
- case class AICaption(text: String, confidence: Double) extends Product with Serializable
- case class AICategory(name: String, score: Double, detail: Option[AIDetail]) extends Product with Serializable
- case class AIColor(dominantColorForeground: String, dominantColorBackground: String, dominantColors: Seq[String], accentColor: String, isBwImg: Option[Boolean]) extends Product with Serializable
- case class AIDescription(tags: Seq[String], captions: Seq[AICaption]) extends Product with Serializable
- case class AIDetail(celebrities: Option[Seq[DSIRCelebrity]], landmarks: Option[Seq[DSIRLandmark]]) extends Product with Serializable
- case class AIFace(age: Int, gender: String, faceRectangle: Rectangle) extends Product with Serializable
- case class AIImageType(clipArtType: Int, lineDrawingType: Int) extends Product with Serializable
- case class AIMetadata(width: Int, height: Int, format: String) extends Product with Serializable
- case class AIObject(rectangle: Rectangle2, object: String, confidence: Double) extends Product with Serializable
- case class AIResponse(categories: Option[Seq[AICategory]], adult: Option[AIAdult], tags: Option[Seq[AITag]], description: Option[AIDescription], requestId: String, metadata: AIMetadata, faces: Option[Seq[AIFace]], color: Option[AIColor], imageType: Option[AIImageType], brands: Option[Seq[AIBrand]], objects: Option[Seq[AIObject]]) extends Product with Serializable
- case class AITag(name: String, confidence: Double) extends Product with Serializable
- class AnalyzeImage extends CognitiveServicesBase with HasImageInput with HasInternalJsonOutputParser with HasCognitiveServiceInput with HasSetLocation with SynapseMLLogging with HasSetLinkedService
- trait BasicAsyncReply extends HasAsyncReply
- case class DSIRCelebrity(name: String, faceRectangle: Rectangle, confidence: Double) extends Product with Serializable
- case class DSIRLandmark(name: String, confidence: Double) extends Product with Serializable
- case class DSIRMetadata(width: Int, height: Int, format: String) extends Product with Serializable
- case class DSIRResponse(requestId: String, metadata: DSIRMetadata, result: DSIRResult) extends Product with Serializable
- case class DSIRResult(celebrities: Option[Seq[DSIRCelebrity]], landmarks: Option[Seq[DSIRLandmark]]) extends Product with Serializable
- class DescribeImage extends CognitiveServicesBase with HasCognitiveServiceInput with HasImageInput with HasInternalJsonOutputParser with HasSetLocation with SynapseMLLogging with HasSetLinkedService
- case class DescribeImageResponse(description: ImageDescription, requestID: String, metadata: ImageMetadata) extends Product with Serializable
- class GenerateThumbnails extends CognitiveServicesBase with HasImageInput with HasWidth with HasHeight with HasSmartCropping with HasCognitiveServiceInput with HasSetLocation with SynapseMLLogging with HasSetLinkedService
- trait HasAsyncReply extends Params
- trait HasDetectOrientation extends HasServiceParams
- trait HasHeight extends HasServiceParams
- trait HasImageBytes extends HasServiceParams
- trait HasImageInput extends HasImageUrl with HasImageBytes with HasCognitiveServiceInput
- trait HasImageUrl extends HasServiceParams
- trait HasSmartCropping extends HasServiceParams
- trait HasWidth extends HasServiceParams
- case class ImageCaptions(text: String, confidence: Double) extends Product with Serializable
- case class ImageDescription(tags: Seq[String], captions: Seq[ImageCaptions]) extends Product with Serializable
- case class ImageMetadata(width: Int, height: Int, format: String) extends Product with Serializable
- case class ImageTag(name: String, confidence: Double, hint: Option[String]) extends Product with Serializable
- class OCR extends CognitiveServicesBase with HasLanguage with HasImageInput with HasDetectOrientation with HasCognitiveServiceInput with HasInternalJsonOutputParser with HasSetLocation with SynapseMLLogging with HasSetLinkedService
- case class OCRLine(boundingBox: String, words: Seq[OCRWord]) extends Product with Serializable
- case class OCRRegion(boundingBox: String, lines: Seq[OCRLine]) extends Product with Serializable
- case class OCRResponse(language: String, textAngle: Option[Double], orientation: String, regions: Seq[OCRRegion]) extends Product with Serializable
- case class OCRWord(boundingBox: String, text: String) extends Product with Serializable
- case class RTLine(boundingBox: Array[Int], text: String, words: Array[RTWord]) extends Product with Serializable
- case class RTResponse(status: String, recognitionResult: RTResult) extends Product with Serializable
- case class RTResult(lines: Array[RTLine]) extends Product with Serializable
- case class RTWord(boundingBox: Array[Int], text: String) extends Product with Serializable
- case class ReadAnalyzeResult(version: String, readResults: Seq[ReadResult]) extends Product with Serializable
- class ReadImage extends CognitiveServicesBaseNoHandler with BasicAsyncReply with HasImageInput with HasCognitiveServiceInput with HasInternalJsonOutputParser with HasSetLocation with SynapseMLLogging with HasSetLinkedService
- case class ReadLine(boundingBox: Array[Double], text: String, words: Array[ReadWord]) extends Product with Serializable
- case class ReadResponse(status: String, createdDateTime: String, lastUpdatedDateTime: String, analyzeResult: ReadAnalyzeResult) extends Product with Serializable
- case class ReadResult(page: Int, language: Option[String], angle: Double, width: Double, height: Double, unit: String, lines: Array[ReadLine]) extends Product with Serializable
- case class ReadWord(boundingBox: Array[Double], text: String, confidence: Double) extends Product with Serializable
- class RecognizeDomainSpecificContent extends CognitiveServicesBase with HasImageInput with HasServiceParams with HasCognitiveServiceInput with HasInternalJsonOutputParser with HasSetLocation with SynapseMLLogging with HasSetLinkedService
- class RecognizeText extends CognitiveServicesBaseNoHandler with BasicAsyncReply with HasImageInput with HasCognitiveServiceInput with HasInternalJsonOutputParser with HasSetLocation with SynapseMLLogging with HasSetLinkedService
- class TagImage extends CognitiveServicesBase with HasImageInput with HasCognitiveServiceInput with HasInternalJsonOutputParser with HasSetLocation with SynapseMLLogging with HasSetLinkedService
- case class TagImagesResponse(tags: Seq[ImageTag], requestId: String, metaData: ImageMetadata) extends Product with Serializable
Value Members
- object AIResponse extends SparkBindings[AIResponse]
- object AnalyzeImage extends ComplexParamsReadable[AnalyzeImage] with Serializable
- object DSIRResponse extends SparkBindings[DSIRResponse]
- object DescribeImage extends ComplexParamsReadable[DescribeImage] with Serializable
- object DescribeImageResponse extends SparkBindings[DescribeImageResponse]
- object GenerateThumbnails extends ComplexParamsReadable[GenerateThumbnails] with Serializable
- object OCR extends ComplexParamsReadable[OCR] with Serializable
- object OCRResponse extends SparkBindings[OCRResponse]
- object RTResponse extends SparkBindings[RTResponse]
- object ReadImage extends ComplexParamsReadable[ReadImage] with Serializable
- object ReadResponse extends SparkBindings[ReadResponse]
- object RecognizeDomainSpecificContent extends ComplexParamsReadable[RecognizeDomainSpecificContent] with Serializable
- object RecognizeText extends ComplexParamsReadable[RecognizeText] with Serializable
- object TagImage extends ComplexParamsReadable[TagImage] with Serializable
- object TagImagesResponse extends SparkBindings[TagImagesResponse]