1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

spelling fixes

This commit is contained in:
klemens
2019-02-09 22:29:54 +01:00
parent f414c16c13
commit 997b7b18af
36 changed files with 50 additions and 50 deletions
+4 -4
View File
@@ -67,11 +67,11 @@ TEST_F(GCompiledValidateMetaTyped, InvalidMeta)
cv::Scalar sc(33);
cv::Mat out;
// 3 channels intead 1
// 3 channels instead 1
cv::Mat in1 = cv::Mat::eye(cv::Size(64,32), CV_8UC3);
EXPECT_THROW(f(in1, sc, out), std::logic_error);
// 32f intead 8u
// 32f instead 8u
cv::Mat in2 = cv::Mat::eye(cv::Size(64,32), CV_32F);
EXPECT_THROW(f(in2, sc, out), std::logic_error);
@@ -112,11 +112,11 @@ TEST_F(GCompiledValidateMetaUntyped, InvalidMetaValues)
cv::Scalar sc(33);
cv::Mat out;
// 3 channels intead 1
// 3 channels instead 1
cv::Mat in1 = cv::Mat::eye(cv::Size(64,32), CV_8UC3);
EXPECT_THROW(f(cv::gin(in1, sc), cv::gout(out)), std::logic_error);
// 32f intead 8u
// 32f instead 8u
cv::Mat in2 = cv::Mat::eye(cv::Size(64,32), CV_32F);
EXPECT_THROW(f(cv::gin(in2, sc), cv::gout(out)), std::logic_error);
@@ -73,7 +73,7 @@ TEST(GMetaArg, Traits_Are_ButLast_Positive)
using namespace cv::detail;
static_assert(are_meta_descrs_but_last<cv::GScalarDesc, int>::value,
"List is valid (int is ommitted)");
"List is valid (int is omitted)");
static_assert(are_meta_descrs_but_last<cv::GMatDesc, cv::GScalarDesc, cv::GCompileArgs>::value,
"List is valid (GCompileArgs are omitted)");
@@ -320,7 +320,7 @@ TEST(IslandsFusion, PartionOverlapUserIsland)
// |
// (in1) --------------------------`
// Check that internal islands does't overlap user island
// Check that internal islands doesn't overlap user island
namespace J = Jupiter;
namespace S = Saturn;
@@ -124,7 +124,7 @@ TEST_F(Islands, TwoIslands)
}
// FIXME: Disabled since currently merge procedure merges two into one
// succesfully
// successfully
TEST_F(Islands, DISABLED_Two_Islands_With_Same_Name_Should_Fail)
{
// (in) -> Blur1 -> (tmp0) -> Blur2 -> (tmp1) -> Blur3 -> (tmp2) -> Blur4 -> (out)
@@ -90,7 +90,7 @@ TYPED_TEST(VectorRefT, ReadAfterWrite)
EXPECT_EQ(0u, writer.wref().size()); // Check the initial state
EXPECT_EQ(0u, reader.rref().size());
writer.wref().emplace_back(); // Check that write is successfull
writer.wref().emplace_back(); // Check that write is successful
EXPECT_EQ(1u, writer.wref().size());
EXPECT_EQ(1u, vec.size()); // Check that changes are reflected to the original container
@@ -183,7 +183,7 @@ TYPED_TEST(VectorRefU, ReadAfterWrite)
EXPECT_EQ(0u, writer.wref<T>().size()); // Check the initial state
EXPECT_EQ(0u, reader.rref<T>().size());
writer.wref<T>().emplace_back(); // Check that write is successfull
writer.wref<T>().emplace_back(); // Check that write is successful
EXPECT_EQ(1u, writer.wref<T>().size());
EXPECT_EQ(1u, vec.size()); // Check that changes are reflected to the original container