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
"""Computes benchmark score for each instance of given images that are present both gt_project_name project and projects in project_names list:
25
+
26
+
:param gt_project_name: Project name that contains the ground truth annotations
27
+
:type gt_project_name: str
28
+
:param project_names: list of project names to aggregate through
29
+
:type project_names: list of str
30
+
:param export_root: root export path of the projects
31
+
:type export_root: Pathlike (str or Path)
32
+
:param image_list: List of image names from the projects list that must be used. If None, then all images from the projects list will be used. Default: None
33
+
:type image_list: list
34
+
:param annot_type: Type of annotation instances to consider. Available candidates are: ["bbox", "polygon", "point"]
35
+
:type annot_type: str
36
+
:param show_plots: If True, show plots based on results of consensus computation. Default: False
0 commit comments