Mautisim Munir

Results 28 comments of Mautisim Munir

For images captured, the results of CameraAwesome are noticeably better than the flutter camera in my experience. The max resolution is also greater and focus time is much less. I...

That sounds awesome! I have a suggestion in this approach. Maybe if we extend the flutter camera controller class and override specific functionalities only then it would be better for...

> > > What is the reason for that you say that you need to work with `int32` (your original data / processing generates that)? > > In any case,...

> > > I have tested a bit on my system (Win10) with `int32`: > > ```python > import numpy as np > import sounddevice as sd > > frequency...

Can you please tell me how can I do that? I couldn't find anything related to changing host APIs in the documentation

Thanks for the quick response. Changing the host api fixed the issue! I tried all the listed APIs and switching to the "Windows WDM-KS" API fixed that. Lists of APIs...

Any update on this? Any way to fix this?

Did you find any solution for this? Facing similar problem

I found a workaround. You basically add swift version inside modified podspec for your dependency library and host it on a private cocoapods repository. For example for my project I...

Above code no longer worked for me because im.encodePng returns int list while Image.memory expects uintList. This minor modification works for me: `Image.memory(Uint8List.fromList(im.encodePng(rectifiedImage)))`