DOC: clarify bbox #2116

This commit is contained in:
François Boulogne
2016-05-29 15:49:28 +02:00
parent 9992a4480b
commit ffc88e58e1
+3 -1
View File
@@ -371,7 +371,9 @@ def regionprops(label_image, intensity_image=None, cache=True):
**area** : int
Number of pixels of region.
**bbox** : tuple
Bounding box ``(min_row, min_col, max_row, max_col)``
Bounding box ``(min_row, min_col, max_row, max_col)``.
Pixels belonging to the bounding box are in the half-open interval
``[min_row; max_row)`` and ``[min_col; max_col)``.
**centroid** : array
Centroid coordinate tuple ``(row, col)``.
**convex_area** : int