mirror of
https://github.com/opencv/opencv.git
synced 2024-11-30 14:29:49 +08:00
Merge pull request #19340 from tomoaki0705:fixStitchingExposure
This commit is contained in:
commit
d93790717d
@ -154,7 +154,11 @@ void GainCompensator::singleFeed(const std::vector<Point> &corners, const std::v
|
||||
{
|
||||
CV_Assert(similarity_it != similarities_.end());
|
||||
UMat similarity = *similarity_it++;
|
||||
bitwise_and(intersect, similarity, intersect);
|
||||
// in-place operation has an issue. don't remove the swap
|
||||
// detail https://github.com/opencv/opencv/issues/19184
|
||||
Mat_<uchar> intersect_updated;
|
||||
bitwise_and(intersect, similarity, intersect_updated);
|
||||
std::swap(intersect, intersect_updated);
|
||||
}
|
||||
|
||||
int intersect_count = countNonZero(intersect);
|
||||
|
Loading…
Reference in New Issue
Block a user