Home
last modified time | relevance | path

Searched refs:COLOR_BGR2BGRA (Results 1 – 7 of 7) sorted by relevance

/third_party/mindspore/mindspore/dataset/vision/
Dutils.py79 COLOR_BGR2BGRA = 0 variable in ConvertMode
80 COLOR_RGB2RGBA = COLOR_BGR2BGRA
Dc_transforms.py95 DE_C_CONVERTCOLOR_MODE = {ConvertMode.COLOR_BGR2BGRA: cde.ConvertMode.DE_COLOR_BGR2BGRA,
/third_party/mindspore/tests/ut/python/dataset/
Dtest_convertcolor.py69 convert_color(mode.ConvertMode.COLOR_BGR2BGRA, cv2.COLOR_BGR2BGRA, plot)
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/include/dataset/
Dconstants.h31 COLOR_BGR2BGRA = 0, ///< Add alpha channel to BGR image. enumerator
32 COLOR_RGB2RGBA = COLOR_BGR2BGRA, ///< Add alpha channel to RGB image.
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/kernels/ir/vision/
Dconvert_color_ir.cc38 if (convert_mode_ < ConvertMode::COLOR_BGR2BGRA || convert_mode_ > ConvertMode::COLOR_RGBA2GRAY) { in ValidateParams()
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/api/python/bindings/dataset/core/
Dbindings.cc143 .value("DE_COLOR_BGR2BGRA", ConvertMode::COLOR_BGR2BGRA) in __anon7cba642b1002()
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/kernels/image/
Dimage_utils.cc74 …std::vector<ConvertMode> four_channels = {ConvertMode::COLOR_BGR2BGRA, ConvertMode::COLOR_RGB2RGB… in GetConvertShape()