Forum

Author Topic: Export Photo Thumbnails  (Read 1383 times)

pyeah

  • Newbie
  • *
  • Posts: 4
    • View Profile
Export Photo Thumbnails
« on: September 21, 2018, 12:31:08 PM »
Hello,

Is there a way to export or to access the image thumbnails as generated by PhotoScan? In the API document, I see the option to list the thumbnails, but not to save or get the resulting paths.

Best regards,

Alexey Pasumansky

  • Agisoft Technical Support
  • Hero Member
  • *****
  • Posts: 14813
    • View Profile
Re: Export Photo Thumbnails
« Reply #1 on: September 22, 2018, 06:05:46 PM »
Hello pyeah,

You can try this one (saves the thumbnail to the disk for the first camera):
Code: [Select]
chunk = PhotoScan.app.document.chunk
camera = chunk.cameras[0]
im = camera.frames[0].thumbnail
im = im.image()
im.save("D:/image.jpg")
Best regards,
Alexey Pasumansky,
Agisoft LLC