1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00

Merge branch 4.x

This commit is contained in:
Alexander Smorkalov
2025-11-17 12:30:39 +03:00
64 changed files with 988 additions and 384 deletions
+8
View File
@@ -1177,6 +1177,14 @@ TEST(UMat, async_cleanup_without_call_chain_warning)
}
}
TEST(UMat, copyToConvertTo_Empty)
{
cv::UMat A(0, 0, CV_16SC2), B, C;
A.copyTo(B);
ASSERT_EQ(A.type(), B.type());
A.convertTo(C, CV_32SC2);
ASSERT_EQ(C.type(), CV_32SC2);
}
///////////// oclCleanupCallback threadsafe check (#5062) /////////////////////