Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Closed
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
67fa8fd
Add a placeholder for the live preview screen.
dustin-graham Jul 7, 2018
c864974
WIP. basic barcode detection impl.
dustin-graham Jul 7, 2018
73f4fe2
WIP.
dustin-graham Jul 7, 2018
04395d8
rotate image on Android prior to creating the FirebaseVisionImage
dustin-graham Jul 9, 2018
cb953e7
Add a basic camera preview implementation
dustin-graham Jul 9, 2018
973b32c
resume camera preview
dustin-graham Jul 9, 2018
8689993
strip out picture taking and video recording from Android camera impl
dustin-graham Jul 9, 2018
beaaa5f
android: insert per-frame handling of preview images
dustin-graham Jul 9, 2018
1ad5ae7
android: pipe image frames to MLKit Barcode detector
dustin-graham Jul 9, 2018
76930fc
android: send count of recognized barcodes
dustin-graham Jul 10, 2018
a0a1b62
android: get barcode bounding boxes displaying in Flutter
dustin-graham Jul 10, 2018
56272e4
ios: Add basic barcode scanning.
dustin-graham Jul 10, 2018
4e10f44
ios: Add live view barcode scanning
dustin-graham Jul 11, 2018
1313564
WIP: live text detection
dustin-graham Jul 13, 2018
99196c3
WIP: android live text detection.
dustin-graham Jul 14, 2018
dacaccf
WIP: Android legacy camera detector impl. Min SDK on this lib is 16.
dustin-graham Jul 19, 2018
6054f37
Android: allow detector and resolution to be set
dustin-graham Jul 19, 2018
de93bc7
Working live detection implementation for Android and iOS
dustin-graham Jul 20, 2018
7c8cca4
Merge remote-tracking branch 'upstream/master' into live_preview
dustin-graham Jul 20, 2018
4c5bf21
update Android with latest from upstream.
dustin-graham Jul 20, 2018
2219e8e
update both Android and iOS live view to work with new detectors.
dustin-graham Jul 20, 2018
8477cf9
Merge remote-tracking branch 'upstream/master' into live_preview
dustin-graham Jul 20, 2018
d1d24e7
remove unused ExifInterface dependency
dustin-graham Jul 21, 2018
b85bdb8
resolve dart analysis warnings.
dustin-graham Jul 21, 2018
a86fe62
reformat code.
dustin-graham Jul 21, 2018
e688aef
fix barcode test
dustin-graham Jul 21, 2018
762b04b
revert accidental camera plugin changes
dustin-graham Jul 21, 2018
8190bff
clang-format iOS files
dustin-graham Jul 21, 2018
f98ce94
Clean up LiveView implementation and fix formatting issues.
dustin-graham Jul 26, 2018
9fdee7c
Merge remote-tracking branch 'upstream/master' into live_preview
dustin-graham Jul 26, 2018
d7e6b32
update to support new LabelDetector.
dustin-graham Jul 26, 2018
776294d
undo inadvertent formatting changes outside firebase_ml_vision.
dustin-graham Jul 26, 2018
ef72e0a
add camera plugin as a dependency to firebase_ml_vision
dustin-graham Jul 27, 2018
543b6d7
wIP: send detected data back to flutter from live feed.
dustin-graham Jul 27, 2018
22e10c2
fix formatting issues.
dustin-graham Jul 27, 2018
858b2aa
restore normal camera functionality.
dustin-graham Jul 27, 2018
5bbbcbc
Merge remote-tracking branch 'upstream/master' into live_preview_came…
dustin-graham Aug 9, 2018
e91181f
present detection boundaries in Flutter from camera plugin integration
dustin-graham Aug 9, 2018
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
Prev Previous commit
Next Next commit
remove unused ExifInterface dependency
  • Loading branch information
dustin-graham committed Jul 21, 2018
commit d1d24e7efdf5ede3c33872d181e4fcbaf13aed4a
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,9 @@

import android.app.Activity;
import android.app.Application;
import android.graphics.Bitmap;
import android.graphics.Matrix;
import android.net.Uri;
import android.os.Bundle;
import android.provider.MediaStore;
import android.support.annotation.Nullable;
import android.support.media.ExifInterface;
import android.util.Log;

import com.google.firebase.ml.vision.common.FirebaseVisionImage;

Expand All @@ -25,11 +20,7 @@
import io.flutter.plugin.common.MethodChannel.Result;
import io.flutter.plugin.common.PluginRegistry;
import io.flutter.plugin.common.PluginRegistry.Registrar;
import io.flutter.plugins.firebasemlvision.live.Camera;
import io.flutter.plugins.firebasemlvision.live.CameraInfo;
import io.flutter.plugins.firebasemlvision.live.CameraInfoException;
import io.flutter.plugins.firebasemlvision.live.LegacyCamera;
import java.util.Map;

/** FirebaseMlVisionPlugin */
public class FirebaseMlVisionPlugin implements MethodCallHandler {
Expand Down