:orphan: :py:mod:`traccuracy.metrics._results` ===================================== .. py:module:: traccuracy.metrics._results Module Contents --------------- Classes ~~~~~~~ .. autoapisummary:: traccuracy.metrics._results.Results .. py:class:: Results(results: dict, matcher_info: dict | None, metric_info: dict, gt_info: dict | None = None, pred_info: dict | None = None) The Results object collects information about the pipeline used to generate the metric results :param results: Dictionary with metric output :type results: dict :param matcher_info: Dictionary with matcher name and parameters :type matcher_info: dict :param metric_info: Dictionary with metric name and parameters :type metric_info: dict :param gt_info: Dictionary with ground truth graph info (name, border_margin, etc.) :type gt_info: dict :param pred_info: Dictionary with predicted graph info (name, border_margin, etc.) :type pred_info: dict .. py:property:: version :type: str Return current traccuracy version .. py:method:: to_dict() -> dict[str, Any] Returns all attributes that are not None as a dictionary :returns: Dictionary of Results attributes :rtype: dict