Werner Palfinger

Results 17 comments of Werner Palfinger

Why dont you use it header-only? https://github.com/Profactor/cv-plot/blob/master/doc/integration.md#header-only

Good point. I would like to rewrite the Series implementation anyway, but I dont have time right now. May take a few weeks. If anybody has a nice implementation in...

Are you using `cv::imshow()` maybe? Mouse navigation requires `CvPlot::show()`. If that does not help, please give a minimal complete example.

I tried your example and it works fine on Ubuntu (WSL2) with mouse navigation. Maybe you want to set a breakpoint here https://github.com/Profactor/cv-plot/blob/64281a2541aa23bcc3a138d5f2effcfe2a6cd2b8/CvPlot/inc/CvPlot/gui/Window.h#L144 and/or here https://github.com/Profactor/cv-plot/blob/64281a2541aa23bcc3a138d5f2effcfe2a6cd2b8/CvPlot/inc/CvPlot/gui/Window.h#L145 to see what's going...

Projection matrices are tricky:-) This works for me: ```python def camera_intrinsic_to_opengl_projection(intrinsic,w,h,n,f,flip_y): fx = intrinsic[0,0] fy = intrinsic[1,1] cx = intrinsic[0,2] cy = intrinsic[1,2] proj = np.array([ [2.*fx/w, 0, 1-2*cx/w, 0],...

I have no idea. Please debug into the remeshing code and find the line where the nans come from or post a full example to reproduce the problem. Werner

Hi @AlvaroMonteroB, using cvplot in VSCode should be easy. Just define CVPLOT_HEADER_ONLY and add CvPlot/inc to the include path. Is opencv working? If this is really a cvplot-specific issue, please...