Closed larsvers closed 5 years ago
An unrounded width value over here as in:
image[Math.floor(center[0]) + Math.floor(center[1]) * w]
can lead to non-detected indeces. Replace with:
image[Math.floor(center[0]) + Math.floor(center[1]) * Math.floor(w)]
An unrounded width value over here as in:
can lead to non-detected indeces. Replace with: