Home
last modified time | relevance | path

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

/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/converter/include/
H A Dpost_proc_slr.h77 using SLRWeightMat = std::shared_ptr<SLRWeightVec>; variable
78 using SLRWeightTuple = std::tuple<SLRWeightMat, SLRWeightMat, SLRWeightKey>;
126 static SLRWeightMat GetWeights(float coeff, int n);
127 … static void Serial(const SLRMat &src, SLRMat &dst, const SLRWeightMat &x, const SLRWeightMat &y);
128 …static void Parallel(const SLRMat &src, SLRMat &dst, const SLRWeightMat &x, const SLRWeightMat &y);
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/converter/src/
H A Dpost_proc_slr.cpp53 SLRWeightMat SLRProc::GetWeights(float coeff, int n) in GetWeights()
60 SLRWeightMat weights = std::make_shared<SLRWeightVec>(n, std::vector<float>(2 * a, 0)); in GetWeights()
92 bool SLRCheck(const SLRMat &src, const SLRMat &dst, const SLRWeightMat &x, const SLRWeightMat &y) in SLRCheck()
119 bool SLRBoxCheck(const SLRSliceKey &key, const SLRMat &src, const SLRMat &dst, const SLRWeightMat &… in SLRBoxCheck()
120 const SLRWeightMat &y) in SLRBoxCheck()
161 …nst SLRSliceKey &key, const SLRMat &src, SLRMat &dst, const SLRWeightMat &x, const SLRWeightMat &y) in SLRBox()
201 void SLRProc::Serial(const SLRMat &src, SLRMat &dst, const SLRWeightMat &x, const SLRWeightMat &y) in Serial()
218 const SLRWeightMat &x, const SLRWeightMat &y) in SLRSubtask()
231 void SLRProc::Parallel(const SLRMat &src, SLRMat &dst, const SLRWeightMat &x, const SLRWeightMat &y) in Parallel()
H A Dpost_proc.cpp789SLRWeightMat slrWeightX = SLRProc::GetWeights(static_cast<float>(dstSize.width) / srcSize.width, in initSLRFactor()
791SLRWeightMat slrWeightY = SLRProc::GetWeights(static_cast<float>(dstSize.height) / srcSize.height, in initSLRFactor()
873 SLRWeightMat slrWeightX = std::get<0>(*weightTuplePtr); in ScalePixelMapWithSLR()
874 SLRWeightMat slrWeightY = std::get<1>(*weightTuplePtr); in ScalePixelMapWithSLR()