org.opencv.imgproc.Imgproc.accumulateSquare_0()方法的使用及代码示例

x33g5p2x  于2022-01-21 转载在 其他  
字(8.3k)|赞(0)|评价(0)|浏览(182)

本文整理了Java中org.opencv.imgproc.Imgproc.accumulateSquare_0()方法的一些代码示例,展示了Imgproc.accumulateSquare_0()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Imgproc.accumulateSquare_0()方法的具体详情如下:
包路径:org.opencv.imgproc.Imgproc
类名称:Imgproc
方法名:accumulateSquare_0

Imgproc.accumulateSquare_0介绍

暂无

代码示例

代码示例来源:origin: kongqw/OpenCVForAndroid

  1. public static void accumulateSquare(Mat src, Mat dst, Mat mask)
  2. {
  3. accumulateSquare_0(src.nativeObj, dst.nativeObj, mask.nativeObj);
  4. return;
  5. }

代码示例来源:origin: nroduit/Weasis

  1. public static void accumulateSquare(Mat src, Mat dst, Mat mask)
  2. {
  3. accumulateSquare_0(src.nativeObj, dst.nativeObj, mask.nativeObj);
  4. return;
  5. }

代码示例来源:origin: farkam135/GoIV

  1. public static void accumulateSquare(Mat src, Mat dst, Mat mask)
  2. {
  3. accumulateSquare_0(src.nativeObj, dst.nativeObj, mask.nativeObj);
  4. return;
  5. }

代码示例来源:origin: leadrien/opencv_native_androidstudio

  1. public static void accumulateSquare(Mat src, Mat dst, Mat mask)
  2. {
  3. accumulateSquare_0(src.nativeObj, dst.nativeObj, mask.nativeObj);
  4. return;
  5. }

代码示例来源:origin: imistyrain/EasyPR4Android

  1. public static void accumulateSquare(Mat src, Mat dst, Mat mask)
  2. {
  3. accumulateSquare_0(src.nativeObj, dst.nativeObj, mask.nativeObj);
  4. return;
  5. }

代码示例来源:origin: ctodobom/OpenCV-3.1.0-Android

  1. public static void accumulateSquare(Mat src, Mat dst, Mat mask)
  2. {
  3. accumulateSquare_0(src.nativeObj, dst.nativeObj, mask.nativeObj);
  4. return;
  5. }

代码示例来源:origin: KePeng1019/SmartPaperScan

  1. public static void accumulateSquare(Mat src, Mat dst, Mat mask)
  2. {
  3. accumulateSquare_0(src.nativeObj, dst.nativeObj, mask.nativeObj);
  4. return;
  5. }

代码示例来源:origin: SOFTPOWER1991/OpenCVCheck

  1. public static void accumulateSquare(Mat src, Mat dst, Mat mask)
  2. {
  3. accumulateSquare_0(src.nativeObj, dst.nativeObj, mask.nativeObj);
  4. return;
  5. }

代码示例来源:origin: SouvDc/face-detection

  1. public static void accumulateSquare(Mat src, Mat dst, Mat mask)
  2. {
  3. accumulateSquare_0(src.nativeObj, dst.nativeObj, mask.nativeObj);
  4. return;
  5. }

代码示例来源:origin: akshika47/OpencvAndroid

  1. public static void accumulateSquare(Mat src, Mat dst, Mat mask)
  2. {
  3. accumulateSquare_0(src.nativeObj, dst.nativeObj, mask.nativeObj);
  4. return;
  5. }

代码示例来源:origin: raulh82vlc/Image-Detection-Samples

  1. public static void accumulateSquare(Mat src, Mat dst, Mat mask)
  2. {
  3. accumulateSquare_0(src.nativeObj, dst.nativeObj, mask.nativeObj);
  4. return;
  5. }

代码示例来源:origin: tz28/Chinese-number-gestures-recognition

  1. public static void accumulateSquare(Mat src, Mat dst, Mat mask)
  2. {
  3. accumulateSquare_0(src.nativeObj, dst.nativeObj, mask.nativeObj);
  4. return;
  5. }

