Home
last modified time | relevance | path

Searched refs:Resize (Results 1 – 25 of 289) sorted by relevance

12345678910>>...12

/third_party/mindspore/mindspore/core/ops/
Dresize.cc28 void Resize::Init(const Format format, const ResizeMethod method, const int64_t new_height, const i… in Init()
43 void Resize::set_format(const Format format) { in set_format()
48 void Resize::set_method(const ResizeMethod method) { in set_method()
53 void Resize::set_new_height(const int64_t new_height) { (void)this->AddAttr(kNewHeight, MakeValue(n… in set_new_height()
55 void Resize::set_new_width(const int64_t new_width) { (void)this->AddAttr(kNewWidth, MakeValue(new_… in set_new_width()
57 void Resize::set_preserve_aspect_ratio(const bool preserve_aspect_ratio) { in set_preserve_aspect_ratio()
61 void Resize::set_coordinate_transform_mode(const CoordinateTransformMode coordinate_transform_mode)… in set_coordinate_transform_mode()
66 void Resize::set_cubic_coeff(const float cubic_coeff) { (void)this->AddAttr(kCubicCoeff, MakeValue(… in set_cubic_coeff()
68 void Resize::set_exclude_outside(const int64_t exclude_outside) { in set_exclude_outside()
72 void Resize::set_extrapolation_value(const float extrapolation_value) { in set_extrapolation_value()
[all …]
Dresize.h29 class MS_CORE_API Resize : public PrimitiveC {
32 Resize() : PrimitiveC(kNameResize) {} in Resize() function
35 ~Resize() = default;
37 MS_DECLARE_PARENT(Resize, PrimitiveC);
163 using PrimResizePtr = std::shared_ptr<Resize>;
/third_party/boost/boost/numeric/odeint/stepper/generation/
Dgeneration_runge_kutta_dopri5.hpp32 … State , class Value , class Deriv , class Time , class Algebra , class Operations , class Resize >
33 …et_controller< runge_kutta_dopri5< State , Value , Deriv , Time , Algebra , Operations , Resize > >
35 …typedef runge_kutta_dopri5< State , Value , Deriv , Time , Algebra , Operations , Resize > stepper…
40 … State , class Value , class Deriv , class Time , class Algebra , class Operations , class Resize >
41 …_dense_output< runge_kutta_dopri5< State , Value , Deriv , Time , Algebra , Operations , Resize > >
43 …typedef runge_kutta_dopri5< State , Value , Deriv , Time , Algebra , Operations , Resize > stepper…
Dgeneration_rosenbrock4.hpp31 template< class Value , class Coefficients , class Resize >
32 struct get_controller< rosenbrock4< Value , Coefficients , Resize > >
34 typedef rosenbrock4< Value , Coefficients , Resize > stepper_type;
40 template< class Value , class Coefficients , class Resize >
41 struct get_dense_output< rosenbrock4< Value , Coefficients , Resize > >
43 typedef rosenbrock4< Value , Coefficients , Resize > stepper_type;
Dgeneration_runge_kutta_cash_karp54_classic.hpp33 … State , class Value , class Deriv , class Time , class Algebra , class Operations , class Resize >
34 …< runge_kutta_cash_karp54_classic< State , Value , Deriv , Time , Algebra , Operations , Resize > >
36 …a_cash_karp54_classic< State , Value , Deriv , Time , Algebra , Operations , Resize > stepper_type;
Dgeneration_runge_kutta_cash_karp54.hpp31 … State , class Value , class Deriv , class Time , class Algebra , class Operations , class Resize >
32 …ntroller< runge_kutta_cash_karp54< State , Value , Deriv , Time , Algebra , Operations , Resize > >
34 …typedef runge_kutta_cash_karp54< State , Value , Deriv , Time , Algebra , Operations , Resize > st…
Dgeneration_runge_kutta_fehlberg78.hpp30 … State , class Value , class Deriv , class Time , class Algebra , class Operations , class Resize >
31 …ontroller< runge_kutta_fehlberg78< State , Value , Deriv , Time , Algebra , Operations , Resize > >
33 …typedef runge_kutta_fehlberg78< State , Value , Deriv , Time , Algebra , Operations , Resize > ste…
/third_party/mindspore/tests/ut/python/dataset/
Dtest_adjustgamma.py91 …data_set = data_set.map(operations=[C.Decode(), C.Resize((224, 224)), lambda img: np.array(img[:, …
101 …data_set = data_set.map(operations=[C.Decode(), C.Resize((224, 224)), lambda img: np.array(img[:, …
120 F.Resize((224, 224)),
132 F.Resize((224, 224)),
149 …data_set = data_set.map(operations=[C.Decode(), C.Resize((224, 224)), lambda img: np.array(img[:, …
168 F.Resize((224, 224)),
183 transforms1 = [C.Decode(), C.Resize([64, 64])]
195 C.Resize([64, 64]),
224 transforms1 = [F.Decode(), F.Resize([64, 64]), F.ToTensor()]
236 F.Resize([64, 64]),
[all …]
Dtest_autocontrast.py42 F.Resize((224, 224)),
62 F.Resize((224, 224)),
100 data_set = data_set.map(operations=[C.Decode(), C.Resize((224, 224))], input_columns=["image"])
120 data_set = data_set.map(operations=[C.Decode(), C.Resize((224, 224))], input_columns=["image"])
157 data_set = data_set.map(operations=[C.Decode(), C.Resize((224, 224))], input_columns=["image"])
180 …data_set = data_set.map(operations=[C.Decode(), C.Resize((224, 224)), lambda img: np.array(img[:, …
241 C.Resize((224, 224)),
250 data_set = data_set.map(operations=[C.Decode(), C.Resize((224, 224)),
267 C.Resize((224, 224)),
277 C.Resize((224, 224)),
[all …]
Dtest_invert.py57 F.Resize((224, 224)),
76 F.Resize((224, 224)),
111 transforms_original = [C.Decode(), C.Resize(size=[224, 224])]
128 transform_invert = [C.Decode(), C.Resize(size=[224, 224]),
160 data_set = data_set.map(operations=[C.Decode(), C.Resize((224, 224))], input_columns=["image"])
176 data_set = data_set.map(operations=[C.Decode(), C.Resize((224, 224))], input_columns=["image"])
215 data_set = data_set.map(operations=[C.Decode(), C.Resize((224, 224)),
254 C.Resize(size=[224, 224]),
Dtest_equalize.py43 F.Resize((224, 224)),
62 F.Resize((224, 224)),
97 transforms_original = [C.Decode(), C.Resize(size=[224, 224])]
114 transform_equalize = [C.Decode(), C.Resize(size=[224, 224]),
146 data_set = data_set.map(operations=[C.Decode(), C.Resize((224, 224))], input_columns=["image"])
162 data_set = data_set.map(operations=[C.Decode(), C.Resize((224, 224))], input_columns=["image"])
201 data_set = data_set.map(operations=[C.Decode(), C.Resize((224, 224)),
266 C.Resize(size=[224, 224]),
Dtest_random_sharpness.py43 F.Resize((224, 224)),
66 … F.Resize((224, 224)),
133 C.Resize((224, 224))]
155 C.Resize((224, 224)),
216 data = data.map(operations=[C.Decode(), C.Resize((200, 300))], input_columns=["image"])
239 data = data.map(operations=[C.Decode(), C.Resize((200, 300))], input_columns=["image"])
299 data = data.map(operations=[C.Decode(), C.Resize((224, 224)),
307 data = data.map(operations=[C.Decode(), C.Resize((224, 224)),
315 data = data.map(operations=[C.Decode(), C.Resize((224, 224)),
Dtest_resize.py43 resize_op = vision.Resize(size)
72 resize_op = py_vision.Resize(20, Inter.ANTIALIAS)
94 resize_op = vision.Resize(size)
123 vision.Resize(size, interpolation)
Dtest_rgb_bgr.py84 transforms1 = [py_vision.Decode(), py_vision.Resize([64, 64]), py_vision.ToTensor()]
96 py_vision.Resize([64, 64]),
126 vision.Resize([64, 64])
139 vision.Resize([64, 64]),
Dtest_deviceop_cpu.py54 resize_op = vision.Resize((resize_height, resize_width))
79 resize_op = vision.Resize((resize_height, resize_width))
107 resize_op = vision.Resize((resize_height, resize_width))
Dtest_exceptions.py32 data.map(operations=vision.Resize(100, 100), input_columns=["image"])
49 data = data.map(operations=vision.Resize((100, 100)), input_columns=["image"])
Dtest_eager_vision.py36 img = C.Resize(size=(32, 32))(img)
81 img = C.Resize(size=(32, 32))(img)
109 img = C.Resize(size=(-32, 32))(img)
Dtest_uniform_augment.py60 F.Resize((224, 224)),
87 F.Resize((224, 224)),
123 transforms_original = [C.Decode(), C.Resize(size=[224, 224]),
148 transforms_all = [C.Decode(), C.Resize(size=[224, 224]),
/third_party/abseil-cpp/absl/strings/internal/
Dresize_uninitialized.h36 static void Resize(string_type* s, size_t new_size) { s->resize(new_size); } in Resize() function
45 static void Resize(string_type* s, size_t new_size) {
66 ResizeUninitializedTraits<string_type>::Resize(s, new_size);
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
Dresize_uninitialized.h37 static void Resize(string_type* s, size_t new_size) { s->resize(new_size); } in Resize() function
46 static void Resize(string_type* s, size_t new_size) {
67 ResizeUninitializedTraits<string_type>::Resize(s, new_size);
/third_party/mindspore/tests/ut/cpp/dataset/
Dc_api_vision_random_subselect_policy_test.cc42 std::shared_ptr<TensorTransform> resize_op(new vision::Resize({15, 15})); in TEST_F()
94 auto resize_op(new vision::Resize({15, 15})); in TEST_F()
152 vision::Resize resize_op = vision::Resize({15, 15}); in TEST_F()
203 std::shared_ptr<TensorTransform> resize_op(new vision::Resize({15, 15})); in TEST_F()
253 std::shared_ptr<TensorTransform> resize_op(new vision::Resize({15, 15})); in TEST_F()
309 std::shared_ptr<TensorTransform> resize_op(new vision::Resize({15, 15})); in TEST_F()
/third_party/mindspore/mindspore/lite/micro/coder/opcoders/nnacl/fp32/
Dtile_fp32_coder.cc34 int TileFP32Coder::Resize() { in Resize() function in mindspore::lite::micro::nnacl::TileFP32Coder
50 int TileFP32Coder::Prepare(CoderContext *const context) { return Resize(); } in Prepare()
/third_party/flutter/engine/flutter/fml/
Dmessage.cc55 return Resize(NextPowerOfTwoSize(size)); in Reserve()
58 bool Message::Resize(size_t size) { in Resize() function in fml::Message
/third_party/mindspore/tests/st/networks/models/resnet50/src_thor/
Ddataset.py59 C.Resize((256, 256)),
67 C.Resize((256, 256)),
/third_party/mindspore/mindspore/lite/test/ut/src/dataset/
Deager_test.cc33 using mindspore::dataset::vision::Resize;
70 (void)Execute(Resize({224, 224}))(image, &image); in TEST_F()

12345678910>>...12