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
Pending
Does it follow best practices?
Impact
91%
1.33xAverage score across 10 eval scenarios
Pending
The risk profile of this skill
{
"context": "This criteria evaluates how effectively the engineer utilizes the imutils package to implement OpenCV function discovery, specifically focusing on the proper use of imutils.find_function() for searching and exploring the OpenCV API.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Uses imutils.find_function",
"description": "The implementation uses imutils.find_function() to search for OpenCV functions by keyword",
"max_score": 40
},
{
"name": "Handles search results",
"description": "The implementation correctly handles and returns the results from imutils.find_function()",
"max_score": 25
},
{
"name": "Case-insensitive search",
"description": "The implementation leverages imutils.find_function()'s built-in case-insensitive regex matching capability",
"max_score": 20
},
{
"name": "Correct function signature",
"description": "The implementation uses the correct parameters for imutils.find_function() including the keyword argument",
"max_score": 15
}
]
}evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10