HomeSort by relevance Sort by last modified time
    Searched defs:lowThreshold (Results 1 - 6 of 6) sorted by null

  /external/opencv3/samples/cpp/tutorial_code/ImgTrans/
CannyDetector_Demo.cpp 21 int lowThreshold;
37 Canny( detected_edges, detected_edges, lowThreshold, lowThreshold*ratio, kernel_size );
68 createTrackbar( "Min Threshold:", window_name, &lowThreshold, max_lowThreshold, CannyThreshold );
  /frameworks/native/include/input/
VelocityControl.h 45 float lowThreshold;
48 // The difference between highThreshold and lowThreshold controls
52 // Must be a non-negative value greater than or equal to lowThreshold.
65 scale(1.0f), lowThreshold(0.0f), highThreshold(0.0f), acceleration(1.0f) {
68 VelocityControlParameters(float scale, float lowThreshold,
70 scale(scale), lowThreshold(lowThreshold),
  /external/opencv3/modules/imgproc/test/
test_canny.cpp 139 cannyFollow( int x, int y, float lowThreshold, const Mat& mag, Mat& dst )
152 mag.at<float>(y1, x1) > lowThreshold &&
154 cannyFollow( x1, y1, lowThreshold, mag, dst );
168 float lowThreshold = (float)MIN(threshold1, threshold2);
200 if( a <= lowThreshold )
246 cannyFollow( x, y, lowThreshold, mag, dst );
  /frameworks/base/services/core/java/com/android/server/pm/
BackgroundDexOptService.java 123 final long lowThreshold = StorageManager.from(this).getStorageLowBytes(dataDir);
124 if (lowThreshold == 0) {
128 return lowThreshold;
142 final long lowThreshold = getLowStorageThreshold();
162 if (usableSpace < lowThreshold) {
200 final long lowThreshold = getLowStorageThreshold();
216 if (usableSpace < lowThreshold) {
OtaDexoptService.java 188 long lowThreshold = StorageManager.from(mContext).getStorageLowBytes(dataDir);
189 if (lowThreshold == 0) {
193 return (usableSpace >= lowThreshold);
PackageManagerService.java     [all...]

Completed in 1367 milliseconds