HomeSort by relevance Sort by last modified time
    Searched full:warp (Results 1 - 25 of 131) sorted by null

1 2 3 4 5 6

  /external/dng_sdk/source/
dng_lens_correction.h 39 /// \brief Abstract base class holding common warp opcode parameters (e.g.,
40 /// number of planes, optical center) and common warp routines.
49 // single set of warp parameters applies to all planes of the image.
66 /// Create empty (invalid) warp parameters.
70 /// Create warp parameters with specified number of planes and image
108 /// Do these warp params appear valid?
112 /// Are these warp params valid for the specified negative?
116 /// Propagate warp parameters from first plane to all other planes.
120 /// Evaluate the 1D radial warp function for the specified plane.
139 /// Evaluate the 1D radial warp ratio function for the specified plane
    [all...]
dng_lens_correction.cpp 477 // Let f (r) be the radius warp function. Consider the function
871 // Let f (r) be the radius warp function. Consider the function
1048 // Make sure the warp params are valid for this negative.
1093 // Propagate warp params to other planes.
1228 // upper bounds on the radial and tangential warp components separately, then add
1232 // Get upper bound on src tile size from radial warp.
1269 // Get upper bound on src tile size from tangential warp.
1327 // Warp each plane.
1349 // Warp to source (uncorrected) pixel position.
1541 // Grab the number of planes to warp
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/cuda/
scan.hpp 48 #include "opencv2/core/cuda/warp.hpp"
144 const unsigned int warp = tid >> warp_log; local
153 if( warp == 0)
158 ptr [scan.warp_offset + warp ] = (Kind == INCLUSIVE) ? val : ptr [idx];
161 if( warp == 0 )
165 if ( warp > 0)
166 val = ptr [scan.warp_offset + warp - 1] + val;
183 const unsigned int laneId = cv::cuda::device::Warp::laneId();
222 //Bottom-level inclusive warp scan
225 //Save top elements of each warp for exclusive warp sca
    [all...]
  /external/opencv3/modules/cudev/include/opencv2/cudev/block/
scan.hpp 50 #include "../warp/scan.hpp"
62 // bottom-level inclusive warp scan
67 // save top elements of each warp for exclusive warp scan
68 // sync to wait for warp scans to complete (because s_Data is being overwritten)
78 // grab top warp elements
87 // return updated warp scans with exclusive scan results
  /external/opencv3/modules/cudev/include/opencv2/cudev/warp/
warp.hpp 62 struct Warp
81 for(It t = beg + Warp::laneId(); t < end; t += WARP_SIZE)
88 for(InIt t = beg + Warp::laneId(); t < end; t += WARP_SIZE, out += WARP_SIZE)
96 for(InIt t = beg + Warp::laneId(); t < end; t += WARP_SIZE, out += WARP_SIZE)
104 uint lane = Warp::laneId();
116 uint lane = Warp::laneId();
scan.hpp 50 #include "warp.hpp"
65 const uint laneId = Warp::laneId();
  /external/opencv3/samples/cpp/
image_alignment.cpp 9 * In the latter case, you can also parse the warp's initialization.
11 * Input and output warp files consist of the raw warp (transform) elements
32 static int readWarp(string iFilename, Mat& warp, int motionType);
33 static int saveWarp(string fileName, const Mat& warp, int motionType);
49 "{@inputWarp | | input warp (matrix) filename (optional)}"
52 "{o outputWarp | outWarp.ecc | output warp (matrix) filename }"
63 " is given, the template image is artificially formed by a random warp. When both images"
64 " are given, the initialization of the warp by command line parsing is possible. "
75 static int readWarp(string iFilename, Mat& warp, int motionType)
    [all...]
