About 183,000 results
Open links in new tab
  1. matplotlib.pyplot.contour — Matplotlib 3.10.1 documentation

    contour and contourf draw contour lines and filled contours, respectively. Except as noted, function signatures and return values are the same for both versions. Parameters: X, Y array-like, optional. The coordinates of the values in Z.

  2. Find and Draw Contours using OpenCV | Python | GeeksforGeeks

    Jan 4, 2023 · Contours are defined as the line joining all the points along the boundary of an image that are having the same intensity. Contours come handy in shape analysis, finding the size of the object of interest, and object detection. OpenCV has findContour() function that helps in extracting the contours from the image. It works best on binary images ...

  3. Contour Plot using Matplotlib – Python | GeeksforGeeks

    Apr 21, 2020 · The matplotlib.pyplot.contour() are usually useful when Z = f(X, Y) i.e Z changes as a function of input X and Y. A contourf() is also available which allows us to draw filled contours. Syntax: matplotlib.pyplot.contour([X, Y, ] Z, [levels], **kwargs)

  4. Contours : Getting Started - OpenCV

    Jan 8, 2013 · Contours can be explained simply as a curve joining all the continuous points (along the boundary), having same color or intensity. The contours are a useful tool for shape analysis and object detection and recognition.

  5. How to Detect Contours in Images using OpenCV in Python

    Learning how to detect contours in images for image segmentation, shape analysis and object detection and recognition using OpenCV in Python.

  6. Extract external contour or silhouette of image in Python

    Nov 27, 2012 · I want to extract the silhouette of an image, and I'm trying to do it using the contour function of MatplotLib. This is my code: from PIL import Image from pylab import * # read image to array im = array(Image.open('HOJA.jpg').convert('L')) # create a new figure figure() # show contours with origin upper left corner contour(im, origin='image ...

  7. Python OpenCV cv2.findContours() Guide - PyTutorial

    Jan 15, 2025 · Learn how to use Python OpenCV cv2.findContours() for contour detection in images. Step-by-step guide with examples and code.

  8. Contour Detection with Custom Seeds using Python – OpenCV

    Jan 3, 2023 · This article discusses how we can dynamically detect contours by clicking on the Image and assign different colors to different parts of the image. Contours are a very useful tool for shape analysis and object detection and recognition. This program uses OpenCV, Numpy, and Matplotlib libraries.

  9. contour(X, Y, Z) — Matplotlib 3.10.1 documentation

    Plot contour lines. See contour.

  10. opencv-python-examples/08_contours/README.md at main

    Contours are a powerful tool in OpenCV for shape analysis and object detection. By understanding how to find, analyze, and manipulate contours, you can build a wide range of computer vision applications, from simple shape detection to complex document scanners and object tracking systems.

  11. Some results have been removed
Refresh