Mauro Sciancalepore

Results 25 comments of Mauro Sciancalepore

> Hi, did you check `fitInsideHorizontally` in [LineTouchTooltipData](https://github.com/imaNNeoFighT/fl_chart/blob/master/repo_files/documentations/line_chart.md#LineTouchTooltipData)? it's not about a graphical problem. The touch event on that spot (the lower one), just doesn't make the tooltip to show...

Hi! I am working on some of these, everything's tracked in #261

@KinoxKlark any roadmap for this? I am currently trying to integrate misc/freetype/imgui_freetype.cpp but I get a bunch of freetype-related "external symbol unresolved" (i.e: `imgui_freetype.obj : error LNK2001: external symbol FT_Add_Default_Modules...

> I did not plan anything for this, but you are welcome to integrate it if you feel so! Sure, any ideas about the errors I have pointed out? Also,...

> This is a very welcome addition, thanks! > > I have some advices, since I saw that my IDE does a very good job at helping with pyimgui, and...

@avBuffer any updates on this? I've also tried to convert the yolov5 .pt to ckpts but with no success...

for my yolov5n I've set mOutputRow=6300. with input image=320 it works just fine. I have found this number analysing my model using [netron.ai](https://netron.app/)

I found the formula I used to find the mOutputRow: ``` ratio=640/new_shape 25200 : ratio*x = 640 : new_shape x = (25200 * new_shape / 640) / ratio ``` ```...

_mOutputRow_ matches with the final layer of your model. All you need to check on Netron.ai is the shape of the final layer. `Process: org.pytorch.demo.objectdetection, PID: 30780 com.facebook.jni.CppException: The size...

- bug1: every android vendor manages image orientation differently, hence you should use [exif ](https://developer.android.com/jetpack/androidx/releases/exifinterface) metadata to correctly get it and adapt the matrix rotations. It may also differ between...