stitching_detailed.cpp 105 " --warp (plane|cylindrical|spherical|fisheye|stereographic|compressedPlaneA2B1|compressedPlaneA1.5B1|compressedPlanePortraitA2B1|compressedPlanePortraitA1.5B1|paniniA2B1|paniniA1.5B1|paniniPortraitA2B1|paniniPortraitA1.5B1|mercator|transverseMercator)\n"
106 " Warp surface type. The default is 'spherical'.\n"
264 else if (string(argv[i]) == "--warp")
590 // Warp images and their masks
654 corners[i] = warper->warp(images[i], K, cameras[i].R, INTER_LINEAR, BORDER_REFLECT, images_warped[i]);
657 warper->warp(masks[i], K, cameras[i].R, INTER_NEAREST, BORDER_CONSTANT, masks_warped[i]);
775 // Warp the current image
776 warper->warp(img, K, cameras[img_idx].R, INTER_LINEAR, BORDER_REFLECT, img_warped);
778 // Warp the current image mask
781 warper->warp(mask, K, cameras[img_idx].R, INTER_NEAREST, BORDER_CONSTANT, mask_warped)
    [all...]
  /external/opencv3/samples/cpp/tutorial_code/ImgTrans/
Geometric_Transforms_Demo.cpp 18 const char* warp_window = "Warp";
19 const char* warp_rotate_window = "Warp + Rotate";
54 /** Rotating the image after Warp */
  /external/autotest/client/tests/monotonic_time/src/
