mariosgeo

Results 20 comments of mariosgeo

Thanks for the reply. Not sure about this. My image, is basically a 2D numpy array. There are pixels with values and pixels with nan (where mask==1). there is no...

> I don't think we currently have any test cases for `inpaint` that have NaN values in the image, so that could also be a potential source of the issue....

Hello, I am coming back with the same issue. I can run the example above (some times, sometimes it crashes). But for a larger array 168x268 it always ends with...

You have a segmentation fault. It seems (to me) that you didn't compile with gcc-7. Edit Makefile and replace cc=g++ to cc=g++-7

Had the some issue with segmentation fault. Compiled with g++-7 and it's gone. I am curious, how long does it takes you to run the mt_prep_isce. Mine is running for...

Hi, I am dealing with a similar issue (problem too big for direct solver). I search the code a bit, and on the solver.py, on the class LonSolver, def __init)),...

Thanks for the detailed reply. We will wait for the future version of the code.

I also confirm this on mac m2. Installation goes ok, but can't import pygimli. Sumbolic links (as suggested) to the two libraries is creating a different issue with suitesparse. 05/07/24...

I did some "silly" digging. The issue (I think) is related to the polytools.py, line **1203** sZ = pg.interpolate(pntsSurface, pnts[:, 2], surface.positions()) For some reason, the interpolation fails and returns...

[7th_iter.txt](https://github.com/user-attachments/files/15788025/7th_iter.txt) The data file attached. And a demo script data=ert.load('7th_iter.txt') tmp=np.asarray(data.sensors()) tmp[:,2]=tmp[:,2]-0.2 plc1 = mt.createParaMeshPLC3D(data, paraDepth=5, paraMaxCellSize=0.1, surfaceMeshQuality=34) plc2=mt.createParaMeshSurface(tmp,surfaceMeshQuality=34,surfaceMeshArea=0.1) plc=plc1+plc2 pg.show(plc) mesh = mt.createMesh(plc, quality=1.3,switches='-d') mesh.exportVTK('mesh3.vtk')