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

  /cts/tests/tests/rscpp/src/android/cts/rscpp/
RSConvolveTest.java 60 ScriptIntrinsicConvolve3x3 convolve = ScriptIntrinsicConvolve3x3.create(mRS, Element.A_8(mRS)); local
61 convolve.setInput(rsInput);
62 convolve.setCoefficients(coeffs);
63 convolve.forEach(rsOutput);
117 ScriptIntrinsicConvolve5x5 convolve = ScriptIntrinsicConvolve5x5.create(mRS, Element.A_8(mRS)); local
118 convolve.setInput(rsInput);
119 convolve.setCoefficients(coeffs);
120 convolve.forEach(rsOutput);
  /cts/tests/tests/rscpp/librscpptest/
rs_jni.cpp 146 sp<ScriptIntrinsicConvolve3x3> convolve = ScriptIntrinsicConvolve3x3::create(rs, e); local
147 convolve->setInput(inputAlloc);
148 convolve->setCoefficients(coeffs);
149 convolve->forEach(outputAlloc);
151 sp<ScriptIntrinsicConvolve5x5> convolve = ScriptIntrinsicConvolve5x5::create(rs, e); local
152 convolve->setInput(inputAlloc);
153 convolve->setCoefficients(coeffs);
154 convolve->forEach(outputAlloc);
  /cts/apps/CameraITS/tests/dng_noise_model/
dng_noise_model.py 59 f = np.convolve(f, f)
60 f = np.convolve(f, f)
  /external/skia/gm/
imagefiltersgraph.cpp 204 SkAutoTUnref<SkImageFilter> convolve(
215 paint.setImageFilter(convolve);
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/
Android.mk 18 src/convolve.cpp \
  /frameworks/av/media/libstagefright/codecs/amrwbenc/
Android.mk 10 src/convolve.c \
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_convolve.c 113 static void convolve(const uint8_t *src, ptrdiff_t src_stride, function
215 convolve(src, src_stride, dst, dst_stride,
  /external/ImageMagick/www/api/
effect.php 129 <p>BlurImage() blurs an image. We convolve the image with a Gaussian operator of the given radius and standard deviation (sigma). For reasonable results, the radius should be larger than sigma. Use a radius of 0 and BlurImage() selects a suitable radius for you.</p>
252 <p>EmbossImage() returns a grayscale image with a three-dimensional effect. We convolve the image with a Gaussian operator of the given radius and standard deviation (sigma). For reasonable results, radius should be larger than sigma. Use a radius of 0 and Emboss() selects a suitable radius for you.</p>
287 <p>GaussianBlurImage() blurs an image. We convolve the image with a Gaussian operator of the given radius and standard deviation (sigma). For reasonable results, the radius should be larger than sigma. Use a radius of 0 and GaussianBlurImage() selects a suitable radius for you</p>
357 <p>MotionBlurImage() simulates motion blur. We convolve the image with a Gaussian operator of the given radius and standard deviation (sigma). For reasonable results, radius should be larger than sigma. Use a radius of 0 and MotionBlurImage() selects a suitable radius for you. Angle gives the angle of the blurring motion.</p>
540 <p>SharpenImage() sharpens the image. We convolve the image with a Gaussian operator of the given radius and standard deviation (sigma). For reasonable results, radius should be larger than sigma. Use a radius of 0 and SharpenImage() selects a suitable radius for you.</p>
613 <p>UnsharpMaskImage() sharpens one or more image channels. We convolve the image with a Gaussian operator of the given radius and standard deviation (sigma). For reasonable results, radius should be larger than sigma. Use a radius of 0 and UnsharpMaskImage() selects a suitable radius for you.</p>
morphology.php 394 <p>User defined settings include... * Output Bias for Convolution and correlation ("-define convolve:bias=??") * Kernel Scale/normalize settings ("-define convolve:scale=??") This can also includes the addition of a scaled unity kernel. * Show Kernel being applied ("-define morphology:showkernel=1")</p>
396 <p>Other operators that do not want user supplied options interfering, especially "convolve:bias" and "morphology:showkernel" should use MorphologyApply() directly.</p>
425 <dd>An array of double representing the morphology kernel. Warning: kernel may be normalized for the Convolve method. </dd>
435 <p>ScaleGeometryKernelInfo() takes a geometry argument string, typically provided as a "-set option:convolve:scale {geometry}" user setting, and modifies the kernel according to the parsed arguments of that setting.</p>
459 "-set option:convolve:scale {geometry}" setting.
472 <p>Kernel normalization ('normalize_flags' given) is designed to ensure that any use of the kernel scaling factor with 'Convolve' or 'Correlate' morphology methods will fall into -1.0 to +1.0 range. Note that for non-HDRI versions of IM this may cause images to have any negative results clipped, unless some 'bias' is used.</p>
    [all...]
fx.php 489 <p>SketchImage() simulates a pencil sketch. We convolve the image with a Gaussian operator of the given radius and standard deviation (sigma). For reasonable results, radius should be larger than sigma. Use a radius of 0 and SketchImage() selects a suitable radius for you. Angle gives the angle of the sketch.</p>
magick-image.php     [all...]
  /external/opencv3/modules/cudaarithm/perf/
perf_arithm.cpp 208 // Convolve
212 PERF_TEST_P(Sz_KernelSz_Ccorr, Convolve,
239 TEST_CYCLE() convolution->convolve(d_image, d_templ, dst, ccorr);
  /external/opencv3/modules/cudaarithm/src/
arithm.cpp 409 void convolve(InputArray image, InputArray templ, OutputArray result, bool ccorr = false, Stream& stream = Stream::Null());
471 void ConvolutionImpl::convolve(InputArray _image, InputArray _templ, OutputArray _result, bool ccorr, Stream& _stream)
  /external/ImageMagick/Magick++/demo/
demo.cpp 137 cout << " convolve ..." << endl;
139 example.label( "Convolve" );
143 example.convolve( 3, kernel );
  /external/opencv3/modules/cudaarithm/include/opencv2/
cudaarithm.hpp     [all...]
  /external/libvpx/libvpx/vpx_dsp/
vpx_convolve.c 114 static void convolve(const uint8_t *src, ptrdiff_t src_stride, function
229 convolve(src, src_stride, dst, dst_stride,
vpx_dsp.mk 70 DSP_SRCS-$(ARCH_X86)$(ARCH_X86_64) += x86/convolve.h
  /external/opencv3/modules/cudaimgproc/src/
match_template.cpp 207 conv_->convolve(image.reshape(1), templ.reshape(1), result, true, _stream);
211 conv_->convolve(image.reshape(1), templ.reshape(1), result_, true, _stream);
  /external/mesa3d/src/mesa/
sources.mak 29 $(SRCDIR)main/convolve.c \
  /external/opencv3/modules/cudaarithm/test/
test_arithm.cpp 315 // Convolve
362 PARAM_TEST_CASE(Convolve, cv::cuda::DeviceInfo, cv::Size, KSize, Ccorr)
380 CUDA_TEST_P(Convolve, Accuracy)
388 conv->convolve(loadMat(src), loadMat(kernel), dst, ccorr);
396 INSTANTIATE_TEST_CASE_P(CUDA_Arithm, Convolve, testing::Combine(
  /external/ImageMagick/Magick++/lib/Magick++/
Image.h 785 // Convolve image. Applies a user-specified convolution to the image.
788 void convolve(const size_t order_,const double *kernel_);
    [all...]
  /external/ImageMagick/Magick++/lib/
Image.cpp 2577 void Magick::Image::convolve(const size_t order_,const double *kernel_) function in class:Magick::Image
    [all...]

Completed in 2776 milliseconds