spinlock.h 5 * Based on time-warp-test.c, which is:
time_test.c 5 * Based on time-warp-test.c, which is:
152 INFO("new %s-warp maximum: %9"PRId64, test->name, test->worst);
298 printf("FAIL: %s-worst-warp=%"PRId64"\n",
  /external/llvm/test/Transforms/LoopUnswitch/
2006-06-13-SingleEntryPHI.ll 5 %struct.TPATTERN = type { i16, i16, i16, i32, float, float, float, %struct.WARP*, %struct.TPATTERN*, %struct.BLEND_MAP*, { %struct.anon, [4 x i8] } }
6 %struct.TURB = type { i16, %struct.WARP*, [3 x double], i32, float, float }
7 %struct.WARP = type { i16, %struct.WARP* }
  /external/opencv3/modules/cudev/include/opencv2/
cudev.hpp 64 #include "cudev/warp/reduce.hpp"
65 #include "cudev/warp/scan.hpp"
66 #include "cudev/warp/shuffle.hpp"
67 #include "cudev/warp/warp.hpp"
  /external/opencv3/modules/stitching/include/opencv2/stitching/detail/
warpers.hpp 94 virtual Point warp(InputArray src, InputArray K, InputArray R, int interp_mode, int border_mode,
148 Point warp(InputArray src, InputArray K, InputArray R, int interp_mode, int border_mode,
195 Point warp(InputArray src, InputArray K, InputArray R,
197 virtual Point warp(InputArray src, InputArray K, InputArray R, InputArray T, int interp_mode, int border_mode,
230 Point warp(InputArray src, InputArray K, InputArray R, int interp_mode, int border_mode, OutputArray dst);
255 Point warp(InputArray src, InputArray K, InputArray R, int interp_mode, int border_mode, OutputArray dst);
426 Point warp(InputArray src, InputArray K, InputArray R, int interp_mode, int border_mode, function in class:cv::detail::PlaneWarperGpu
430 Point result = warp(d_src_, K, R, interp_mode, border_mode, d_dst_);
435 Point warp(InputArray src, InputArray K, InputArray R, InputArray T, int interp_mode, int border_mode, function in class:cv::detail::PlaneWarperGpu
439 Point result = warp(d_src_, K, R, T, interp_mode, border_mode, d_dst_)
472 Point warp(InputArray src, InputArray K, InputArray R, int interp_mode, int border_mode, function in class:cv::detail::SphericalWarperGpu
504 Point warp(InputArray src, InputArray K, InputArray R, int interp_mode, int border_mode, function in class:cv::detail::CylindricalWarperGpu
    [all...]
  /external/autotest/client/tests/kvm/autotest_control/
monotonic_time.control 14 Based on time-warp-test.c by Ingo Molnar.
  /external/autotest/client/tests/monotonic_time/
control 14 Based on time-warp-test.c by Ingo Molnar.
  /external/opencv3/modules/stitching/test/ocl/
test_warpers.cpp 97 OCL_OFF(warper->warp(src, K, R, INTER_LINEAR, BORDER_REPLICATE, dst));
98 OCL_ON(warper->warp(usrc, K, R, INTER_LINEAR, BORDER_REPLICATE, udst));
118 OCL_OFF(warper->warp(src, K, R, INTER_LINEAR, BORDER_REPLICATE, dst));
119 OCL_ON(warper->warp(usrc, K, R, INTER_LINEAR, BORDER_REPLICATE, udst));
139 OCL_OFF(warper->warp(src, K, R, INTER_LINEAR, BORDER_REPLICATE, dst));
140 OCL_ON(warper->warp(usrc, K, R, INTER_LINEAR, BORDER_REPLICATE, udst));
  /external/replicaisland/src/com/replica/replicaisland/
MainLoop.java 36 final float newTimeDelta = mTimeSystem.getFrameDelta(); // The time system may warp time.
  /frameworks/ml/bordeaux/learning/multiclass_pa/native/
util.cpp 44 } else if (StringCaseEqual(version, "warp")) {
  /external/opencv3/modules/stitching/src/
stitcher.cpp 171 // Warp images and their masks
182 corners[i] = w->warp(seam_est_imgs_[i], K, cameras_[i].R, INTER_LINEAR, BORDER_CONSTANT, images_warped[i]);
185 w->warp(masks[i], K, cameras_[i].R, INTER_NEAREST, BORDER_CONSTANT, masks_warped[i]);
287 // Warp the current image
288 w->warp(img, K, cameras_[img_idx].R, INTER_LINEAR, BORDER_CONSTANT, img_warped);
289 LOGLN(" warp the current image: " << ((getTickCount() - pt) / getTickFrequency()) << " sec");
294 // Warp the current image mask
297 w->warp(mask, K, cameras_[img_idx].R, INTER_NEAREST, BORDER_CONSTANT, mask_warped);
298 LOGLN(" warp the current image mask: " << ((getTickCount() - pt) / getTickFrequency()) << " sec");
warpers_cuda.cpp 180 Point cv::detail::PlaneWarperGpu::warp(const cuda::GpuMat & src, InputArray K, InputArray R, function in class:cv::detail::PlaneWarperGpu
184 return warp(src, K, R, Mat::zeros(3, 1, CV_32F), interp_mode, border_mode, dst);
188 Point cv::detail::PlaneWarperGpu::warp(const cuda::GpuMat & src, InputArray K, InputArray R, InputArray T, function in class:cv::detail::PlaneWarperGpu
233 Point cv::detail::SphericalWarperGpu::warp(const cuda::GpuMat & src, InputArray K, InputArray R, function in class:cv::detail::SphericalWarperGpu
279 Point cv::detail::CylindricalWarperGpu::warp(const cuda::GpuMat & src, InputArray K, InputArray R, function in class:cv::detail::CylindricalWarperGpu
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
BitmapMesh.java 84 private void warp(float cx, float cy) { method in class:BitmapMesh.SampleView
122 warp(pt[0], pt[1]); method
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/Character/
btCharacterControllerInterface.h 35 virtual void warp (const btVector3& origin) = 0;
  /external/tlsdate/
README 34 time warp to restore sanity and do so with a leap of faith:
  /external/opencv3/modules/stitching/perf/opencl/
perf_warpers.cpp 91 Point warp(InputArray src, int interp_mode, int border_mode, OutputArray dst) const function in class:cvtest::ocl::WarperBase
93 return warper->warp(src, K, R, interp_mode, border_mode, dst);
143 OCL_TEST_CYCLE() warper.warp(src, INTER_LINEAR, BORDER_REPLICATE, dst);

Completed in 452 milliseconds

1 2 3 4 5 6