Commit 7c65f7ef authored by tribta's avatar tribta

Fixing Bad identations (line 18 to 96)

Adding _ to the unused variables for clarity (line 77)
parent 9bb17caa
...@@ -74,7 +74,7 @@ def MatchingMethod(param): ...@@ -74,7 +74,7 @@ def MatchingMethod(param):
cv2.normalize( result, result, 0, 1, cv2.NORM_MINMAX, -1 ) cv2.normalize( result, result, 0, 1, cv2.NORM_MINMAX, -1 )
## [normalize] ## [normalize]
## [best_match] ## [best_match]
minVal, maxVal, minLoc, maxLoc = cv2.minMaxLoc(result, None) _minVal, _maxVal, minLoc, maxLoc = cv2.minMaxLoc(result, None)
## [best_match] ## [best_match]
## [match_loc] ## [match_loc]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment