HomeSort by relevance Sort by last modified time
    Searched refs:CV_32SC1 (Results 1 - 25 of 139) sorted by null

1 2 3 4 5 6

  /external/opencv3/modules/cudaarithm/src/cuda/
countnonzero.cu 90 GpuMat dst = getOutputMat(_dst, 1, 1, CV_32SC1, stream);
103 GpuMat buf = pool.getBuffer(1, 1, CV_32SC1);
108 buf.download(Mat(1, 1, CV_32SC1, &data));
integral.cu 73 GpuMat dst = getOutputMat(_dst, src.rows + 1, src.cols + 1, CV_32SC1, stream);
bitwise_mat.cu 188 GpuMat vsrc1(src1.rows, vcols, CV_32SC1, src1.data, src1.step);
189 GpuMat vsrc2(src1.rows, vcols, CV_32SC1, src2.data, src2.step);
190 GpuMat vdst(src1.rows, vcols, CV_32SC1, dst.data, dst.step);
  /external/opencv3/modules/core/perf/
perf_abs.cpp 10 #define TYPICAL_MAT_TYPES_ABS CV_8SC1, CV_8SC4, CV_32SC1, CV_32FC1
perf_addWeighted.cpp 9 #define TYPICAL_MAT_TYPES_ADWEIGHTED CV_8UC1, CV_8UC4, CV_8SC1, CV_16UC1, CV_16SC1, CV_32SC1
perf_dot.cpp 14 testing::Values( CV_8UC1, CV_32SC1, CV_32FC1 ),
perf_inRange.cpp 9 #define TYPICAL_MAT_TYPES_INRANGE CV_8UC1, CV_8UC4, CV_8SC1, CV_16UC1, CV_16SC1, CV_32SC1, CV_32FC1, CV_32FC4
perf_minmaxloc.cpp 11 testing::Values(CV_8UC1, CV_8SC1, CV_16UC1, CV_16SC1, CV_32SC1, CV_32FC1, CV_64FC1)
perf_cvround.cpp 29 cv::Mat src(size, type), dst(size, CV_32SC1);
perf_compare.cpp 17 testing::Values(CV_8UC1, CV_8UC4, CV_8SC1, CV_16UC1, CV_16SC1, CV_32SC1, CV_32FC1),
  /external/opencv3/modules/cudaarithm/test/
test_buffer_pool.cpp 76 GpuMat buf2 = pool.getBuffer(Size(1280, 1024), CV_32SC1);
88 EXPECT_MAT_NEAR(Mat(Size(1280, 1024), CV_32SC1, Scalar::all(2)), dst_2, 0.0);
  /external/opencv3/modules/cudaimgproc/src/
canny.cpp 175 CV_Assert( dx.type() == CV_32SC1 );
199 ensureSizeIsEnough(image_size, CV_32SC1, dx_);
200 ensureSizeIsEnough(image_size, CV_32SC1, dy_);
212 ensureSizeIsEnough(image_size, CV_32SC1, map_);
hough_segments.cpp 146 ensureSizeIsEnough(1, src.size().area(), CV_32SC1, list_);
160 ensureSizeIsEnough(numangle + 2, numrho + 2, CV_32SC1, accum_);
hough_lines.cpp 142 ensureSizeIsEnough(1, src.size().area(), CV_32SC1, list_);
156 ensureSizeIsEnough(numangle + 2, numrho + 2, CV_32SC1, accum_);
197 GpuMat d_votes(1, d_lines.cols, CV_32SC1, d_lines.ptr<int>(1));
  /external/opencv/ml/src/
