Vadym Pinchuk
Vadym Pinchuk
Here is my approach. Lets say compromise solution. https://medium.com/@vad.pinchuk/image-stream-processing-in-flutter-application-by-tflite-neural-networks-2c40d65f3b67 But in best case it have sense to move TFLite in separate isolate. Could be done while registering TFLite in that...
> Please, check if you've added these lines inside `android` block in `android/app/build.gradle` > > ``` > aaptOptions { > noCompress 'tflite' > noCompress 'lite' > } > ``` Yes...
Have no details, but got MinioError: The request signature we calculated does not match the signature you provided. Check your key and signing method. also
@zxl777 have you found any possible solution for this? Thank you in advance
I have found that this issue occurs here: Future initMultipartUpload() async { print('MINIO Uploader: init multipart'); uploadId = await minio.findUploadId(bucket, object); while trying to find previous not finished uploads
@zxl777 should be fixed in next release. I believe )
@dhirajnikam please check if you are happy with current solution, which is merged into [this example](https://github.com/tensorflow/flutter-tflite/tree/main/example/live_object_detection_ssd_mobilenet).
@maheralzoubi97 Please describe your question better, as from the code example, taken from live_object_detection_ssd_, not really gives an understanding of your question. Also, please read Readme.md file, where it is...
I suppose it is because TFLite model are kicked :) but need to check
``` SmoothPageIndicator( controller: pageController, count: pageCount, effect: ScrollingDotsEffect( maxVisibleDots: 7, activeDotScale: 1.0, dotHeight: dimens.indicatorDotSize, dotWidth: dimens.indicatorDotSize, spacing: dimens.indicatorDotSize * 2, dotColor: theme.colors.baseLight30, activeDotColor: theme.colors.baseLightPrimary, ), ) ``` this is my...