lblStatistic 1.0.0a0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,18 @@
1
+ #!/usr/bin/env python3
2
+ # encoding: utf-8
3
+ # @author: firstelfin
4
+ # @time: 2026/05/08 20:24:47
5
+
6
+ import os
7
+ import sys
8
+ import warnings
9
+ from pathlib import Path
10
+ warnings.filterwarnings('ignore')
11
+ FILE = Path(__file__).resolve()
12
+ ROOT = FILE.parents[1] # project root directory
13
+ if str(ROOT) not in sys.path:
14
+ sys.path.append(str(ROOT)) # add ROOT to PATH
15
+
16
+ from lblStatistic.statistic import StatisticMatrix, StatisticConfusion
17
+
18
+ __version__ = '1.0.0-alpha'
@@ -0,0 +1 @@
1
+ from .detect import StatisticConfusion, StatisticMatrix