Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Vision region tag update #1182

Merged
merged 17 commits into from
Aug 15, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1319,7 +1319,7 @@ public static void detectDocumentTextGcs(String gcsPath, PrintStream out) throws
}
// [END vision_detect_document_uri]

// [START vision_async_detect_document_ocr]
// [START vision_text_detection_pdf_gcs]
/**
* Performs document text OCR with PDF/TIFF as source files on Google Cloud Storage.
*
Expand Down Expand Up @@ -1436,7 +1436,7 @@ public static void detectDocumentsGcs(String gcsSourcePath, String gcsDestinatio
}
}
}
// [END vision_async_detect_document_ocr]
// [END vision_text_detection_pdf_gcs]

// [START vision_localize_objects]
/**
Expand Down Expand Up @@ -1482,7 +1482,7 @@ public static void detectLocalizedObjects(String filePath, PrintStream out)
}
// [END vision_localize_objects]

// [START vision_localize_objects_uri]
// [START vision_localize_objects_gcs]
/**
* Detects localized objects in a remote image on Google Cloud Storage.
*
Expand Down Expand Up @@ -1525,7 +1525,7 @@ public static void detectLocalizedObjectsGcs(String gcsPath, PrintStream out)
}
}
}
// [END vision_localize_objects_uri]
// [END vision_localize_objects_gcs]

// [START vision_handwritten_ocr]
/**
Expand Down Expand Up @@ -1600,7 +1600,7 @@ public static void detectHandwrittenOcr(String filePath, PrintStream out) throws
}
// [END vision_handwritten_ocr]

// [START vision_handwritten_ocr_uri]
// [START vision_handwritten_ocr_gcs]
/**
* Performs handwritten text detection on a remote image on Google Cloud Storage.
*
Expand Down Expand Up @@ -1672,5 +1672,5 @@ public static void detectHandwrittenOcrGcs(String gcsPath, PrintStream out) thro
}
}
}
// [END vision_handwritten_ocr_uri]
// [END vision_handwritten_ocr_gcs]
}
Loading