Home
last modified time | relevance | path

Searched refs:BoundingBoxAugment (Results 1 – 6 of 6) sorted by relevance

/third_party/mindspore/tests/ut/cpp/dataset/
Dc_api_vision_bounding_box_augment_test.cc40 …std::shared_ptr<TensorTransform> bound_box_augment_op(new vision::BoundingBoxAugment({random_rotat… in TEST_F()
80 auto bound_box_augment_op(new vision::BoundingBoxAugment({random_rotation_op}, 1.0)); in TEST_F()
123 …vision::BoundingBoxAugment bound_box_augment_op = vision::BoundingBoxAugment({random_rotation_op},… in TEST_F()
164 …std::shared_ptr<TensorTransform> bound_box_augment_op(new vision::BoundingBoxAugment({random_rotat… in TEST_F()
189 …std::shared_ptr<TensorTransform> bound_box_augment_op(new vision::BoundingBoxAugment({random_rotat… in TEST_F()
211 …std::shared_ptr<TensorTransform> bound_box_augment_op(new vision::BoundingBoxAugment(nullptr, 0.5)… in TEST_F()
237 …std::shared_ptr<TensorTransform> bound_box_augment_op(new vision::BoundingBoxAugment({random_rotat… in TEST_F()
/third_party/mindspore/tests/ut/python/dataset/
Dtest_bounding_box_augment.py49 test_op = c_vision.BoundingBoxAugment(c_vision.RandomRotation(90), 1)
88 test_op = c_vision.BoundingBoxAugment(c_vision.RandomCrop(50), 0.9)
126 test_op = c_vision.BoundingBoxAugment(c_vision.RandomHorizontalFlip(1), 0.9)
164 test_op = c_vision.BoundingBoxAugment(c_vision.RandomHorizontalFlip(1), 1)
194 test_op = c_vision.BoundingBoxAugment(c_vision.RandomHorizontalFlip(1), 1)
239 test_op = c_vision.BoundingBoxAugment(c_vision.RandomHorizontalFlip(1), 1.5)
255 test_op = c_vision.BoundingBoxAugment(c_vision.RandomHorizontalFlip(1),
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/include/dataset/
Dvision.h86 class BoundingBoxAugment final : public TensorTransform {
91 explicit BoundingBoxAugment(TensorTransform *transform, float ratio = 0.3);
96 explicit BoundingBoxAugment(const std::shared_ptr<TensorTransform> &transform, float ratio = 0.3);
101 …explicit BoundingBoxAugment(const std::reference_wrapper<TensorTransform> transform, float ratio =…
104 ~BoundingBoxAugment() = default;
Dtransforms.h43 class BoundingBoxAugment; variable
57 friend class vision::BoundingBoxAugment;
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/api/
Dvision.cc151 struct BoundingBoxAugment::Data {
156 BoundingBoxAugment::BoundingBoxAugment(TensorTransform *transform, float ratio) : data_(std::make_s… in BoundingBoxAugment() function in mindspore::dataset::vision::BoundingBoxAugment
161 BoundingBoxAugment::BoundingBoxAugment(const std::shared_ptr<TensorTransform> &transform, float rat… in BoundingBoxAugment() function in mindspore::dataset::vision::BoundingBoxAugment
167 BoundingBoxAugment::BoundingBoxAugment(const std::reference_wrapper<TensorTransform> transform, flo… in BoundingBoxAugment() function in mindspore::dataset::vision::BoundingBoxAugment
173 std::shared_ptr<TensorOperation> BoundingBoxAugment::Parse() { in Parse()
/third_party/mindspore/mindspore/dataset/vision/
Dc_transforms.py192 class BoundingBoxAugment(ImageTensorOperation): class