タグ付けされた質問 「google-vision」

2
Google Visionの検出領域の制限、テキスト認識
私は一日中解決策を模索してきました。私の問題に関していくつかのスレッドをチェックアウトしました。 カスタム検出オブジェクト バーコード追跡ウィンドウを減らす もっと... しかし、それは私にはあまり役に立ちませんでした。基本的に私はカメラプレビューがフルスクリーンであることを望みますが、テキストは四角形が描画される画面の中央でのみ認識されます。 私が使用しているテクノロジー: 光学式文字認識(OCR)用のGoogle Mobile Vision API 依存関係: play-services-vision 私の現在の状態: BoxDetectorクラスを作成しました: public class BoxDetector extends Detector { private Detector mDelegate; private int mBoxWidth, mBoxHeight; public BoxDetector(Detector delegate, int boxWidth, int boxHeight) { mDelegate = delegate; mBoxWidth = boxWidth; mBoxHeight = boxHeight; } public SparseArray detect(Frame frame) { …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.