(image)
| 3 | |
| 4 | |
| 5 | def method_1(image): |
| 6 | gray = cv.cvtColor(image, cv.COLOR_BGR2GRAY) |
| 7 | t, binary = cv.threshold(gray, 0, 255, cv.THRESH_BINARY | cv.THRESH_OTSU) |
| 8 | return binary |
| 9 | |
| 10 | |
| 11 | def method_2(image): |
nothing calls this directly
no outgoing calls
no test coverage detected