Searched refs:gI1 (Results 1 – 3 of 3) sorted by relevance
/external/opencv3/samples/cpp/tutorial_code/gpu/gpu-basics-similarity/ |
D | gpu-basics-similarity.cpp | 25 cuda::GpuMat gI1, gI2, gs, t1,t2; member 35 cuda::GpuMat gI1, gI2, gs, t1,t2; member 198 b.gI1.upload(I1); in getPSNR_CUDA_optimized() 201 b.gI1.convertTo(b.t1, CV_32F); in getPSNR_CUDA_optimized() 223 cuda::GpuMat gI1, gI2, gs, t1,t2; in getPSNR_CUDA() local 225 gI1.upload(I1); in getPSNR_CUDA() 228 gI1.convertTo(t1, CV_32F); in getPSNR_CUDA() 241 double mse =sse /(double)(gI1.channels() * I1.total()); in getPSNR_CUDA() 308 cuda::GpuMat gI1, gI2, gs1, tmp1,tmp2; in getMSSIM_CUDA() local 310 gI1.upload(i1); in getMSSIM_CUDA() [all …]
|
/external/skia/tests/ |
D | ScalarTest.cpp | 45 static const SkPoint gI1[] = { in test_isRectFinite() local 64 { gI1, SK_ARRAY_COUNT(gI1), false }, in test_isRectFinite()
|
/external/opencv3/doc/tutorials/gpu/gpu-basics-similarity/ |
D | gpu_basics_similarity.markdown | 93 gI1.upload(I1); // Upload a data from the system memory to the GPU memory 95 I1 = gI1; // Download, gI1.download(I1) will work too 134 gpu::GpuMat gI1, gI2, gs, t1,t2; 147 Now you access these local parameters as: *b.gI1*, *b.buf* and so on. The GpuMat will only 181 stream.enqueueConvert(b.gI1, b.t1, CV_32F); // Upload
|