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%

task.mdevals/scenario-7/

OpenCV Function Explorer

A utility that helps developers search and discover OpenCV API functions by keyword. The tool should enable easy exploration of the OpenCV API without needing to manually browse documentation.

Capabilities

Search for OpenCV functions

  • Searches for OpenCV functions matching "blur" and returns matching function names @test
  • Searches for OpenCV functions matching "canny" using case-insensitive matching @test
  • Returns results when searching for functions matching "threshold" @test

Implementation

@generates

API

def find_opencv_functions(keyword: str) -> list:
    """
    Search for OpenCV functions matching the given keyword.

    Args:
        keyword: The keyword pattern to search for in OpenCV function names

    Returns:
        A list of matching function names from the OpenCV library
    """
    pass

Dependencies { .dependencies }

imutils { .dependency }

Provides utilities for searching OpenCV functions.

OpenCV (cv2) { .dependency }

Core OpenCV library for computer vision operations.