{% extends "base.html" %} {% block title %} inRange {% endblock %} {% block description %}
Checks if array elements lie between the elements of two other arrays.
{% endblock %} {% block signature %}cv2.inRange(src, lowerb, upperb[, dst]) → dst{% endblock %} {% block parameters %}
src
and cv2.CV_8U
type.The function checks the range as follows:
lowerb
and upperb
in the above formulas should be omitted, but the channel indices remain.
{% endblock %}
{% block references %}
{% endblock %}