新しい Android 顔検出モバイル ビジョン API を使用しているときに、フレーム画像を処理しようとしています。
そのため、フレームを取得するカスタム ディテクタを作成し、getBitmap() メソッドを呼び出そうとしましたが、null であるため、フレームのグレースケール データにアクセスしました。それまたは同様のイメージホルダークラスからビットマップを作成する方法はありますか?
public class CustomFaceDetector extends Detector<Face> {
private Detector<Face> mDelegate;
public CustomFaceDetector(Detector<Face> delegate) {
mDelegate = delegate;
}
public SparseArray<Face> detect(Frame frame) {
ByteBuffer byteBuffer = frame.getGrayscaleImageData();
byte[] bytes = byteBuffer.array();
int w = frame.getMetadata().getWidth();
int h = frame.getMetadata().getHeight();
// Byte array to Bitmap here
return mDelegate.detect(frame);
}
public boolean isOperational() {
return mDelegate.isOperational();
}
public boolean setFocus(int id) {
return mDelegate.setFocus(id);
}}