[ver 1.3.4] Linux(Ubuntu) getting AttributeError: 'Image' object has no attribut

Hello,

I am using WrapX 1.3.4 on Linux(Ubuntu) and am getting the following error:
baseMesh.texture.extrapolate()
AttributeError: ‘Image’ object has no attribute ‘extrapolate’

The code is like the following:
if scanMesh.texture is not None:
if args.debug:
print (“-D- Texture Transfer…”)
baseMesh.texture = wrap.transferTexture(scanMesh, scanMesh.texture, baseMesh, wrapTextureSize, maxRelativeDist = 3)
baseMesh.texture.extrapolate()

Am I not doing this right?

Thank you.

Peter

Hello Peter

Are you using WrapX as standalone python module? Unfortunately Image.extrapolate() cannot yet be called outside of WrapX gui.

Extrapolating texture in WrapX implemented using opengl and python module does not use opengl. So currently it is unavailable and workaround is to call WrapX gui with extrapolation script.

Ivan