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.
91
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.
@generates
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
"""
passProvides utilities for searching OpenCV functions.
Core OpenCV library for computer vision operations.
Install with Tessl CLI
npx tessl i tessl/pypi-imutilsevals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10