(self, device)
| 320 | |
| 321 | class Image2Canny: |
| 322 | def __init__(self, device): |
| 323 | print("Initializing Image2Canny") |
| 324 | self.low_threshold = 100 |
| 325 | self.high_threshold = 200 |
| 326 | |
| 327 | @prompts(name="Edge Detection On Image", |
| 328 | description="useful when you want to detect the edge of the image. " |
nothing calls this directly
no outgoing calls
no test coverage detected