org.opencv.core.Core.polylines_1()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(5.1k)|赞(0)|评价(0)|浏览(215)

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

Core.polylines_1介绍

暂无

代码示例

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

  1. /**
  2. * <p>Draws several polygonal curves.</p>
  3. *
  4. * <p>The function <code>polylines</code> draws one or more polygonal curves.</p>
  5. *
  6. * @param img Image.
  7. * @param pts Array of polygonal curves.
  8. * @param isClosed Flag indicating whether the drawn polylines are closed or
  9. * not. If they are closed, the function draws a line from the last vertex of
  10. * each curve to its first vertex.
  11. * @param color Polyline color.
  12. * @param thickness Thickness of the polyline edges.
  13. *
  14. * @see <a href="http://docs.opencv.org/modules/core/doc/drawing_functions.html#polylines">org.opencv.core.Core.polylines</a>
  15. */
  16. public static void polylines(Mat img, List<MatOfPoint> pts, boolean isClosed, Scalar color, int thickness)
  17. {
  18. List<Mat> pts_tmplm = new ArrayList<Mat>((pts != null) ? pts.size() : 0);
  19. Mat pts_mat = Converters.vector_vector_Point_to_Mat(pts, pts_tmplm);
  20. polylines_1(img.nativeObj, pts_mat.nativeObj, isClosed, color.val[0], color.val[1], color.val[2], color.val[3], thickness);
  21. return;
  22. }

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

  1. /**
  2. * <p>Draws several polygonal curves.</p>
  3. *
  4. * <p>The function <code>polylines</code> draws one or more polygonal curves.</p>
  5. *
  6. * @param img Image.
  7. * @param pts Array of polygonal curves.
  8. * @param isClosed Flag indicating whether the drawn polylines are closed or
  9. * not. If they are closed, the function draws a line from the last vertex of
  10. * each curve to its first vertex.
  11. * @param color Polyline color.
  12. * @param thickness Thickness of the polyline edges.
  13. *
  14. * @see <a href="http://docs.opencv.org/modules/core/doc/drawing_functions.html#polylines">org.opencv.core.Core.polylines</a>
  15. */
  16. public static void polylines(Mat img, List<MatOfPoint> pts, boolean isClosed, Scalar color, int thickness)
  17. {
  18. List<Mat> pts_tmplm = new ArrayList<Mat>((pts != null) ? pts.size() : 0);
  19. Mat pts_mat = Converters.vector_vector_Point_to_Mat(pts, pts_tmplm);
  20. polylines_1(img.nativeObj, pts_mat.nativeObj, isClosed, color.val[0], color.val[1], color.val[2], color.val[3], thickness);
  21. return;
  22. }

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

  1. /**
  2. * <p>Draws several polygonal curves.</p>
  3. *
  4. * <p>The function <code>polylines</code> draws one or more polygonal curves.</p>
  5. *
  6. * @param img Image.
  7. * @param pts Array of polygonal curves.
  8. * @param isClosed Flag indicating whether the drawn polylines are closed or
  9. * not. If they are closed, the function draws a line from the last vertex of
  10. * each curve to its first vertex.
  11. * @param color Polyline color.
  12. * @param thickness Thickness of the polyline edges.
  13. *
  14. * @see <a href="http://docs.opencv.org/modules/core/doc/drawing_functions.html#polylines">org.opencv.core.Core.polylines</a>
  15. */
  16. public static void polylines(Mat img, List<MatOfPoint> pts, boolean isClosed, Scalar color, int thickness)
  17. {
  18. List<Mat> pts_tmplm = new ArrayList<Mat>((pts != null) ? pts.size() : 0);
  19. Mat pts_mat = Converters.vector_vector_Point_to_Mat(pts, pts_tmplm);
  20. polylines_1(img.nativeObj, pts_mat.nativeObj, isClosed, color.val[0], color.val[1], color.val[2], color.val[3], thickness);
  21. return;
  22. }

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

  1. /**
  2. * <p>Draws several polygonal curves.</p>
  3. *
  4. * <p>The function <code>polylines</code> draws one or more polygonal curves.</p>
  5. *
  6. * @param img Image.
  7. * @param pts Array of polygonal curves.
  8. * @param isClosed Flag indicating whether the drawn polylines are closed or
  9. * not. If they are closed, the function draws a line from the last vertex of
  10. * each curve to its first vertex.
  11. * @param color Polyline color.
  12. * @param thickness Thickness of the polyline edges.
  13. *
  14. * @see <a href="http://docs.opencv.org/modules/core/doc/drawing_functions.html#polylines">org.opencv.core.Core.polylines</a>
  15. */
  16. public static void polylines(Mat img, List<MatOfPoint> pts, boolean isClosed, Scalar color, int thickness)
  17. {
  18. List<Mat> pts_tmplm = new ArrayList<Mat>((pts != null) ? pts.size() : 0);
  19. Mat pts_mat = Converters.vector_vector_Point_to_Mat(pts, pts_tmplm);
  20. polylines_1(img.nativeObj, pts_mat.nativeObj, isClosed, color.val[0], color.val[1], color.val[2], color.val[3], thickness);
  21. return;
  22. }

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

  1. /**
  2. * <p>Draws several polygonal curves.</p>
  3. *
  4. * <p>The function <code>polylines</code> draws one or more polygonal curves.</p>
  5. *
  6. * @param img Image.
  7. * @param pts Array of polygonal curves.
  8. * @param isClosed Flag indicating whether the drawn polylines are closed or
  9. * not. If they are closed, the function draws a line from the last vertex of
  10. * each curve to its first vertex.
  11. * @param color Polyline color.
  12. * @param thickness Thickness of the polyline edges.
  13. *
  14. * @see <a href="http://docs.opencv.org/modules/core/doc/drawing_functions.html#polylines">org.opencv.core.Core.polylines</a>
  15. */
  16. public static void polylines(Mat img, List<MatOfPoint> pts, boolean isClosed, Scalar color, int thickness)
  17. {
  18. List<Mat> pts_tmplm = new ArrayList<Mat>((pts != null) ? pts.size() : 0);
  19. Mat pts_mat = Converters.vector_vector_Point_to_Mat(pts, pts_tmplm);
  20. polylines_1(img.nativeObj, pts_mat.nativeObj, isClosed, color.val[0], color.val[1], color.val[2], color.val[3], thickness);
  21. return;
  22. }

相关文章

Core类方法