Home
last modified time | relevance | path

Searched refs:qualityLevel (Results 1 – 25 of 249) sorted by relevance

12345678910

/dports/sysutils/k3b/k3b-21.12.3/plugins/encoder/ogg/
H A Dk3boggvorbisencoder.cpp71 qualityLevel(4), in Private()
89 int qualityLevel; member in K3bOggVorbisEncoder::Private
152 if( d->qualityLevel < -1 ) in initEncoderInternal()
153 d->qualityLevel = -1; in initEncoderInternal()
154 else if( d->qualityLevel > 10 ) in initEncoderInternal()
155 d->qualityLevel = 10; in initEncoderInternal()
159 << (float)d->qualityLevel/10.0 << ");" << endl; in initEncoderInternal()
427 if( qualityLevel < -1 ) in fileSize()
428 qualityLevel = -1; in fileSize()
429 else if( qualityLevel > 10 ) in fileSize()
[all …]
/dports/net/tigervnc-server/tigervnc-1.12.0/common/rfb/
H A DTightJPEGEncoder.cxx69 qualityLevel(-1), fineQuality(-1), fineSubsampling(subsampleUndefined) in TightJPEGEncoder()
83 if (conn->client.qualityLevel != -1) in isSupported()
96 qualityLevel = level; in setQualityLevel()
107 return qualityLevel; in getQualityLevel()
121 if (qualityLevel >= 0 && qualityLevel <= 9) { in writeRect()
122 quality = conf[qualityLevel].quality; in writeRect()
123 subsampling = conf[qualityLevel].subsampling; in writeRect()
H A DClientParams.cxx30 compressLevel(2), qualityLevel(-1), fineQualityLevel(-1), in ClientParams()
101 qualityLevel = -1; in setEncodings()
136 qualityLevel = encodings[i] - pseudoEncodingQualityLevel0; in setEncodings()
/dports/net/tigervnc-viewer/tigervnc-1.12.0/common/rfb/
H A DTightJPEGEncoder.cxx69 qualityLevel(-1), fineQuality(-1), fineSubsampling(subsampleUndefined) in TightJPEGEncoder()
83 if (conn->client.qualityLevel != -1) in isSupported()
96 qualityLevel = level; in setQualityLevel()
107 return qualityLevel; in getQualityLevel()
121 if (qualityLevel >= 0 && qualityLevel <= 9) { in writeRect()
122 quality = conf[qualityLevel].quality; in writeRect()
123 subsampling = conf[qualityLevel].subsampling; in writeRect()
H A DClientParams.cxx30 compressLevel(2), qualityLevel(-1), fineQualityLevel(-1), in ClientParams()
101 qualityLevel = -1; in setEncodings()
136 qualityLevel = encodings[i] - pseudoEncodingQualityLevel0; in setEncodings()
/dports/graphics/opencv/opencv-4.5.3/modules/features2d/src/
H A Dgftt.cpp53 : nfeatures(_nfeatures), qualityLevel(_qualityLevel), minDistance(_minDistance), in GFTTDetector_Impl()
61 void setQualityLevel(double qlevel) CV_OVERRIDE { qualityLevel = qlevel; } in setQualityLevel()
62 double getQualityLevel() const CV_OVERRIDE { return qualityLevel; } in getQualityLevel()
100 goodFeaturesToTrack( ugrayImage, corners, nfeatures, qualityLevel, minDistance, _mask, in detect()
109 goodFeaturesToTrack( grayImage, corners, nfeatures, qualityLevel, minDistance, _mask, in detect()
122 double qualityLevel; member in cv::CV_FINAL
/dports/audio/traverso/traverso-0.49.6/src/audiofileio/encode/
H A DVorbisAudioWriter.cpp47 qualityLevel(4), in Private()
66 int qualityLevel; member in VorbisAudioWriter::Private
125 d->qualityLevel = value.toInt(); in set_format_attribute()
159 if (d->qualityLevel < -1) { in open_private()
160 d->qualityLevel = -1; in open_private()
162 else if (d->qualityLevel > 10) { in open_private()
163 d->qualityLevel = 10; in open_private()
169 (float)d->qualityLevel/10.0); in open_private()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/cudaimgproc/test/
H A Dtest_gftt.cpp77 double qualityLevel = 0.01; in CUDA_TEST_P() local
79 …= cv::cuda::createGoodFeaturesToTrackDetector(image.type(), maxCorners, qualityLevel, minDistance); in CUDA_TEST_P()
91 cv::goodFeaturesToTrack(image, pts_gold, maxCorners, qualityLevel, minDistance); in CUDA_TEST_P()
115 double qualityLevel = 0.01; in CUDA_TEST_P() local
120 …r = cv::cuda::createGoodFeaturesToTrackDetector(src.type(), maxCorners, qualityLevel, minDistance); in CUDA_TEST_P()
/dports/graphics/opencv/opencv-4.5.3/modules/imgproc/test/ocl/
H A Dtest_gftt.cpp61 static const double qualityLevel; in PARAM_TEST_CASE() local
94 const double GoodFeaturesToTrack::qualityLevel = 0.01; member in opencv_test::ocl::GoodFeaturesToTrack
104 …OCL_OFF(cv::goodFeaturesToTrack(src_roi, points, maxCorners, qualityLevel, minDistance, noArray(),… in OCL_TEST_P()
108 …OCL_ON(cv::goodFeaturesToTrack(usrc_roi, upoints, maxCorners, qualityLevel, minDistance, noArray()… in OCL_TEST_P()
138 …OCL_ON(cv::goodFeaturesToTrack(usrc_roi, upoints, maxCorners, qualityLevel, minDistance, noArray()… in OCL_TEST_P()
/dports/games/0ad/0ad-0.0.23b-alpha/source/graphics/
H A DMaterialManager.cpp36 qualityLevel = 5.0; in CMaterialManager()
37 CFG_GET_VAL("materialmgr.quality", qualityLevel); in CMaterialManager()
38 qualityLevel = clamp(qualityLevel, 0.0f, 10.0f); in CMaterialManager()
84 material.AddStaticUniform("qualityLevel", CVector4D(qualityLevel, 0, 0, 0)); in LoadMaterial()
101 if (cond.ToFloat() <= qualityLevel) in LoadMaterial()
/dports/graphics/opencv/opencv-4.5.3/modules/imgproc/perf/
H A Dperf_goodFeaturesToTrack.cpp24 double qualityLevel = get<2>(GetParam()); variable
36 …TEST_CYCLE() goodFeaturesToTrack(image, corners, maxCorners, qualityLevel, minDistance, noArray(),…
57 double qualityLevel = get<2>(GetParam()); variable
70 … TEST_CYCLE() goodFeaturesToTrack(image, corners, maxCorners, qualityLevel, minDistance, noArray(),
/dports/graphics/opencv/opencv-4.5.3/modules/imgproc/perf/opencl/
H A Dperf_gftt.cpp65 const double minDistance = get<1>(params), qualityLevel = 0.01;
79 OCL_TEST_CYCLE() cv::goodFeaturesToTrack(src, dst, maxCorners, qualityLevel,
91 const double minDistance = get<1>(params), qualityLevel = 0.01;
107 OCL_TEST_CYCLE() cv::goodFeaturesToTrack(src, dst, maxCorners, qualityLevel, minDistance,
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/cudaimgproc/perf/
H A Dperf_gftt.cpp63 const double qualityLevel = 0.01; variable
67 …= cv::cuda::createGoodFeaturesToTrackDetector(image.type(), maxCorners, qualityLevel, minDistance);
80 TEST_CYCLE() cv::goodFeaturesToTrack(image, pts, maxCorners, qualityLevel, minDistance);
/dports/java/javahelp/javahelp-3ca862d/jhMaster/JavaHelp/src/new/javax/help/plaf/basic/
H A DBasicSearchCellRenderer.java285 String qualityLevel=null; in getTreeCellRendererComponent() local
290 qualityLevel = HelpUtilities.getString(locale, "search.high"); in getTreeCellRendererComponent()
293 qualityLevel = HelpUtilities.getString(locale, "search.midhigh"); in getTreeCellRendererComponent()
296 qualityLevel = HelpUtilities.getString(locale, "search.mid"); in getTreeCellRendererComponent()
299 qualityLevel = HelpUtilities.getString(locale, "search.midlow"); in getTreeCellRendererComponent()
302 qualityLevel = HelpUtilities.getString(locale, "search.low"); in getTreeCellRendererComponent()
305 quality.setAccessibility(qualityLevel, in getTreeCellRendererComponent()
/dports/graphics/opencv/opencv-4.5.3/modules/imgproc/src/
H A Dfeatureselect.cpp76 int maxCorners, double qualityLevel, double minDistance, in ocl_goodFeaturesToTrack() argument
134 k2.args(dbarg, (float)qualityLevel, cornersarg); in ocl_goodFeaturesToTrack()
367 int maxCorners, double qualityLevel, double minDistance, in goodFeaturesToTrack() argument
370 return goodFeaturesToTrack(image, corners, maxCorners, qualityLevel, minDistance, in goodFeaturesToTrack()
375 int maxCorners, double qualityLevel, double minDistance, in goodFeaturesToTrack() argument
378 return goodFeaturesToTrack( image, corners, maxCorners, qualityLevel, minDistance, in goodFeaturesToTrack()
383 int maxCorners, double qualityLevel, double minDistance, in goodFeaturesToTrack() argument
389 CV_Assert( qualityLevel > 0 && minDistance >= 0 && maxCorners >= 0 ); in goodFeaturesToTrack()
393 ocl_goodFeaturesToTrack(_image, _corners, maxCorners, qualityLevel, minDistance, in goodFeaturesToTrack()
407 …openvx_harris(image, _corners, maxCorners, qualityLevel, minDistance, blockSize, gradientSize, har… in goodFeaturesToTrack()
[all …]
/dports/graphics/opencv/opencv-4.5.3/modules/imgproc/test/
H A Dtest_goodfeaturetotrack.cpp160 int maxCorners, double qualityLevel, double minDistance, in test_goodFeaturesToTrack() argument
165 CV_Assert( qualityLevel > 0 && minDistance >= 0 && maxCorners >= 0 ); in test_goodFeaturesToTrack()
185 cvtest::threshold( eig, eig, (float)(maxVal*qualityLevel), 0.f,THRESH_TOZERO ); in test_goodFeaturesToTrack()
338 double qualityLevel; member in opencv_test::__anon971b55970111::CV_GoodFeatureToTTest
352 qualityLevel = 0.01; in CV_GoodFeatureToTTest()
406 qualityLevel, in run_func()
425 qualityLevel, in run_func()
451 qualityLevel, in validate_test_results()
470 qualityLevel, in validate_test_results()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/cudaimgproc/src/
H A Dgftt.cpp68 … GoodFeaturesToTrackDetector(int srcType, int maxCorners, double qualityLevel, double minDistance,
87 …ctor::GoodFeaturesToTrackDetector(int srcType, int maxCorners, double qualityLevel, double minDist… in GoodFeaturesToTrackDetector() argument
89 maxCorners_(maxCorners), qualityLevel_(qualityLevel), minDistance_(minDistance) in GoodFeaturesToTrackDetector()
222 …createGoodFeaturesToTrackDetector(int srcType, int maxCorners, double qualityLevel, double minDist… in createGoodFeaturesToTrackDetector() argument
226 …new GoodFeaturesToTrackDetector(srcType, maxCorners, qualityLevel, minDistance, blockSize, useHarr… in createGoodFeaturesToTrackDetector()
/dports/net/tigervnc-server/tigervnc-1.12.0/java/com/tigervnc/rfb/
H A DServerParams.java48 compressLevel = 6; qualityLevel = -1; fineQualityLevel = -1; in ServerParams()
125 qualityLevel = -1; in setEncodings()
193 qualityLevel = encodings[i] - Encodings.pseudoEncodingQualityLevel0; in setEncodings()
220 public int qualityLevel; field in ServerParams
H A DCConnection.java47 compressLevel = 2; qualityLevel = -1; in CConnection()
548 if (qualityLevel == level) in setQualityLevel()
551 qualityLevel = level; in setQualityLevel()
700 if (qualityLevel >= 0 && qualityLevel <= 9) in updateEncodings()
701 encodings.add(Encodings.pseudoEncodingQualityLevel0 + qualityLevel); in updateEncodings()
741 private int qualityLevel; field in CConnection
/dports/net/tigervnc-viewer/tigervnc-1.12.0/java/com/tigervnc/rfb/
H A DServerParams.java48 compressLevel = 6; qualityLevel = -1; fineQualityLevel = -1; in ServerParams()
125 qualityLevel = -1; in setEncodings()
193 qualityLevel = encodings[i] - Encodings.pseudoEncodingQualityLevel0; in setEncodings()
220 public int qualityLevel; field in ServerParams
H A DCConnection.java47 compressLevel = 2; qualityLevel = -1; in CConnection()
548 if (qualityLevel == level) in setQualityLevel()
551 qualityLevel = level; in setQualityLevel()
700 if (qualityLevel >= 0 && qualityLevel <= 9) in updateEncodings()
701 encodings.add(Encodings.pseudoEncodingQualityLevel0 + qualityLevel); in updateEncodings()
741 private int qualityLevel; field in CConnection
/dports/emulators/mess/mame-mame0226/3rdparty/bgfx/examples/39-assao/
H A Dcs_assao_generate_q.sh161 void SSAOTapInner( const int qualityLevel, inout float obscuranceSum, inout float weightSum, const …
173 if( qualityLevel >= SSAO_HALOING_REDUCTION_ENABLE_AT_QUALITY_PRESET )
185 void SSAOTap( const int qualityLevel, inout float obscuranceSum, inout float weightSum, const int t…
203 …float mipLevel = ( qualityLevel < SSAO_DEPTH_MIPS_ENABLE_AT_QUALITY_PRESET )?(0):(samplePow2Len + …
210 …SSAOTapInner( qualityLevel, obscuranceSum, weightSum, samplingUV, mipLevel, pixCenterPos, negViews…
217 if( qualityLevel >= SSAO_TILT_SAMPLES_ENABLE_AT_QUALITY_PRESET )
227 …SSAOTapInner( qualityLevel, obscuranceSum, weightSum, samplingMirroredUV, mipLevel, pixCenterPos, …
251 …ft right top bottom neighbouring pixels for edge detection (gets compiled out on qualityLevel == 0)
392 …SSAOTap( qualityLevel, obscuranceSum, weightSum, int(i), rotScale, pixCenterPos, negViewspaceDir, …
395 else // if( qualityLevel == 3 ) adaptive approach
/dports/emulators/mame/mame-mame0226/3rdparty/bgfx/examples/39-assao/
H A Dcs_assao_generate_q.sh161 void SSAOTapInner( const int qualityLevel, inout float obscuranceSum, inout float weightSum, const …
173 if( qualityLevel >= SSAO_HALOING_REDUCTION_ENABLE_AT_QUALITY_PRESET )
185 void SSAOTap( const int qualityLevel, inout float obscuranceSum, inout float weightSum, const int t…
203 …float mipLevel = ( qualityLevel < SSAO_DEPTH_MIPS_ENABLE_AT_QUALITY_PRESET )?(0):(samplePow2Len + …
210 …SSAOTapInner( qualityLevel, obscuranceSum, weightSum, samplingUV, mipLevel, pixCenterPos, negViews…
217 if( qualityLevel >= SSAO_TILT_SAMPLES_ENABLE_AT_QUALITY_PRESET )
227 …SSAOTapInner( qualityLevel, obscuranceSum, weightSum, samplingMirroredUV, mipLevel, pixCenterPos, …
251 …ft right top bottom neighbouring pixels for edge detection (gets compiled out on qualityLevel == 0)
392 …SSAOTap( qualityLevel, obscuranceSum, weightSum, int(i), rotScale, pixCenterPos, negViewspaceDir, …
395 else // if( qualityLevel == 3 ) adaptive approach
/dports/net/tigervnc-server/tigervnc-1.12.0/java/com/tigervnc/vncviewer/
H A DCConn.java100 setQualityLevel(qualityLevel.getValue()); in CConn()
382 int newQualityLevel = qualityLevel.getValue(); in autoSelectFormatAndEncoding()
398 if (newQualityLevel != qualityLevel.getValue()) { in autoSelectFormatAndEncoding()
401 qualityLevel.setParam(newQualityLevel); in autoSelectFormatAndEncoding()
472 this.setQualityLevel(qualityLevel.getValue()); in handleOptions()
/dports/net/tigervnc-viewer/tigervnc-1.12.0/java/com/tigervnc/vncviewer/
H A DCConn.java100 setQualityLevel(qualityLevel.getValue()); in CConn()
382 int newQualityLevel = qualityLevel.getValue(); in autoSelectFormatAndEncoding()
398 if (newQualityLevel != qualityLevel.getValue()) { in autoSelectFormatAndEncoding()
401 qualityLevel.setParam(newQualityLevel); in autoSelectFormatAndEncoding()
472 this.setQualityLevel(qualityLevel.getValue()); in handleOptions()

12345678910