(self, step=6, radius=.5)
| 2 | |
| 3 | class DENSE: |
| 4 | def __init__(self, step=6, radius=.5): |
| 5 | self.step = step |
| 6 | self.radius = radius |
| 7 | |
| 8 | def detect(self, img): |
| 9 | # initialize our list of keypoints |
nothing calls this directly
no outgoing calls
no test coverage detected