Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Hi Nightlife,

I've been looking at the stitching_detailed.cpp example which is heavily based on the stitching class. So far I've noticed several things that could help with speed that may be relevant to you whether or not you are using that example:

  1. The feature detection for each image is run within a for loop in the example. This could be parellelised to run on multiple cores as getting the features in each image is independent.

    1. There are appear to be some GPU capabilities for SURF and I think other places within Stitching.

    2. What resolution are you using for the image registration stage? Can this be lowered without affecting performance?

    3. What resolution are you using for the composition stage? Can this be lowered and still give you adequate panorama? I've found that this can affect performance a lot.

Can you tell us where your bottleneck is (feature detection, pairwise matching, estimating homography, composition)? How many images are you trying to stitch etc?

Hi Nightlife,

I've been looking at the stitching_detailed.cpp example which is heavily based on the stitching class. So far I've noticed several things that could help with speed that may be relevant to you whether or not you are using that example:

  1. The feature detection for each image is run within a for loop in the example. This could be parellelised to run on multiple cores as getting the features in each image is independent.

    1. There are appear to be some GPU capabilities for SURF and I think other places within Stitching.

    2. What resolution are you using for the image registration stage? Can this be lowered without affecting performance?

    3. What resolution are you using for the composition stage? Can this be lowered and still give you adequate panorama? I've found that this can affect performance a lot.

Can you tell us where your bottleneck is (feature detection, pairwise matching, estimating homography, composition)? How many images are you trying to stitch etc?