MCPcopy Create free account
hub / github.com/PyImageSearch/imutils / __init__

Method __init__

imutils/feature/harris.py:7–11  ·  view source on GitHub ↗
(self, blockSize=2, apertureSize=3, k=0.1, T=0.02)

Source from the content-addressed store, hash-verified

5
6class HARRIS:
7 def __init__(self, blockSize=2, apertureSize=3, k=0.1, T=0.02):
8 self.blockSize = blockSize
9 self.apertureSize = apertureSize
10 self.k = k
11 self.T = T
12
13 def detect(self, img):
14 # convert our input image to a floating point data type and then

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected