Home
last modified time | relevance | path

Searched refs:thresholdHigh (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/common/
H A Drs_threshold_detector.h32 RSThresholdDetector(T thresholdLow, T thresholdHigh) in RSThresholdDetector() argument
33 :thresholdLow_(thresholdLow), thresholdHigh_(thresholdHigh), inThresHoldBand_(false) {} in RSThresholdDetector()
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/common/
H A Drs_threshold_detector_test.cpp47 uint32_t thresholdHigh = 500; // high threshold : 500 variable
49 …o thresholdDetector = std::make_shared<RSThresholdDetector<uint32_t>>(thresholdLow, thresholdHigh);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/drawable/
H A Drs_property_drawable_utils.cpp682 …float low, float high, float thresholdLow, float thresholdHigh, std::shared_ptr<Drawing::ShaderEff… in MakeBinarizationShader() argument
712 thresholdHigh = thresholdHigh <= thresholdLow ? thresholdHigh + 1e-6 : thresholdHigh; in MakeBinarizationShader()
717 builder->SetUniform("ubo_thresholdHigh", thresholdHigh); in MakeBinarizationShader()
826 float thresholdHigh = aiInvert->z_ + aiInvert->w_; in DrawBinarization() local
827 …auto shader = MakeBinarizationShader(aiInvert->x_, aiInvert->y_, thresholdLow, thresholdHigh, imag… in DrawBinarization()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/drawable/
H A Drs_property_drawable_utils.h56 float thresholdHigh, std::shared_ptr<Drawing::ShaderEffect> imageShader);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/property/
H A Drs_properties_painter.cpp1636 float thresholdHigh = aiInvert->z_ + aiInvert->w_; in DrawBinarizationShader() local
1638 aiInvert->x_, aiInvert->y_, thresholdLow, thresholdHigh, imageShader); in DrawBinarizationShader()
1648 float thresholdLow, float thresholdHigh, in MakeBinarizationShader() argument
1680 thresholdHigh = thresholdHigh <= thresholdLow ? thresholdHigh + 1e-6 : thresholdHigh; in MakeBinarizationShader()
1685 builder->SetUniform("ubo_thresholdHigh", thresholdHigh); in MakeBinarizationShader()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/property/
H A Drs_properties_painter.h129 float thresholdLow, float thresholdHigh,