{% extends "base.html" %} {% block title %} findContours {% endblock %} {% block description %}

Finds contours in a binary image.

{% endblock %} {% block signature %}
cv2.findContours(image, mode, method[, contours[, hierarchy[, offset]]]) → contours, hierarchy
{% endblock %} {% block parameters %} {% endblock %} {% block explanation %}

The function retrieves contours from the binary image using the algorithm [224]. The contours are a useful tool for shape analysis and object detection and recognition.

{% endblock %} {% block notes %} {% endblock %} {% block references %} {% endblock %}