/third_party/mindspore/tests/ut/python/dataset/ |
D | test_random_sharpness.py | 33 def test_random_sharpness_py(degrees=(0.7, 0.7), plot=False): argument 122 def test_random_sharpness_c(degrees=(1.6, 1.6), plot=False): argument 208 def test_random_sharpness_c_py(degrees=(1.0, 1.0), plot=False): argument 263 def test_random_sharpness_one_channel_c(degrees=(1.4, 1.4), plot=False): argument
|
D | test_random_color.py | 39 def test_random_color_py(degrees=(0.1, 1.9), plot=False): argument 94 def test_random_color_c(degrees=(0.1, 1.9), plot=False, run_golden=True): argument 164 def test_compare_random_color_op(degrees=None, plot=False): argument
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/kernels/ir/vision/ |
D | random_sharpness_ir.cc | 35 RandomSharpnessOperation::RandomSharpnessOperation(const std::vector<float> °rees) in RandomSharpnessOperation() 70 std::vector<float> degrees = op_params["degrees"]; in from_json() local
|
D | affine_ir.cc | 25 AffineOperation::AffineOperation(float_t degrees, const std::vector<float> &translation, float scal… in AffineOperation() 96 float_t degrees = op_params["degrees"]; in from_json() local
|
D | rotate_ir.cc | 33 RotateOperation::RotateOperation(float degrees, InterpolationMode resample, bool expand, in RotateOperation() 112 float degrees = op_params["degree"]; in from_json() local
|
D | random_rotation_ir.cc | 38 RandomRotationOperation::RandomRotationOperation(const std::vector<float> °rees, InterpolationMo… in RandomRotationOperation() 136 std::vector<float> degrees = op_params["degrees"]; in from_json() local
|
D | random_affine_ir.cc | 36 RandomAffineOperation::RandomAffineOperation(const std::vector<float_t> °rees, in RandomAffineOperation() 172 std::vector<float_t> degrees = op_params["degrees"]; in from_json() local
|
D | random_color_ir.cc | 68 std::vector<float> degrees = op_params["degrees"]; in from_json() local
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/kernels/image/ |
D | affine_op.cc | 38 AffineOp::AffineOp(float_t degrees, const std::vector<float_t> &translation, float_t scale, in AffineOp() 53 float_t degrees = 0.0; in Compute() local
|
D | random_affine_op.cc | 33 RandomAffineOp::RandomAffineOp(std::vector<float_t> degrees, std::vector<float_t> translate_range, in RandomAffineOp() 69 float_t degrees = 0.0; in Compute() local
|
D | math_utils.cc | 66 Status DegreesToRadians(float_t degrees, float_t *radians_target) { in DegreesToRadians()
|
D | rotate_op.cc | 44 RotateOp::RotateOp(float degrees, InterpolationMode resample, bool expand, std::vector<float> cente… in RotateOp()
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/ |
D | func_trigonometric.inl | 12 GLM_FUNC_QUALIFIER GLM_CONSTEXPR genType radians(genType degrees) 27 GLM_FUNC_QUALIFIER GLM_CONSTEXPR genType degrees(genType radians) function 35 GLM_FUNC_QUALIFIER GLM_CONSTEXPR vecType<T, P> degrees(vecType<T, P> const & v) function
|
/third_party/flutter/skia/src/effects/ |
D | SkColorMatrix.cpp | 75 void SkColorMatrix::setRotate(Axis axis, float degrees) { in setRotate() 97 void SkColorMatrix::preRotate(Axis axis, float degrees) { in preRotate() 103 void SkColorMatrix::postRotate(Axis axis, float degrees) { in postRotate()
|
/third_party/skia/modules/svg/src/ |
D | SkSVGFeColorMatrix.cpp | 56 SkColorMatrix SkSVGFeColorMatrix::MakeHueRotate(SkSVGNumberType degrees) { in MakeHueRotate()
|
/third_party/boost/libs/mpi/test/ |
D | gps_position.hpp | 27 int degrees; member in gps_position
|
/third_party/skia/experimental/xform/ |
D | SkXform.h | 109 void setRotate(SkScalar degrees) { in setRotate()
|
/third_party/flutter/skia/experimental/xform/ |
D | SkXform.h | 109 void setRotate(SkScalar degrees) { in setRotate()
|
/third_party/flutter/skia/src/atlastext/ |
D | SkAtlasTextTarget.cpp | 64 void SkAtlasTextTarget::rotate(SkScalar degrees) { this->accessCTM()->preRotate(degrees); } in rotate() 66 void SkAtlasTextTarget::rotate(SkScalar degrees, SkScalar px, SkScalar py) { in rotate()
|
/third_party/mindspore/tests/ut/cpp/dataset/ |
D | affine_op_test.cc | 47 std::vector<double> GenerateMatrix(const std::shared_ptr<Tensor> &input, float_t degrees, in GenerateMatrix()
|
/third_party/libinput/src/ |
D | util-matrix.h | 82 matrix_init_rotate(struct matrix *m, int degrees) in matrix_init_rotate()
|
/third_party/mindspore/mindspore/dataset/vision/ |
D | c_transforms.py | 737 …def __init__(self, degrees, translate=None, scale=None, shear=None, resample=Inter.NEAREST, fill_v… argument 795 def __init__(self, degrees=(0.1, 1.9)): argument 1337 def __init__(self, degrees, resample=Inter.NEAREST, expand=False, center=None, fill_value=0): argument 1421 def __init__(self, degrees=(0.1, 1.9)): argument 1657 def __init__(self, degrees, resample=Inter.NEAREST, expand=False, center=None, fill_value=0): argument
|
D | py_transforms_util.py | 683 def random_rotation(img, degrees, resample, expand, center, fill_value): argument 1432 def random_color(img, degrees): argument 1452 def random_sharpness(img, degrees): argument
|
D | py_transforms.py | 740 def __init__(self, degrees, resample=Inter.NEAREST, expand=False, center=None, fill_value=0): argument 1248 …def __init__(self, degrees, translate=None, scale=None, shear=None, resample=Inter.NEAREST, fill_v… argument 1468 def __init__(self, degrees=(0.1, 1.9)): argument 1506 def __init__(self, degrees=(0.1, 1.9)): argument
|
/third_party/libinput/test/ |
D | test-pad.c | 410 double degrees, expected; in START_TEST() local 470 double degrees; in START_TEST() local 657 double degrees, expected; in START_TEST() local
|