Forum

Author Topic: Availability of Tweaks in API?  (Read 3211 times)

forumname

  • Newbie
  • *
  • Posts: 36
    • View Profile
Availability of Tweaks in API?
« on: November 30, 2023, 11:53:08 PM »
Are the advanced preferences Tweaks in the GUI also available through the API?

For example,
Code: [Select]
BuildModel/ooc_surface_blow_up
as detailed here.

Also, what seems to have previously been the Tweak for setting the ratio of valid tie points,
Code: [Select]
main/depth_point_threshold
« Last Edit: November 30, 2023, 11:56:45 PM by forumname »

Alexey Pasumansky

  • Agisoft Technical Support
  • Hero Member
  • *****
  • Posts: 14839
    • View Profile
Re: Availability of Tweaks in API?
« Reply #1 on: December 01, 2023, 05:57:50 PM »
Hello forumname,

Tweaks related to the processing task can be defined as a task parameter via Python API (so it is not a global setting):
Code: [Select]
chunk.buildDepthMaps(point_threshold = 10)
chunk.buildModel(ooc_surface_blow_up = 0.5)
Best regards,
Alexey Pasumansky,
Agisoft LLC

forumname

  • Newbie
  • *
  • Posts: 36
    • View Profile
Re: Availability of Tweaks in API?
« Reply #2 on: December 01, 2023, 06:57:25 PM »
Thanks, Alexey, this is great! So these are arguments that aren't detailed in the API? Is there a list of them elsewhere?