You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ __Parameters__
40
40
optional rectangular search region as a tuple
41
41
42
42
__Returns__
43
-
-_bestHits_:list of match as dictionaries `{"TemplateName":string, "BBox":(X, Y, Width, Height), "Score":float}`
43
+
-Pandas DataFrame with 1 row per hit and column "TemplateName"(string), "BBox":(X, Y, Width, Height), "Score":float
44
44
- if N=1, return the best match independently of the score_threshold
45
45
- if N<inf, returns up to N best matches that passed the score_threshold
46
46
- if N=inf, returns all matches that passed the score_threshold
@@ -52,7 +52,7 @@ The function `findMatches` performs the same detection without the Non-Maxima Su
52
52
The 2nd important function is `drawBoxesOnRGB` to display the detections as rectangular bounding boxes on the initial image.
53
53
To be able to visualise the detection as colored bounding boxes, the function return a RGB copy of the image if a grayscale image is provided.
54
54
It is also possible to draw the detection bounding boxes on the grayscale image using drawBoxesOnGray (for instance to generate a mask of the detections).
0 commit comments