Hi tweezlednutball,
Indeed, since a while, the dense cloud generation (2d step of dense cloud stage) has changed a bit. The limit of simultaneous pictures taken into account for it (called depth filtering limit), which was 50 before, as been removed.
So if you handle modeling from a set of pictures with a high level of redundancy (number of pictures that look toward the same place), it increased a lot the calculation time because PhotoScan try to filter with a super high amount of data.
With the following piece of code (given by Alexey in another topic), you will be able to define your own limit (N) before starting the dense cloud processing. Be careful not to use a value lower than 50-60 to keep a correct filtering.
PhotoScan.app.settings.setValue('main/depth_filtering_limit', N)
Regards