matrice-inference 0.1.0__py3-none-manylinux_2_17_x86_64.whl → 0.1.1__py3-none-manylinux_2_17_x86_64.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.
Potentially problematic release.
This version of matrice-inference might be problematic. Click here for more details.
- matrice_inference/deploy/utils/boundary_drawing_internal/boundary_drawing_internal.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_inference/deploy/utils/boundary_drawing_internal/boundary_drawing_internal.pyi +114 -0
- matrice_inference/deploy/utils/boundary_drawing_internal/boundary_drawing_tool.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_inference/deploy/utils/boundary_drawing_internal/boundary_drawing_tool.pyi +194 -0
- matrice_inference/deploy/utils/boundary_drawing_internal/example_usage.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_inference/deploy/utils/boundary_drawing_internal/example_usage.pyi +35 -0
- matrice_inference/deploy/utils/boundary_drawing_internal/usage/boundary_drawer_launcher.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_inference/deploy/utils/boundary_drawing_internal/usage/boundary_drawer_launcher.pyi +18 -0
- matrice_inference/deploy/utils/boundary_drawing_internal/usage/simple_boundary_launcher.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_inference/deploy/utils/boundary_drawing_internal/usage/simple_boundary_launcher.pyi +22 -0
- {matrice_inference-0.1.0.dist-info → matrice_inference-0.1.1.dist-info}/METADATA +1 -1
- {matrice_inference-0.1.0.dist-info → matrice_inference-0.1.1.dist-info}/RECORD +15 -5
- {matrice_inference-0.1.0.dist-info → matrice_inference-0.1.1.dist-info}/WHEEL +0 -0
- {matrice_inference-0.1.0.dist-info → matrice_inference-0.1.1.dist-info}/licenses/LICENSE.txt +0 -0
- {matrice_inference-0.1.0.dist-info → matrice_inference-0.1.1.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
"""Auto-generated stub for module: boundary_drawing_internal."""
|
|
2
|
+
from typing import Any, Dict, List, Tuple
|
|
3
|
+
|
|
4
|
+
from pathlib import Path
|
|
5
|
+
import argparse
|
|
6
|
+
import base64
|
|
7
|
+
import cv2
|
|
8
|
+
import json
|
|
9
|
+
import numpy as np
|
|
10
|
+
import os
|
|
11
|
+
import sys
|
|
12
|
+
import webbrowser
|
|
13
|
+
|
|
14
|
+
# Functions
|
|
15
|
+
def main() -> Any: ...
|
|
16
|
+
"""
|
|
17
|
+
Main function for command line usage.
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
# Classes
|
|
21
|
+
class BoundaryDrawingTool:
|
|
22
|
+
"""
|
|
23
|
+
A comprehensive tool for drawing boundaries, polygons, and lines on video frames or images.
|
|
24
|
+
Supports multiple zones with custom tags like queue, staff, entry, exit, restricted zone, etc.
|
|
25
|
+
"""
|
|
26
|
+
|
|
27
|
+
def __init__(self: Any) -> None: ...
|
|
28
|
+
"""
|
|
29
|
+
Initialize the boundary drawing tool.
|
|
30
|
+
"""
|
|
31
|
+
|
|
32
|
+
def create_grid_reference_image(self: Any, frame_path: str, output_path: str = None, grid_step: int = 50) -> str: ...
|
|
33
|
+
"""
|
|
34
|
+
Create a grid reference image to help users define coordinates.
|
|
35
|
+
|
|
36
|
+
Args:
|
|
37
|
+
frame_path (str): Path to the input frame/image
|
|
38
|
+
output_path (str): Path to save the grid reference image
|
|
39
|
+
grid_step (int): Grid line spacing in pixels
|
|
40
|
+
|
|
41
|
+
Returns:
|
|
42
|
+
str: Path to the grid reference image
|
|
43
|
+
"""
|
|
44
|
+
|
|
45
|
+
def create_interactive_html(self: Any, image_path: str, output_html: str = None, embed_image: bool = True) -> str: ...
|
|
46
|
+
"""
|
|
47
|
+
Create an interactive HTML page for drawing boundaries with custom tags.
|
|
48
|
+
|
|
49
|
+
Args:
|
|
50
|
+
image_path (str): Path to the reference image
|
|
51
|
+
output_html (str): Path to save the HTML file
|
|
52
|
+
embed_image (bool): Whether to embed image as base64 or use file path
|
|
53
|
+
|
|
54
|
+
Returns:
|
|
55
|
+
str: Path to the HTML file
|
|
56
|
+
"""
|
|
57
|
+
|
|
58
|
+
def extract_first_frame(self: Any, video_path: str, output_path: str = None) -> str: ...
|
|
59
|
+
"""
|
|
60
|
+
Extract the first frame from a video file.
|
|
61
|
+
|
|
62
|
+
Args:
|
|
63
|
+
video_path (str): Path to the video file
|
|
64
|
+
output_path (str): Path to save the extracted frame
|
|
65
|
+
|
|
66
|
+
Returns:
|
|
67
|
+
str: Path to the extracted frame
|
|
68
|
+
"""
|
|
69
|
+
|
|
70
|
+
def get_file_type(self: Any, file_path: str) -> str: ...
|
|
71
|
+
"""
|
|
72
|
+
Determine if the file is a video or image.
|
|
73
|
+
|
|
74
|
+
Args:
|
|
75
|
+
file_path (str): Path to the file
|
|
76
|
+
|
|
77
|
+
Returns:
|
|
78
|
+
str: 'video', 'image', or 'unknown'
|
|
79
|
+
"""
|
|
80
|
+
|
|
81
|
+
def image_to_base64(self: Any, image_path: str) -> str: ...
|
|
82
|
+
"""
|
|
83
|
+
Convert image to base64 for embedding in HTML.
|
|
84
|
+
|
|
85
|
+
Args:
|
|
86
|
+
image_path (str): Path to the image file
|
|
87
|
+
|
|
88
|
+
Returns:
|
|
89
|
+
str: Base64 encoded image data
|
|
90
|
+
"""
|
|
91
|
+
|
|
92
|
+
def open_in_browser(self: Any, html_path: str) -> Any: ...
|
|
93
|
+
"""
|
|
94
|
+
Open the HTML file in the default web browser.
|
|
95
|
+
|
|
96
|
+
Args:
|
|
97
|
+
html_path (str): Path to the HTML file
|
|
98
|
+
"""
|
|
99
|
+
|
|
100
|
+
def process_input_file(self: Any, input_path: str, output_dir: str = None, grid_step: int = 50, open_browser: bool = True, embed_image: bool = True) -> Dict[str, str]: ...
|
|
101
|
+
"""
|
|
102
|
+
Process an input video or image file and create the boundary drawing tool.
|
|
103
|
+
|
|
104
|
+
Args:
|
|
105
|
+
input_path (str): Path to input video or image file
|
|
106
|
+
output_dir (str): Directory to save output files
|
|
107
|
+
grid_step (int): Grid line spacing for reference image
|
|
108
|
+
open_browser (bool): Whether to open the tool in browser
|
|
109
|
+
embed_image (bool): Whether to embed image as base64 in HTML
|
|
110
|
+
|
|
111
|
+
Returns:
|
|
112
|
+
Dict[str, str]: Dictionary with paths to created files
|
|
113
|
+
"""
|
|
114
|
+
|
|
Binary file
|
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
"""Auto-generated stub for module: boundary_drawing_tool."""
|
|
2
|
+
from typing import Any, Dict, List, Optional, Union
|
|
3
|
+
|
|
4
|
+
from boundary_drawing_internal import BoundaryDrawingTool
|
|
5
|
+
from pathlib import Path
|
|
6
|
+
import base64
|
|
7
|
+
import cv2
|
|
8
|
+
import datetime
|
|
9
|
+
import numpy as np
|
|
10
|
+
import os
|
|
11
|
+
import shutil
|
|
12
|
+
import uuid
|
|
13
|
+
import webbrowser
|
|
14
|
+
|
|
15
|
+
# Functions
|
|
16
|
+
def create_standalone_tool(output_path: str = 'boundary_tool.html', auto_open: bool = True) -> str: ...
|
|
17
|
+
"""
|
|
18
|
+
One-line function to create a standalone boundary drawing tool.
|
|
19
|
+
|
|
20
|
+
Args:
|
|
21
|
+
output_path (str): Where to save the HTML tool
|
|
22
|
+
auto_open (bool): Whether to automatically open in browser
|
|
23
|
+
|
|
24
|
+
Returns:
|
|
25
|
+
str: Path to the created HTML tool
|
|
26
|
+
|
|
27
|
+
Example:
|
|
28
|
+
from matrice_inference.deploy.utils.boundary_drawing_internal import create_standalone_tool
|
|
29
|
+
|
|
30
|
+
# Create a standalone tool
|
|
31
|
+
create_standalone_tool("my_tool.html")
|
|
32
|
+
"""
|
|
33
|
+
def get_usage_template(zone_types: list = None) -> str: ...
|
|
34
|
+
"""
|
|
35
|
+
Get template code for using generated zones.
|
|
36
|
+
|
|
37
|
+
Args:
|
|
38
|
+
zone_types (list, optional): Zone types to include in template
|
|
39
|
+
|
|
40
|
+
Returns:
|
|
41
|
+
str: Template Python code
|
|
42
|
+
|
|
43
|
+
Example:
|
|
44
|
+
from matrice_inference.deploy.utils.boundary_drawing_internal import get_usage_template
|
|
45
|
+
|
|
46
|
+
template = get_usage_template(["queue", "staff"])
|
|
47
|
+
print(template)
|
|
48
|
+
"""
|
|
49
|
+
def quick_boundary_tool(file_path: str, zones_needed: list = None, auto_open: bool = True) -> str: ...
|
|
50
|
+
"""
|
|
51
|
+
One-line function to create a boundary drawing tool from any file.
|
|
52
|
+
|
|
53
|
+
Args:
|
|
54
|
+
file_path (str): Path to video or image file
|
|
55
|
+
zones_needed (list, optional): List of zone types you plan to create
|
|
56
|
+
auto_open (bool): Whether to automatically open in browser
|
|
57
|
+
|
|
58
|
+
Returns:
|
|
59
|
+
str: Path to the HTML boundary drawing tool
|
|
60
|
+
|
|
61
|
+
Example:
|
|
62
|
+
from matrice_inference.deploy.utils.boundary_drawing_internal import quick_boundary_tool
|
|
63
|
+
|
|
64
|
+
# One line to create and open the tool
|
|
65
|
+
quick_boundary_tool("my_video.mp4", ["queue", "staff", "exit"])
|
|
66
|
+
"""
|
|
67
|
+
|
|
68
|
+
# Classes
|
|
69
|
+
class EasyBoundaryTool:
|
|
70
|
+
"""
|
|
71
|
+
A simplified, easy-to-use boundary drawing tool that can be imported and used
|
|
72
|
+
with minimal code. Perfect for quickly creating zone definitions from videos or images.
|
|
73
|
+
|
|
74
|
+
Example:
|
|
75
|
+
from matrice_inference.deploy.utils.boundary_drawing_internal import EasyBoundaryTool
|
|
76
|
+
|
|
77
|
+
# Create tool and open interactive interface
|
|
78
|
+
tool = EasyBoundaryTool()
|
|
79
|
+
zones = tool.create_from_video("my_video.mp4")
|
|
80
|
+
|
|
81
|
+
# Or from an image
|
|
82
|
+
zones = tool.create_from_image("frame.jpg")
|
|
83
|
+
"""
|
|
84
|
+
|
|
85
|
+
def __init__(self: Any, auto_open_browser: bool = True, grid_step: int = 50) -> None: ...
|
|
86
|
+
"""
|
|
87
|
+
Initialize the easy boundary drawing tool.
|
|
88
|
+
|
|
89
|
+
Args:
|
|
90
|
+
auto_open_browser (bool): Whether to automatically open the tool in browser
|
|
91
|
+
grid_step (int): Grid line spacing in pixels for reference
|
|
92
|
+
"""
|
|
93
|
+
|
|
94
|
+
def cleanup(self: Any) -> None: ...
|
|
95
|
+
"""
|
|
96
|
+
Optionally clean up data files created by the tool.
|
|
97
|
+
Note: Files are now saved permanently in boundary_drawing_internal/data/
|
|
98
|
+
"""
|
|
99
|
+
|
|
100
|
+
def create_from_image(self: Any, image_path: str, output_dir: Optional[str] = None) -> str: ...
|
|
101
|
+
"""
|
|
102
|
+
Create an interactive boundary drawing tool from an image file.
|
|
103
|
+
|
|
104
|
+
Args:
|
|
105
|
+
image_path (str): Path to the image file
|
|
106
|
+
output_dir (str, optional): Directory to save output files.
|
|
107
|
+
If None, creates a unique directory in boundary_drawing_internal/data.
|
|
108
|
+
|
|
109
|
+
Returns:
|
|
110
|
+
str: Path to the HTML boundary drawing tool
|
|
111
|
+
|
|
112
|
+
Example:
|
|
113
|
+
tool = EasyBoundaryTool()
|
|
114
|
+
html_path = tool.create_from_image("frame.jpg")
|
|
115
|
+
# Interactive tool opens in browser
|
|
116
|
+
"""
|
|
117
|
+
|
|
118
|
+
def create_from_video(self: Any, video_path: str, output_dir: Optional[str] = None) -> str: ...
|
|
119
|
+
"""
|
|
120
|
+
Create an interactive boundary drawing tool from a video file.
|
|
121
|
+
Extracts the first frame and opens the drawing interface.
|
|
122
|
+
|
|
123
|
+
Args:
|
|
124
|
+
video_path (str): Path to the video file
|
|
125
|
+
output_dir (str, optional): Directory to save output files.
|
|
126
|
+
If None, creates a unique directory in boundary_drawing_internal/data.
|
|
127
|
+
|
|
128
|
+
Returns:
|
|
129
|
+
str: Path to the HTML boundary drawing tool
|
|
130
|
+
|
|
131
|
+
Example:
|
|
132
|
+
tool = EasyBoundaryTool()
|
|
133
|
+
html_path = tool.create_from_video("security_camera.mp4")
|
|
134
|
+
# Interactive tool opens in browser
|
|
135
|
+
"""
|
|
136
|
+
|
|
137
|
+
def create_standalone_tool(self: Any, output_path: str = 'boundary_tool.html') -> str: ...
|
|
138
|
+
"""
|
|
139
|
+
Create a standalone HTML tool that can accept file uploads.
|
|
140
|
+
This creates a self-contained tool that doesn't need a specific input file.
|
|
141
|
+
|
|
142
|
+
Args:
|
|
143
|
+
output_path (str): Path where to save the standalone HTML tool
|
|
144
|
+
|
|
145
|
+
Returns:
|
|
146
|
+
str: Path to the created HTML tool
|
|
147
|
+
|
|
148
|
+
Example:
|
|
149
|
+
tool = EasyBoundaryTool()
|
|
150
|
+
html_path = tool.create_standalone_tool("my_boundary_tool.html")
|
|
151
|
+
# Opens a tool where you can drag & drop any video/image
|
|
152
|
+
"""
|
|
153
|
+
|
|
154
|
+
def get_data_directory(self: Any) -> Optional[str]: ...
|
|
155
|
+
"""
|
|
156
|
+
Get the data directory where files are saved.
|
|
157
|
+
|
|
158
|
+
Returns:
|
|
159
|
+
str: Path to the data directory, or None if not created yet
|
|
160
|
+
"""
|
|
161
|
+
|
|
162
|
+
def get_template_code(self: Any, zone_types: list = None) -> str: ...
|
|
163
|
+
"""
|
|
164
|
+
Get template Python code showing how to use the generated zones.
|
|
165
|
+
|
|
166
|
+
Args:
|
|
167
|
+
zone_types (list, optional): List of zone types to include in template
|
|
168
|
+
|
|
169
|
+
Returns:
|
|
170
|
+
str: Template Python code
|
|
171
|
+
|
|
172
|
+
Example:
|
|
173
|
+
tool = EasyBoundaryTool()
|
|
174
|
+
template = tool.get_template_code(["queue", "staff", "service"])
|
|
175
|
+
print(template)
|
|
176
|
+
"""
|
|
177
|
+
|
|
178
|
+
def quick_setup(self: Any, file_path: str, zones_needed: list = None) -> str: ...
|
|
179
|
+
"""
|
|
180
|
+
Quick setup method that auto-detects file type and creates the tool.
|
|
181
|
+
|
|
182
|
+
Args:
|
|
183
|
+
file_path (str): Path to video or image file
|
|
184
|
+
zones_needed (list, optional): List of zone types you plan to create.
|
|
185
|
+
Used for informational purposes.
|
|
186
|
+
|
|
187
|
+
Returns:
|
|
188
|
+
str: Path to the HTML boundary drawing tool
|
|
189
|
+
|
|
190
|
+
Example:
|
|
191
|
+
tool = EasyBoundaryTool()
|
|
192
|
+
tool.quick_setup("video.mp4", zones_needed=["queue", "staff", "entry"])
|
|
193
|
+
"""
|
|
194
|
+
|
|
Binary file
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"""Auto-generated stub for module: example_usage."""
|
|
2
|
+
from typing import Any
|
|
3
|
+
|
|
4
|
+
from matrice_inference.deploy.utils.boundary_drawing_internal import EasyBoundaryTool, quick_boundary_tool, create_standalone_tool, get_usage_template
|
|
5
|
+
import os
|
|
6
|
+
|
|
7
|
+
# Functions
|
|
8
|
+
def example_1_quick_video_tool() -> Any: ...
|
|
9
|
+
"""
|
|
10
|
+
Example 1: Create a boundary tool from a video file with one line.
|
|
11
|
+
"""
|
|
12
|
+
def example_2_image_tool() -> Any: ...
|
|
13
|
+
"""
|
|
14
|
+
Example 2: Create a boundary tool from an image file.
|
|
15
|
+
"""
|
|
16
|
+
def example_3_class_usage() -> Any: ...
|
|
17
|
+
"""
|
|
18
|
+
Example 3: Using the class for more control.
|
|
19
|
+
"""
|
|
20
|
+
def example_4_standalone_tool() -> Any: ...
|
|
21
|
+
"""
|
|
22
|
+
Example 4: Create a standalone tool for drag & drop.
|
|
23
|
+
"""
|
|
24
|
+
def example_5_integration_code() -> Any: ...
|
|
25
|
+
"""
|
|
26
|
+
Example 5: Show how to integrate generated zones with post-processing.
|
|
27
|
+
"""
|
|
28
|
+
def example_6_workflow() -> Any: ...
|
|
29
|
+
"""
|
|
30
|
+
Example 6: Complete workflow example.
|
|
31
|
+
"""
|
|
32
|
+
def main() -> Any: ...
|
|
33
|
+
"""
|
|
34
|
+
Run all examples.
|
|
35
|
+
"""
|
|
Binary file
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"""Auto-generated stub for module: boundary_drawer_launcher."""
|
|
2
|
+
from typing import Any
|
|
3
|
+
|
|
4
|
+
from matrice_inference.deploy.utils.boundary_drawing_internal import EasyBoundaryTool, quick_boundary_tool
|
|
5
|
+
from pathlib import Path
|
|
6
|
+
import os
|
|
7
|
+
import sys
|
|
8
|
+
|
|
9
|
+
# Constants
|
|
10
|
+
current_dir: Any
|
|
11
|
+
matrice_path: Any
|
|
12
|
+
src_path: Any
|
|
13
|
+
|
|
14
|
+
# Functions
|
|
15
|
+
def main() -> Any: ...
|
|
16
|
+
"""
|
|
17
|
+
Launch the boundary drawing tool for the airport security video.
|
|
18
|
+
"""
|
|
Binary file
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"""Auto-generated stub for module: simple_boundary_launcher."""
|
|
2
|
+
from typing import Any, List
|
|
3
|
+
|
|
4
|
+
from matrice_inference.deploy.utils.boundary_drawing_internal import EasyBoundaryTool
|
|
5
|
+
from pathlib import Path
|
|
6
|
+
import os
|
|
7
|
+
import sys
|
|
8
|
+
|
|
9
|
+
# Constants
|
|
10
|
+
current_dir: Any
|
|
11
|
+
matrice_path: Any
|
|
12
|
+
src_path: Any
|
|
13
|
+
|
|
14
|
+
# Functions
|
|
15
|
+
def launch_boundary_tool(video_path: Any, custom_zones: Any = None) -> Any: ...
|
|
16
|
+
"""
|
|
17
|
+
Launch the boundary drawing tool for any video file.
|
|
18
|
+
|
|
19
|
+
Args:
|
|
20
|
+
video_path (str): Path to the video file
|
|
21
|
+
custom_zones (list): List of zone names to use
|
|
22
|
+
"""
|
|
@@ -65,6 +65,16 @@ matrice_inference/deploy/stream/kafka_stream.cpython-312-x86_64-linux-gnu.so,sha
|
|
|
65
65
|
matrice_inference/deploy/stream/kafka_stream.pyi,sha256=ZibWOTAWbCtcWjPsz_NLI5j_9gVLksB5TiRvT5wVyeI,19102
|
|
66
66
|
matrice_inference/deploy/stream/redis_stream.cpython-312-x86_64-linux-gnu.so,sha256=_S0LGVSSpIHs08VIACh_rcwCZl4PqRfqoNIhNg0zkQg,4325216
|
|
67
67
|
matrice_inference/deploy/stream/redis_stream.pyi,sha256=17zxexxac_yz4o5TuNZ5vlhcRb4kF7Xn5OBNh22cq5s,17117
|
|
68
|
+
matrice_inference/deploy/utils/boundary_drawing_internal/boundary_drawing_internal.cpython-312-x86_64-linux-gnu.so,sha256=zR3fpoiIirZbGEosj72iAk-Q8BIVmIHLA_GH64rkdFg,1093056
|
|
69
|
+
matrice_inference/deploy/utils/boundary_drawing_internal/boundary_drawing_internal.pyi,sha256=_0p5Dt8vuO4vhJRJBpDvrquyWn9dbezakCOy3sCtFYQ,3619
|
|
70
|
+
matrice_inference/deploy/utils/boundary_drawing_internal/boundary_drawing_tool.cpython-312-x86_64-linux-gnu.so,sha256=TI7vFTo9ZuSH5o7Eo1OWuzdQXuT4cWQ-RUYuGS1cKQw,898552
|
|
71
|
+
matrice_inference/deploy/utils/boundary_drawing_internal/boundary_drawing_tool.pyi,sha256=xvdiFNlpwYsMXvKZp56e-4Fp-hxCUBApd1-KXEw71hE,6763
|
|
72
|
+
matrice_inference/deploy/utils/boundary_drawing_internal/example_usage.cpython-312-x86_64-linux-gnu.so,sha256=4l-iFgHLXssgG1FGSTAeqJbJ46cjMPkBO2E88_W_jvQ,559544
|
|
73
|
+
matrice_inference/deploy/utils/boundary_drawing_internal/example_usage.pyi,sha256=hfU42GCI4JAaDvbkt_DiQWvmXO0gnBW6OcUZkGBF9z8,1010
|
|
74
|
+
matrice_inference/deploy/utils/boundary_drawing_internal/usage/boundary_drawer_launcher.cpython-312-x86_64-linux-gnu.so,sha256=9zNMWOrJxd2cytiukNzLE2cX3BOYAcPLACDYjNDkwIY,403336
|
|
75
|
+
matrice_inference/deploy/utils/boundary_drawing_internal/usage/boundary_drawer_launcher.pyi,sha256=45Iq_dCFhxvgUqeShg60SX-Bf3Rltdty1hbQE1gY5Dg,424
|
|
76
|
+
matrice_inference/deploy/utils/boundary_drawing_internal/usage/simple_boundary_launcher.cpython-312-x86_64-linux-gnu.so,sha256=WD4KUlWoLwFpCgmrlj67rciBIOg8J9ICrWUfNLy6LiU,389920
|
|
77
|
+
matrice_inference/deploy/utils/boundary_drawing_internal/usage/simple_boundary_launcher.pyi,sha256=pvSHQxAyXjkwCr5XAiri9lP-L6hasMFcg474MVi7clg,573
|
|
68
78
|
matrice_inference/deployment/camera_manager.cpython-312-x86_64-linux-gnu.so,sha256=k1tSFSw5Snmzdi2NFTsPTd6Ss3bgW0DOovz7k5rnajQ,2837184
|
|
69
79
|
matrice_inference/deployment/camera_manager.pyi,sha256=0amfLn_SBNnYFl5ceFvkngg_7WR_Ai0cbdnGS2NsCVY,21464
|
|
70
80
|
matrice_inference/deployment/deployment.cpython-312-x86_64-linux-gnu.so,sha256=Jm4538pBL5finIOvaw8hMwREJqtlhAOdR8c5_AEfcbk,1762320
|
|
@@ -73,8 +83,8 @@ matrice_inference/deployment/inference_pipeline.cpython-312-x86_64-linux-gnu.so,
|
|
|
73
83
|
matrice_inference/deployment/inference_pipeline.pyi,sha256=8kcgTH5fa7_q6nOt3qtVMGLWmlkW7K3qyIRfc092vOA,17609
|
|
74
84
|
matrice_inference/deployment/streaming_gateway_manager.cpython-312-x86_64-linux-gnu.so,sha256=e9-U_GUfeA6JMbW9gG98Rla_sagmL-OKdmNoe3M9N2M,1173584
|
|
75
85
|
matrice_inference/deployment/streaming_gateway_manager.pyi,sha256=ZcSDYqrVMY7R_NsCT4spMOYQdPtkBMvL1-cnXYB-8DI,9157
|
|
76
|
-
matrice_inference-0.1.
|
|
77
|
-
matrice_inference-0.1.
|
|
78
|
-
matrice_inference-0.1.
|
|
79
|
-
matrice_inference-0.1.
|
|
80
|
-
matrice_inference-0.1.
|
|
86
|
+
matrice_inference-0.1.1.dist-info/licenses/LICENSE.txt,sha256=_uQUZpgO0mRYL5-fPoEvLSbNnLPv6OmbeEDCHXhK6Qc,1066
|
|
87
|
+
matrice_inference-0.1.1.dist-info/METADATA,sha256=74oc9You2rndWBL4d2T58XBzq5rCVR_J5A-SR7VYe2I,952
|
|
88
|
+
matrice_inference-0.1.1.dist-info/WHEEL,sha256=1v2d5ZgIOCm88hTCU82KzCHH86q1AtbWccfY0LDUdfY,109
|
|
89
|
+
matrice_inference-0.1.1.dist-info/top_level.txt,sha256=h7i-nE-ZEKLmslZGWAdfa78m5oY8Bes04TTL8TtBvjM,18
|
|
90
|
+
matrice_inference-0.1.1.dist-info/RECORD,,
|
|
File without changes
|
{matrice_inference-0.1.0.dist-info → matrice_inference-0.1.1.dist-info}/licenses/LICENSE.txt
RENAMED
|
File without changes
|
|
File without changes
|