In line 1164 of file track.py, the parameter k is not passed to the __call__ function of OctaveBlobFinder. The current version is
centers += [self.octaves[1](gaussian_filter(image, k), maxedge=maxedge, first_layer=first_layer, maxDoG=maxDoG)]
and I would expect something like
centers += [self.octaves[1](gaussian_filter(image, k), k=k, maxedge=maxedge, first_layer=first_layer, maxDoG=maxDoG)]
I hope this issue would be helpful
In line 1164 of file
track.py, the parameterkis not passed to the__call__function ofOctaveBlobFinder. The current version isand I would expect something like
I hope this issue would be helpful