代码示例来源:origin: DuckDeck/AndroidDemo

  1. public static void accumulateSquare(Mat src, Mat dst, Mat mask)
  2. {
  3. accumulateSquare_0(src.nativeObj, dst.nativeObj, mask.nativeObj);
  4. return;
  5. }

代码示例来源:origin: InnoFang/Android-Code-Demos

  1. public static void accumulateSquare(Mat src, Mat dst, Mat mask)
  2. {
  3. accumulateSquare_0(src.nativeObj, dst.nativeObj, mask.nativeObj);
  4. return;
  5. }

代码示例来源:origin: hschott/Camdroid

  1. public static void accumulateSquare(Mat src, Mat dst, Mat mask)
  2. {
  3. accumulateSquare_0(src.nativeObj, dst.nativeObj, mask.nativeObj);
  4. return;
  5. }

代码示例来源:origin: com.sikulix/sikulixapi

  1. /**
  2. * <p>Adds the square of a source image to the accumulator.</p>
  3. *
  4. * <p>The function adds the input image <code>src</code> or its selected region,
  5. * raised to a power of 2, to the accumulator <code>dst</code> :</p>
  6. *
  7. * <p><em>dst(x,y) <- dst(x,y) + src(x,y)^2 if mask(x,y) != 0</em></p>
  8. *
  9. * <p>The function supports multi-channel images. Each channel is processed
  10. * independently.</p>
  11. *
  12. * @param src Input image as 1- or 3-channel, 8-bit or 32-bit floating point.
  13. * @param dst Accumulator image with the same number of channels as input image,
  14. * 32-bit or 64-bit floating-point.
  15. * @param mask Optional operation mask.
  16. *
  17. * @see <a href="http://docs.opencv.org/modules/imgproc/doc/motion_analysis_and_object_tracking.html#accumulatesquare">org.opencv.imgproc.Imgproc.accumulateSquare</a>
  18. * @see org.opencv.imgproc.Imgproc#accumulateWeighted
  19. * @see org.opencv.imgproc.Imgproc#accumulateProduct
  20. * @see org.opencv.imgproc.Imgproc#accumulateSquare
  21. */
  22. public static void accumulateSquare(Mat src, Mat dst, Mat mask)
  23. {
  24. accumulateSquare_0(src.nativeObj, dst.nativeObj, mask.nativeObj);
  25. return;
  26. }

代码示例来源:origin: nu.pattern/opencv

  1. /**
  2. * <p>Adds the square of a source image to the accumulator.</p>
  3. *
  4. * <p>The function adds the input image <code>src</code> or its selected region,
  5. * raised to a power of 2, to the accumulator <code>dst</code> :</p>
  6. *
  7. * <p><em>dst(x,y) <- dst(x,y) + src(x,y)^2 if mask(x,y) != 0</em></p>
  8. *
  9. * <p>The function supports multi-channel images. Each channel is processed
  10. * independently.</p>
  11. *
  12. * @param src Input image as 1- or 3-channel, 8-bit or 32-bit floating point.
  13. * @param dst Accumulator image with the same number of channels as input image,
  14. * 32-bit or 64-bit floating-point.
  15. * @param mask Optional operation mask.
  16. *
  17. * @see <a href="http://docs.opencv.org/modules/imgproc/doc/motion_analysis_and_object_tracking.html#accumulatesquare">org.opencv.imgproc.Imgproc.accumulateSquare</a>
  18. * @see org.opencv.imgproc.Imgproc#accumulateWeighted
  19. * @see org.opencv.imgproc.Imgproc#accumulateProduct
  20. * @see org.opencv.imgproc.Imgproc#accumulateSquare
  21. */
  22. public static void accumulateSquare(Mat src, Mat dst, Mat mask)
  23. {
  24. accumulateSquare_0(src.nativeObj, dst.nativeObj, mask.nativeObj);
  25. return;
  26. }

代码示例来源:origin: ytai/IOIOPlotter

  1. /**
  2. * <p>Adds the square of a source image to the accumulator.</p>
  3. *
  4. * <p>The function adds the input image <code>src</code> or its selected region,
  5. * raised to a power of 2, to the accumulator <code>dst</code> :</p>
  6. *
  7. * <p><em>dst(x,y) <- dst(x,y) + src(x,y)^2 if mask(x,y) != 0</em></p>
  8. *
  9. * <p>The function supports multi-channel images. Each channel is processed
  10. * independently.</p>
  11. *
  12. * @param src Input image as 1- or 3-channel, 8-bit or 32-bit floating point.
  13. * @param dst Accumulator image with the same number of channels as input image,
  14. * 32-bit or 64-bit floating-point.
  15. * @param mask Optional operation mask.
  16. *
  17. * @see <a href="http://docs.opencv.org/modules/imgproc/doc/motion_analysis_and_object_tracking.html#accumulatesquare">org.opencv.imgproc.Imgproc.accumulateSquare</a>
  18. * @see org.opencv.imgproc.Imgproc#accumulateWeighted
  19. * @see org.opencv.imgproc.Imgproc#accumulateProduct
  20. * @see org.opencv.imgproc.Imgproc#accumulateSquare
  21. */
  22. public static void accumulateSquare(Mat src, Mat dst, Mat mask)
  23. {
  24. accumulateSquare_0(src.nativeObj, dst.nativeObj, mask.nativeObj);
  25. return;
  26. }

代码示例来源:origin: abhn/marvel

  1. /**
  2. * <p>Adds the square of a source image to the accumulator.</p>
  3. *
  4. * <p>The function adds the input image <code>src</code> or its selected region,
  5. * raised to a power of 2, to the accumulator <code>dst</code> :</p>
  6. *
  7. * <p><em>dst(x,y) <- dst(x,y) + src(x,y)^2 if mask(x,y) != 0</em></p>
  8. *
  9. * <p>The function supports multi-channel images. Each channel is processed
  10. * independently.</p>
  11. *
  12. * @param src Input image as 1- or 3-channel, 8-bit or 32-bit floating point.
  13. * @param dst Accumulator image with the same number of channels as input image,
  14. * 32-bit or 64-bit floating-point.
  15. * @param mask Optional operation mask.
  16. *
  17. * @see <a href="http://docs.opencv.org/modules/imgproc/doc/motion_analysis_and_object_tracking.html#accumulatesquare">org.opencv.imgproc.Imgproc.accumulateSquare</a>
  18. * @see org.opencv.imgproc.Imgproc#accumulateWeighted
  19. * @see org.opencv.imgproc.Imgproc#accumulateProduct
  20. * @see org.opencv.imgproc.Imgproc#accumulateSquare
  21. */
  22. public static void accumulateSquare(Mat src, Mat dst, Mat mask)
  23. {
  24. accumulateSquare_0(src.nativeObj, dst.nativeObj, mask.nativeObj);
  25. return;
  26. }

代码示例来源:origin: jtsky/EasyPR_Android

  1. /**
  2. * <p>Adds the square of a source image to the accumulator.</p>
  3. *
  4. * <p>The function adds the input image <code>src</code> or its selected region,
  5. * raised to a power of 2, to the accumulator <code>dst</code> :</p>
  6. *
  7. * <p><em>dst(x,y) <- dst(x,y) + src(x,y)^2 if mask(x,y) != 0</em></p>
  8. *
  9. * <p>The function supports multi-channel images. Each channel is processed
  10. * independently.</p>
  11. *
  12. * @param src Input image as 1- or 3-channel, 8-bit or 32-bit floating point.
  13. * @param dst Accumulator image with the same number of channels as input image,
  14. * 32-bit or 64-bit floating-point.
  15. * @param mask Optional operation mask.
  16. *
  17. * @see <a href="http://docs.opencv.org/modules/imgproc/doc/motion_analysis_and_object_tracking.html#accumulatesquare">org.opencv.imgproc.Imgproc.accumulateSquare</a>
  18. * @see org.opencv.imgproc.Imgproc#accumulateWeighted
  19. * @see org.opencv.imgproc.Imgproc#accumulateProduct
  20. * @see org.opencv.imgproc.Imgproc#accumulateSquare
  21. */
  22. public static void accumulateSquare(Mat src, Mat dst, Mat mask)
  23. {
  24. accumulateSquare_0(src.nativeObj, dst.nativeObj, mask.nativeObj);
  25. return;
  26. }

相关文章

Imgproc类方法