Home
last modified time | relevance | path

Searched refs:GetY (Results 1 – 19 of 19) sorted by relevance

/external/armnn/samples/ObjectDetection/test/
DImageUtilsTest.cpp20 for (int y = bbox.GetY(); y < bbox.GetY() + bbox.GetHeight(); ++y) in GetBoundingBoxPoints()
27 bboxes.emplace_back(std::tuple<int, int>{x, bbox.GetY() + bbox.GetHeight() - 1}); in GetBoundingBoxPoints()
30 for (int y = bbox.GetY(); y < bbox.GetY() + bbox.GetHeight(); ++y) in GetBoundingBoxPoints()
35 else if (bbox.GetY() + bbox.GetHeight() > imageMat.rows) in GetBoundingBoxPoints()
37 for (int y = bbox.GetY(); y < imageMat.rows; ++y) in GetBoundingBoxPoints()
47 for (int y = bbox.GetY(); y < imageMat.rows; ++y) in GetBoundingBoxPoints()
54 for (int y = bbox.GetY(); y < bbox.GetY() + bbox.GetHeight(); ++y) in GetBoundingBoxPoints()
61 bboxes.emplace_back(std::tuple<int, int>{x, bbox.GetY() + bbox.GetHeight() - 1}); in GetBoundingBoxPoints()
64 for (int y = bbox.GetY(); y < bbox.GetY() + bbox.GetHeight(); ++y) in GetBoundingBoxPoints()
DBoundingBoxTests.cpp22 REQUIRE(boundingBox.GetY() == 0u);
32 REQUIRE(boundingBox.GetY() == s_Y);
47 REQUIRE(boundingBox.GetY() == s_Y);
54 return (b1.GetX() == b2.GetX() && b1.GetY() == b2.GetY() && in AreBoxesEqual()
/external/armnn/samples/ObjectDetection/src/
DBoundingBox.cpp34 int BoundingBox::GetY() const { in GetY() function in od::BoundingBox
76 boxOut.SetY(std::max(boxIn.GetY(), boxLimits.GetY())); in GetValidBoundingBox()
82 std::max(0, (boxOut.GetY() - boxIn.GetY())); in GetValidBoundingBox()
92 const int limitBoxRightY = boxLimits.GetY() + static_cast<int>(boxLimits.GetHeight()); in GetValidBoundingBox()
94 const int boxRightY = boxOut.GetY() + boxOutHeight; in GetValidBoundingBox()
DImageUtils.cpp44 cv::Rect r(bbox.GetX(), bbox.GetY(), inputFrame.cols - bbox.GetX(), bbox.GetHeight()); in AddInferenceOutputToFrame()
48 else if (bbox.GetY() + bbox.GetHeight() > inputFrame.rows) in AddInferenceOutputToFrame()
50 cv::Rect r(bbox.GetX(), bbox.GetY(), bbox.GetWidth(), inputFrame.rows - bbox.GetY()); in AddInferenceOutputToFrame()
56 cv::Rect r(bbox.GetX(), bbox.GetY(), bbox.GetWidth(), bbox.GetHeight()); in AddInferenceOutputToFrame()
61 int textBoxY = std::max(0 ,bbox.GetY() - textSize.height); in AddInferenceOutputToFrame()
DNonMaxSuppression.cpp33 …loat yMinIntersection = std::max(detect1.GetBoundingBox().GetY(), detect2.GetBoundingBox().GetY()); in IntersectionOverUnion()
36 …float yMaxIntersection = std::min(detect1.GetBoundingBox().GetY() + detect1.GetBoundingBox().GetHe… in IntersectionOverUnion()
37 … detect2.GetBoundingBox().GetY() + detect2.GetBoundingBox().GetHeight()); in IntersectionOverUnion()
/external/clang/test/CodeGenCXX/
Dms-property.cpp35 __declspec(property(get=GetY,put=PutY)) T y[];
36 char GetY(char i, Test1 j) { return i+j.get_x(); } in GetY() function in St
/external/armnn/samples/ObjectDetection/include/
DBoundingBox.hpp47 int GetY() const;
/external/webrtc/common_video/
Dvideo_frame_unittest.cc250 int GetY(rtc::scoped_refptr<PlanarYuvBuffer> buf, int col, int row) { in GetY() function
483 EXPECT_EQ(GetY(original, i, j), GetY(buf, i, j)); in TEST_P()
487 EXPECT_EQ(GetY(picture, i - kOffsetx, j - kOffsety), GetY(buf, i, j)); in TEST_P()
/external/deqp-deps/amber/src/
Dcommand.h170 float GetY() const { return y_; } in GetY() function
202 float GetY() const { return y_; } in GetY() function
302 uint32_t GetY() const { return y_; } in GetY() function
380 float GetY() const { return y_; } in GetY() function
Dverifier.cc425 command->GetY()); in Probe()
434 y = static_cast<uint32_t>(command->GetY()); in Probe()
/external/flatbuffers/tests/MyGame/Example/
DVec3.php36 public function GetY() function in MyGame\\Example\\Vec3
/external/googletest/docs/
Dgmock_for_dummies.md114 virtual int GetY() const = 0;
125 `GoTo()`. Finally, `GetX()` and `GetY()` tell you the current position of the
178 MOCK_METHOD(int, GetY, (), (const, override));
464 EXPECT_CALL(turtle, GetY())
470 says that `turtle.GetY()` will be called *at least twice* (gMock knows this as
510 EXPECT_CALL(turtle, GetY())
515 Obviously `turtle.GetY()` is expected to be called four times. But if you think
518 will be taken afterwards. So the right answer is that `turtle.GetY()` will
694 `GetY()` get called.
/external/deqp-deps/amber/src/vulkan/
Dengine_vulkan.cc472 float y = command->GetY(); in DoDrawRect()
537 float y = command->GetY(); in DoDrawGrid()
631 command->GetX(), command->GetY(), command->GetZ()); in DoCompute()
/external/deqp-deps/amber/src/vkscript/
Dcommand_parser_test.cc48 EXPECT_FLOAT_EQ(2.3f, draw_cmd->GetY()); in TEST_F()
86 EXPECT_FLOAT_EQ(2.3f, cmd->GetY()); in TEST_F()
108 EXPECT_FLOAT_EQ(2.3f, cmd->GetY()); in TEST_F()
130 EXPECT_FLOAT_EQ(2.3f, cmd->GetY()); in TEST_F()
152 EXPECT_FLOAT_EQ(2.3f, cmd->GetY()); in TEST_F()
370 EXPECT_EQ(2U, cmd->GetY()); in TEST_F()
861 EXPECT_FLOAT_EQ(30U, cmd->GetY()); in TEST_P()
896 EXPECT_FLOAT_EQ(30U, cmd->GetY()); in TEST_P()
932 EXPECT_FLOAT_EQ(30U, cmd->GetY()); in TEST_P()
968 EXPECT_FLOAT_EQ(30U, cmd->GetY()); in TEST_P()
[all …]
/external/deqp-deps/amber/src/amberscript/
Dparser_run_test.cc49 EXPECT_EQ(4U, cmd->AsCompute()->GetY()); in TEST_F()
218 EXPECT_FLOAT_EQ(4.f, cmd->AsDrawRect()->GetY()); in TEST_F()
517 EXPECT_FLOAT_EQ(4.f, cmd->AsDrawGrid()->GetY()); in TEST_F()
Dparser_debug_test.cc151 EXPECT_EQ(4U, compute->GetY()); in TEST_F()
Dparser_expect_test.cc57 EXPECT_EQ(6U, probe->GetY()); in TEST_F()
99 EXPECT_EQ(7U, probe->GetY()); in TEST_F()
/external/flatbuffers/tests/
DphpTest.php109 $assert->strictEqual($pos->GetY(), 2.0);
/external/deqp-deps/amber/src/dawn/
Dengine_dawn.cc1250 float y = command->GetY(); in DoDrawRect()
1441 pass.Dispatch(command->GetX(), command->GetY(), command->GetZ()); in DoCompute()