mirror of
https://github.com/opencv/opencv.git
synced 2024-12-16 10:29:11 +08:00
4dd54bbec9
Add a check for src == dst in ocl warpTransform #25898 As mentioned in #25853, when doing WarpAffine with Mat and UMat respectively, if you force the use of the in-place operation (so that src and dst are passed the same variables), Mat produces the correct results, but UMat produces unexpected results. Obviously in-place operations are not possible with this transformation. When Mat performs the operation, if dst and src are the same variable, the function inherently makes a copy of src without telling the user. |
||
---|---|---|
.. | ||
test_accumulate.cpp | ||
test_blend.cpp | ||
test_boxfilter.cpp | ||
test_canny.cpp | ||
test_color.cpp | ||
test_filter2d.cpp | ||
test_filters.cpp | ||
test_gftt.cpp | ||
test_histogram.cpp | ||
test_houghlines.cpp | ||
test_imgproc.cpp | ||
test_match_template.cpp | ||
test_medianfilter.cpp | ||
test_pyramids.cpp | ||
test_sepfilter2d.cpp | ||
test_warp.cpp |