HomeSort by relevance Sort by last modified time
    Searched refs:ktype (Results 1 - 13 of 13) sorted by null

  /external/opencv3/modules/imgproc/src/
gabor.cpp 52 double lambd, double gamma, double psi, int ktype )
73 CV_Assert( ktype == CV_32F || ktype == CV_64F );
75 Mat kernel(ymax - ymin + 1, xmax - xmin + 1, ktype);
88 if( ktype == CV_32F )
deriv.cpp 58 int dx, int dy, bool normalize, int ktype )
62 CV_Assert( ktype == CV_32F || ktype == CV_64F );
63 _kx.create(ksize, 1, ktype, -1, true);
64 _ky.create(ksize, 1, ktype, -1, true);
83 temp.convertTo(*kernel, ktype, scale);
89 int dx, int dy, int _ksize, bool normalize, int ktype )
97 CV_Assert( ktype == CV_32F || ktype == CV_64F );
99 _kx.create(ksizeX, 1, ktype, -1, true)
596 int ktype = std::max(CV_32F, std::max(ddepth, sdepth)); local
641 int ktype = std::max(CV_32F, std::max(ddepth, sdepth)); local
902 int ktype = std::max(CV_32F, std::max(ddepth, sdepth)); local
    [all...]
filter.cpp 3850 int i, j, k, nz = countNonZero(kernel), ktype = kernel.type(); local
4590 ktype = kernel.type(), kdepth = CV_MAT_DEPTH(ktype); local
    [all...]
smooth.cpp     [all...]
thresh.cpp 1142 kercn = ocl::predictOptimalVectorWidth(_src, _dst), ktype = CV_MAKE_TYPE(depth, kercn); local
    [all...]
  /external/boringssl/src/crypto/evp/
p_ec_asn1.c 374 static int do_EC_KEY_print(BIO *bp, const EC_KEY *x, int off, int ktype) {
397 if (ktype > 0) {
422 if (ktype == 2) {
431 if (ktype > 0) {
438 if (ktype == 2) {
440 } else if (ktype == 1) {
p_dsa_asn1.c 366 const char *ktype = NULL; local
380 ktype = "DSA-Parameters";
382 ktype = "Private-Key";
384 ktype = "Public-Key";
401 BIO_printf(bp, "%s: (%d bit)\n", ktype, BN_num_bits(x->p)) <= 0) {
  /external/opencv3/samples/python2/
gabor_threads.py 26 kern = cv2.getGaborKernel((ksize, ksize), 4.0, theta, 10.0, 0.5, 0, ktype=cv2.CV_32F)
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsBackupAgent.java 263 final String ktype = typeStrings[i]; local
264 if (ktype.equals("WPA-PSK")) {
267 } else if (ktype.equals("WPA-EAP")) {
270 } else if (ktype.equals("IEEE8021X")) {
    [all...]
  /external/opencv3/modules/imgproc/include/opencv2/
imgproc.hpp     [all...]
  /external/opencv3/modules/java/src/
imgproc+Imgproc.java 840 // C++: Mat getGaussianKernel(int ksize, double sigma, int ktype = CV_64F)
843 //javadoc: getGaussianKernel(ksize, sigma, ktype)
844 public static Mat getGaussianKernel(int ksize, double sigma, int ktype)
847 Mat retVal = new Mat(getGaussianKernel_0(ksize, sigma, ktype));
863 // C++: void getDerivKernels(Mat& kx, Mat& ky, int dx, int dy, int ksize, bool normalize = false, int ktype = CV_32F)
866 //javadoc: getDerivKernels(kx, ky, dx, dy, ksize, normalize, ktype)
867 public static void getDerivKernels(Mat kx, Mat ky, int dx, int dy, int ksize, boolean normalize, int ktype)
870 getDerivKernels_0(kx.nativeObj, ky.nativeObj, dx, dy, ksize, normalize, ktype);
886 // C++: Mat getGaborKernel(Size ksize, double sigma, double theta, double lambd, double gamma, double psi = CV_PI*0.5, int ktype = CV_64F)
889 //javadoc: getGaborKernel(ksize, sigma, theta, lambd, gamma, psi, ktype)
    [all...]
imgproc.cpp     [all...]
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 859 milliseconds