or run

tessl search
Log in

Version

Workspace
tessl
Visibility
Public
Created
Last updated
Describes
pypipkg:pypi/imutils@0.5.x
tile.json

tessl/pypi-imutils

tessl install tessl/pypi-imutils@0.5.0

A series of convenience functions to make basic image processing functions such as translation, rotation, resizing, skeletonization, displaying Matplotlib images, sorting contours, detecting edges, and much more easier with OpenCV and both Python 2.7 and Python 3.

Agent Success

Agent success rate when using this tile

91%

Improvement

Agent success rate improvement when using this tile compared to baseline

1.34x

Baseline

Agent success rate without this tile

68%

rubric.jsonevals/scenario-6/

{
  "context": "This evaluation assesses how well the engineer uses the imutils package for contour detection, sorting, and labeling. The focus is on proper usage of imutils convenience functions for systematic object counting and visualization.",
  "type": "weighted_checklist",
  "checklist": [
    {
      "name": "Contour extraction",
      "description": "Uses imutils.grab_contours() to extract contours from cv2.findContours() output in a version-safe manner",
      "max_score": 25
    },
    {
      "name": "Contour sorting",
      "description": "Uses imutils.contours.sort_contours() with method='left-to-right' (or similar spatial ordering) to sort contours spatially",
      "max_score": 30
    },
    {
      "name": "Contour labeling",
      "description": "Uses imutils.contours.label_contour() to draw and label each contour with its index number",
      "max_score": 35
    },
    {
      "name": "Proper iteration",
      "description": "Correctly iterates through sorted contours and their indices when calling label_contour(), using enumeration to match contour index with label number",
      "max_score": 10
    }
  ]
}