FirebaseVisionCloudDocumentTextDetector

public class FirebaseVisionCloudDocumentTextDetector extends Object
implements Closeable

Detector for performing optical character recognition(OCR) on an input image by sending the image to Google cloud ML backend. In comparison to FirebaseVisionCloudTextDetector, it detects dense document text.

A cloud document text detector is created via getVisionCloudDocumentTextDetector(FirebaseVisionCloudDetectorOptions) or getVisionCloudDocumentTextDetector() if you wish to use the default FirebaseVisionCloudDetectorOptions. For example, the code below creates a cloud document text detector with default options.


 FirebaseVisionCloudDocumentTextDetector cloudDocumentTextDetector =
    FirebaseVision.getInstance().getVisionCloudDocumentTextDetector();
 
To perform document text detection in an image, you first need to create an instance of FirebaseVisionImage from a Bitmap, ByteBuffer, etc. See FirebaseVisionImage documentation for more details. For example, the code below creates a FirebaseVisionImage from a Bitmap.
      FirebaseVisionImage image = FirebaseVisionImage.fromBitmap(bitmap);
Then the code below can detect texts in the supplied FirebaseVisionImage.

 Task<FirebaseVisionCloudText> task = cloudDocumentTextDetector.detectInImage(image);
 task.addOnSuccessListener(...).addOnFailureListener(...);
 

Public Method Summary

void
Task<FirebaseVisionCloudText>
detectInImage(FirebaseVisionImage image)
Detects text from supplied document image.

Inherited Method Summary

Public Methods

public void close ()

Throws
IOException

public Task<FirebaseVisionCloudText> detectInImage (FirebaseVisionImage image)

Detects text from supplied document image.

For best efficiency, create a FirebaseVisionImage object using one of the following ways:

All other FirebaseVisionImage factory methods will work as well, but possibly slightly slower.
Returns