Home
last modified time | relevance | path

Searched refs:SLRWeightTuple (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/converter/include/
H A Dpost_proc_slr.h78 using SLRWeightTuple = std::tuple<SLRWeightMat, SLRWeightMat, SLRWeightKey>; variable
79 using SLRLRUCache = SkLRUCache<uint32_t, std::shared_ptr<SLRWeightTuple>>;
97 std::shared_ptr<SLRWeightTuple> find(uint32_t key) in find()
103 … std::shared_ptr<SLRWeightTuple> insert(uint32_t key, std::shared_ptr<SLRWeightTuple> weightTuple) in insert()
H A Dpost_proc.h72 std::shared_ptr<SLRWeightTuple> initSLRFactor(Size srcSize, Size dstSize);
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/converter/src/
H A Dpost_proc.cpp778 std::shared_ptr<SLRWeightTuple> PostProc::initSLRFactor(Size srcSize, Size dstSize) in initSLRFactor()
787 std::shared_ptr<SLRWeightTuple> weightTuplePtr = cacheMgr.find(key.fKey); in initSLRFactor()
793 SLRWeightTuple value{slrWeightX, slrWeightY, key}; in initSLRFactor()
794 std::shared_ptr<SLRWeightTuple> weightPtr = std::make_shared<SLRWeightTuple>(value); in initSLRFactor()
849 std::shared_ptr<SLRWeightTuple> weightTuplePtr = initSLRFactor(imgInfo.size, desiredSize); in ScalePixelMapWithSLR()