Aditya Harshey

Results 4 issues of Aditya Harshey

I have loaded model with Tflite.loadModel method and then after success Tflite.runModelOnFrame. ``` @override void initState() { super.initState(); // To display the current output from the camera, // create a...

I am doing release time detection using camera plugin. `result = Tflite.runModelOnFrame( bytesList: image.planes.map((plane) { return plane.bytes; }).toList(), imageWidth: image.width, imageHeight: image.height, threshold: 0.1, numResults: 9, imageMean: 0, // defaults...

I have implemented two authentication tables admin and users. It works fine for login system. But password reset is always checking users from users table. 'multi' => [ 'user' =>...

bug
help wanted

I have following code ` subscription = OrientationHelper.onOrientationChange.listen((value) { print(value); }); ` It always shows DeviceOrientation.landscapeLeft. It is working as expected on Android. Flutter 1.20.4 • Dart 2.9.2