Forum

Author Topic: Chance limit for depth map generation?  (Read 2565 times)

stephan

  • Full Member
  • ***
  • Posts: 129
    • View Profile
Chance limit for depth map generation?
« on: July 26, 2018, 11:34:57 AM »
Hi guys,

From the photoscan manual I have found:

"Tie point limit parameter allows to optimize performance for the task and does not generally
effect the quality of the further model. Recommended value is 4000. Too high or too low tie point
limit value may cause some parts of the dense point cloud model to be missed. The reason is that
PhotoScan generates depth maps only for pairs of photos for which number of matching points is
above certain limit. This limit equals to 100 matching points, unless moved up by the figure "10%
of the maximum number of matching points between the photo in question and other photos,
only matching points corresponding to the area within the bounding box being considered."

Is there a way in the python API to set manually the value of number of Tie points to be taken into account for selection of image pairs that will be used to generate depth maps? Other than for performance, is there another reason to not use all image pairs ? I would be interested in seeing whether it is possible to improve quality by using more tie points but without missing any depth maps that would not be generated if there is less than 10% coverage between two images.

Thanks !

Alexey Pasumansky

  • Agisoft Technical Support
  • Hero Member
  • *****
  • Posts: 14847
    • View Profile
Re: Chance limit for depth map generation?
« Reply #1 on: July 26, 2018, 02:55:56 PM »
Hello stephan,

You can vary the number of valid tie points required for a image pair to be considered for the depth maps calculation process using the following "tweak" via Advanced Preferences tab:
Code: [Select]
main/depth_point_thresholdThe default value is 100.

If you are using all available image pairs without any threshold, it may result in very noisy output.
Best regards,
Alexey Pasumansky,
Agisoft LLC

stephan

  • Full Member
  • ***
  • Posts: 129
    • View Profile
Re: Chance limit for depth map generation?
« Reply #2 on: August 14, 2018, 04:26:01 PM »
Thanks alexey!