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

Udpate Beta Vision samples to use beta tags #1184

Merged
merged 3 commits into from
Aug 16, 2018
Merged
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 @@ -1438,7 +1438,7 @@ public static void detectDocumentsGcs(String gcsSourcePath, String gcsDestinatio
}
// [END vision_text_detection_pdf_gcs]

// [START vision_localize_objects]
// [START vision_localize_objects_beta]
/**
* Detects localized objects in the specified local image.
*
Expand Down Expand Up @@ -1480,9 +1480,9 @@ public static void detectLocalizedObjects(String filePath, PrintStream out)
}
}
}
// [END vision_localize_objects]
// [END vision_localize_objects_beta]

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

// [START vision_handwritten_ocr]
// [START vision_handwritten_ocr_beta]
/**
* Performs handwritten text detection on a local image file.
*
Expand Down Expand Up @@ -1598,9 +1598,9 @@ public static void detectHandwrittenOcr(String filePath, PrintStream out) throws
}
}
}
// [END vision_handwritten_ocr]
// [END vision_handwritten_ocr_beta]

// [START vision_handwritten_ocr_gcs]
// [START vision_handwritten_ocr_gcs_beta]
/**
* 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_gcs]
// [END vision_handwritten_ocr_gcs_beta]
}