ml_inner_functions.cpp 504 case CV_32SC1:
527 CV_CALL( idx = cvCreateMat( 1, idx_selected, CV_32SC1 ));
530 if( type < CV_32SC1 )
603 if( !CV_IS_MAT(var_idx) || CV_MAT_TYPE(var_idx->type) != CV_32SC1 ||
654 if( r_type != CV_32FC1 && r_type != CV_32SC1 )
667 if( !CV_IS_MAT(sample_idx) || CV_MAT_TYPE(sample_idx->type) != CV_32SC1 ||
744 if( r_type != CV_32FC1 && r_type != CV_32SC1 )
751 if( !CV_IS_MAT(sample_idx) || CV_MAT_TYPE(sample_idx->type) != CV_32SC1 ||
760 CV_CALL( out_responses = cvCreateMat( 1, sample_count, CV_32SC1 ));
775 if( r_type == CV_32SC1 )
    [all...]
mltestset.cpp 106 CV_CALL( *responses = cvCreateMat( 1, num_samples, CV_32SC1 ) );
  /external/opencv3/apps/traincascade/
old_ml_inner_functions.cpp 435 case CV_32SC1:
458 CV_CALL( idx = cvCreateMat( 1, idx_selected, CV_32SC1 ));
461 if( type < CV_32SC1 )
533 if( !CV_IS_MAT(var_idx) || CV_MAT_TYPE(var_idx->type) != CV_32SC1 ||
584 if( r_type != CV_32FC1 && r_type != CV_32SC1 )
597 if( !CV_IS_MAT(sample_idx) || CV_MAT_TYPE(sample_idx->type) != CV_32SC1 ||
674 if( r_type != CV_32FC1 && r_type != CV_32SC1 )
681 if( !CV_IS_MAT(sample_idx) || CV_MAT_TYPE(sample_idx->type) != CV_32SC1 ||
690 CV_CALL( out_responses = cvCreateMat( 1, sample_count, CV_32SC1 ));
705 if( r_type == CV_32SC1 )
    [all...]
lbpfeatures.cpp 18 sum.create((int)_maxSampleCount, (_winSize.width + 1) * (_winSize.height + 1), CV_32SC1);
  /external/opencv3/modules/cudafeatures2d/src/
brute_force_matcher.cpp 368 _matches.create(2, nQuery, CV_32SC1);
371 GpuMat trainIdx(1, nQuery, CV_32SC1, matches.ptr(0));
430 _matches.create(3, nQuery, CV_32SC1);
433 GpuMat trainIdx(1, nQuery, CV_32SC1, matches.ptr(0));
434 GpuMat imgIdx(1, nQuery, CV_32SC1, matches.ptr(1));
459 CV_Assert( (gpu_matches.type() == CV_32SC1) && (gpu_matches.rows == 2 || gpu_matches.rows == 3) );
640 _matches.create(2 * nQuery, k, CV_32SC1);
643 trainIdx = GpuMat(nQuery, k, CV_32SC1, matches.ptr(0), matches.step);
747 (gpu_matches.type() == CV_32SC1) );
    [all...]
  /external/opencv3/modules/features2d/test/
test_nearestneighbors.cpp 94 Mat results( pointsCount, K, CV_32SC1 );
187 Mat neighbors1( neighbors.size(), CV_32SC1 );
210 Mat neighbors1( neighbors.size(), CV_32SC1 );
219 n( 1, neighbors.cols, CV_32SC1, neighbors.ptr<int>(i) );
  /external/opencv3/modules/imgproc/test/
test_watershed.cpp 76 Mat markers(orig.size(), CV_32SC1);
  /external/opencv3/samples/cpp/tutorial_code/ml/introduction_to_svm/
introduction_to_svm.cpp 23 Mat labelsMat(4, 1, CV_32SC1, labels);
  /external/opencv3/modules/ml/test/
test_emknearestkmeans.cpp 108 else if( labelType == CV_32SC1 )
145 assert( labels.type() == CV_32SC1 || labels.type() == CV_32FC1 );
191 CV_Assert( labels.type() == CV_32SC1 || labels.type() == CV_32FC1 );
238 generateData( data, labels, sizes, means, covs, CV_32FC1, CV_32SC1 );
424 labels.create( testData.rows, 1, CV_32SC1 );
458 generateData( trainData, trainLabels, sizes, means, covs, CV_64FC1, CV_32SC1 );
462 generateData( testData, testLabels, sizes, means, covs, CV_64FC1, CV_32SC1 );
553 Mat firstResult(samples.rows, 1, CV_32SC1);
660 Mat trainConfusionMat(2, 2, CV_32SC1, Scalar(0)),
661 testConfusionMat(2, 2, CV_32SC1, Scalar(0))
    [all...]
  /external/opencv3/modules/cudev/test/
test_reduction.cu 108 Mat src1 = randomMat(size, CV_32SC1);
109 Mat src2 = randomMat(size, CV_32SC1);
297 hist.create(1, 256, CV_32SC1);
  /external/opencv/cv/src/
cvkdtree.cpp 165 assert(CV_MAT_TYPE(results->type) == CV_32SC1);
222 if (CV_MAT_TYPE(results->type) != CV_32SC1)
223 CV_ERROR(CV_StsUnsupportedFormat, "results must be CV_32SC1");
258 if (CV_MAT_TYPE(results->type) != CV_32SC1)
259 CV_ERROR(CV_StsUnsupportedFormat, "results must be CV_32SC1");

Completed in 899 milliseconds

1 2 3 4 5 6