stitcher result mask getter

This commit is contained in:
Quentin Chateau
2018-12-21 23:21:22 +01:00
parent 578ea4bae9
commit f9c951440d
2 changed files with 4 additions and 2 deletions
+2 -2
View File
@@ -357,8 +357,8 @@ Stitcher::Status Stitcher::composePanorama(InputArrayOfArrays images, OutputArra
#if ENABLE_LOG
int64 blend_t = getTickCount();
#endif
UMat result, result_mask;
blender_->blend(result, result_mask);
UMat result;
blender_->blend(result, result_mask_);
LOGLN("blend time: " << ((getTickCount() - blend_t) / getTickFrequency()) << " sec");
LOGLN("Compositing, time: " << ((getTickCount() - t) / getTickFrequency()) << " sec");