Forum

Author Topic: Problem texture  (Read 3236 times)

gaetan73

  • Newbie
  • *
  • Posts: 6
    • View Profile
Problem texture
« on: December 06, 2017, 11:14:42 AM »
Hello everyone,

I'm having a problem with texturing a 3D mesh.
I realized an acquisition with a static Lidar + 360 ° views.
I loaded the Lidar dot cloud in .ply that I meshed.
The photographic stations are georeferenced and position themselves well in relation to the Lidar point cloud.
When I calculate the texture from the 360 ° images I get a white template (in Photoscan 1.4), see attachment.

Do you have an idea for the problem?
Thank you very much.

Alexey Pasumansky

  • Agisoft Technical Support
  • Hero Member
  • *****
  • Posts: 14846
    • View Profile
Re: Problem texture
« Reply #1 on: December 06, 2017, 12:05:15 PM »
Hello gaetan73,

Can you please also post the screenshot of the mesh in Solid view and the texture parametrization from View Mesh UVs dialog?
Best regards,
Alexey Pasumansky,
Agisoft LLC

gaetan73

  • Newbie
  • *
  • Posts: 6
    • View Profile
Re: Problem texture
« Reply #2 on: December 06, 2017, 01:20:20 PM »
Thank you for your reply.
This is the solid mesh...

Alexey Pasumansky

  • Agisoft Technical Support
  • Hero Member
  • *****
  • Posts: 14846
    • View Profile
Re: Problem texture
« Reply #3 on: December 06, 2017, 01:22:36 PM »
Hello gaetan73,

Looks like the normals are inverted. Can you try to use Invert Normals option in the Tools menu -> Dense cloud section and then rebuild the mesh and texture?
Best regards,
Alexey Pasumansky,
Agisoft LLC

gaetan73

  • Newbie
  • *
  • Posts: 6
    • View Profile
Re: Problem texture
« Reply #4 on: December 06, 2017, 01:23:46 PM »
Ok thanks

gaetan73

  • Newbie
  • *
  • Posts: 6
    • View Profile
Re: Problem texture
« Reply #5 on: December 06, 2017, 01:29:47 PM »
I'm sorry I can't find the tool...

Alexey Pasumansky

  • Agisoft Technical Support
  • Hero Member
  • *****
  • Posts: 14846
    • View Profile
Re: Problem texture
« Reply #6 on: December 06, 2017, 01:43:58 PM »
Hello gaetan73,

I thought that you are using version 1.4.0 pre-release and have imported the dense cloud.

You can do that in the version 1.3.4 for mesh using the following Python code:
Code: [Select]
import PhotoScan
chunk = PhotoScan.app.document.chunk
for face in chunk.model.faces:
    face.vertices = (face.vertices[0], face.vertices[2], face.vertices[1])
Then you may need to switch to another view mode (sparse cloud, for example) and switch back to solid view.
Best regards,
Alexey Pasumansky,
Agisoft LLC

gaetan73

  • Newbie
  • *
  • Posts: 6
    • View Profile
Re: Problem texture
« Reply #7 on: December 06, 2017, 02:17:57 PM »
It works very well thank you very much