megadetector 10.0.3__py3-none-any.whl → 10.0.5__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.
Potentially problematic release.
This version of megadetector might be problematic. Click here for more details.
- megadetector/data_management/animl_to_md.py +158 -0
- megadetector/data_management/cct_json_utils.py +1 -0
- megadetector/data_management/speciesnet_to_md.py +2 -2
- megadetector/data_management/zamba_to_md.py +188 -0
- megadetector/detection/process_video.py +52 -40
- megadetector/detection/pytorch_detector.py +24 -34
- megadetector/detection/run_detector_batch.py +138 -93
- megadetector/detection/run_md_and_speciesnet.py +22 -4
- megadetector/detection/video_utils.py +5 -4
- megadetector/postprocessing/classification_postprocessing.py +26 -10
- megadetector/postprocessing/combine_batch_outputs.py +2 -0
- megadetector/postprocessing/generate_csv_report.py +1 -1
- megadetector/postprocessing/load_api_results.py +1 -1
- megadetector/postprocessing/md_to_wi.py +1 -1
- megadetector/postprocessing/postprocess_batch_results.py +1 -1
- megadetector/postprocessing/repeat_detection_elimination/repeat_detections_core.py +1 -1
- megadetector/postprocessing/separate_detections_into_folders.py +1 -1
- megadetector/postprocessing/subset_json_detector_output.py +1 -3
- megadetector/utils/ct_utils.py +71 -0
- megadetector/utils/md_tests.py +8 -7
- megadetector/utils/path_utils.py +4 -15
- megadetector/utils/wi_platform_utils.py +824 -0
- megadetector/utils/wi_taxonomy_utils.py +1711 -0
- megadetector/visualization/visualization_utils.py +1 -1
- megadetector/visualization/visualize_detector_output.py +7 -5
- megadetector/visualization/visualize_video_output.py +1 -1
- {megadetector-10.0.3.dist-info → megadetector-10.0.5.dist-info}/METADATA +2 -2
- {megadetector-10.0.3.dist-info → megadetector-10.0.5.dist-info}/RECORD +31 -28
- megadetector/utils/wi_utils.py +0 -2674
- {megadetector-10.0.3.dist-info → megadetector-10.0.5.dist-info}/WHEEL +0 -0
- {megadetector-10.0.3.dist-info → megadetector-10.0.5.dist-info}/licenses/LICENSE +0 -0
- {megadetector-10.0.3.dist-info → megadetector-10.0.5.dist-info}/top_level.txt +0 -0
|
@@ -552,7 +552,7 @@ def render_detection_bounding_boxes(detections,
|
|
|
552
552
|
custom_strings (list of str, optional): optional set of strings to append to detection labels, should
|
|
553
553
|
have the same length as [detections]. Appended before any classification labels.
|
|
554
554
|
box_sort_order (str, optional): sorting scheme for detection boxes, can be None, "confidence", or
|
|
555
|
-
"reverse_confidence".
|
|
555
|
+
"reverse_confidence". "confidence" puts the highest-confidence boxes on top.
|
|
556
556
|
verbose (bool, optional): enable additional debug output
|
|
557
557
|
"""
|
|
558
558
|
|
|
@@ -24,10 +24,13 @@ from megadetector.detection.run_detector import get_typical_confidence_threshold
|
|
|
24
24
|
from megadetector.utils.ct_utils import get_max_conf
|
|
25
25
|
from megadetector.utils import write_html_image_list
|
|
26
26
|
from megadetector.utils.path_utils import path_is_abs
|
|
27
|
-
from megadetector.utils.
|
|
27
|
+
from megadetector.utils.path_utils import open_file
|
|
28
|
+
from megadetector.utils.wi_taxonomy_utils import load_md_or_speciesnet_file
|
|
28
29
|
from megadetector.visualization import visualization_utils as vis_utils
|
|
29
30
|
from megadetector.visualization.visualization_utils import blur_detections
|
|
30
31
|
|
|
32
|
+
default_box_sort_order = 'confidence'
|
|
33
|
+
|
|
31
34
|
|
|
32
35
|
#%% Constants
|
|
33
36
|
|
|
@@ -49,7 +52,7 @@ def _render_image(entry,
|
|
|
49
52
|
out_dir,
|
|
50
53
|
images_dir,
|
|
51
54
|
output_image_width,
|
|
52
|
-
box_sort_order=
|
|
55
|
+
box_sort_order=default_box_sort_order,
|
|
53
56
|
category_names_to_blur=None):
|
|
54
57
|
"""
|
|
55
58
|
Internal function for rendering a single image.
|
|
@@ -153,7 +156,7 @@ def visualize_detector_output(detector_output_path,
|
|
|
153
156
|
parallelize_rendering=False,
|
|
154
157
|
parallelize_rendering_n_cores=10,
|
|
155
158
|
parallelize_rendering_with_threads=True,
|
|
156
|
-
box_sort_order=
|
|
159
|
+
box_sort_order=default_box_sort_order,
|
|
157
160
|
category_names_to_blur=None):
|
|
158
161
|
"""
|
|
159
162
|
Draws bounding boxes on images given the output of a detector.
|
|
@@ -424,8 +427,7 @@ def main(): # noqa
|
|
|
424
427
|
html_output_file=args.html_output_file,
|
|
425
428
|
category_names_to_blur=category_names_to_blur)
|
|
426
429
|
|
|
427
|
-
if args.html_output_file is not None and args.open_html_output_file:
|
|
428
|
-
from megadetector.utils.path_utils import open_file
|
|
430
|
+
if (args.html_output_file is not None) and args.open_html_output_file:
|
|
429
431
|
open_file(args.html_output_file)
|
|
430
432
|
|
|
431
433
|
if __name__ == '__main__':
|
|
@@ -21,7 +21,7 @@ import numpy as np
|
|
|
21
21
|
from megadetector.data_management.annotations.annotation_constants import detector_bbox_category_id_to_name
|
|
22
22
|
from megadetector.detection.video_utils import run_callback_on_frames, default_fourcc, is_video_file
|
|
23
23
|
from megadetector.utils.path_utils import path_is_abs
|
|
24
|
-
from megadetector.utils.
|
|
24
|
+
from megadetector.utils.wi_taxonomy_utils import load_md_or_speciesnet_file
|
|
25
25
|
from megadetector.visualization.visualization_utils import render_detection_bounding_boxes
|
|
26
26
|
|
|
27
27
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: megadetector
|
|
3
|
-
Version: 10.0.
|
|
3
|
+
Version: 10.0.5
|
|
4
4
|
Summary: MegaDetector is an AI model that helps conservation folks spend less time doing boring things with camera trap images.
|
|
5
5
|
Author-email: Your friendly neighborhood MegaDetector team <cameratraps@lila.science>
|
|
6
6
|
Maintainer-email: Your friendly neighborhood MegaDetector team <cameratraps@lila.science>
|
|
@@ -38,7 +38,7 @@ Requires-Dist: numpy>=1.26.4
|
|
|
38
38
|
Requires-Dist: Pillow>=9.5
|
|
39
39
|
Requires-Dist: tqdm>=4.64.0
|
|
40
40
|
Requires-Dist: jsonpickle>=3.0.2
|
|
41
|
-
Requires-Dist: humanfriendly>=
|
|
41
|
+
Requires-Dist: humanfriendly>=2.1
|
|
42
42
|
Requires-Dist: matplotlib>=3.8.0
|
|
43
43
|
Requires-Dist: opencv-python>=4.8.0
|
|
44
44
|
Requires-Dist: requests>=2.31.0
|
|
@@ -30,8 +30,9 @@ megadetector/classification/efficientnet/__init__.py,sha256=e-jfknjzCc5a0CSW-TaZ
|
|
|
30
30
|
megadetector/classification/efficientnet/model.py,sha256=o7m379-FVeHrioW1HSJ48fLUqH9MMlf4b1BwktL2EoQ,17120
|
|
31
31
|
megadetector/classification/efficientnet/utils.py,sha256=76SQdh0zK7CFcwTW4kiechCGMHSftPT0tC1PtqNRLZI,24756
|
|
32
32
|
megadetector/data_management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
|
+
megadetector/data_management/animl_to_md.py,sha256=Z6PDJxeM_5dMZJBM3j0mxDPW2_1bNkXx0M3_qq42_Ig,4416
|
|
33
34
|
megadetector/data_management/camtrap_dp_to_coco.py,sha256=HoCGMzZTEvnudnAjbOr-mCizXHmc8mMNSUChy_Q9PkI,9673
|
|
34
|
-
megadetector/data_management/cct_json_utils.py,sha256=
|
|
35
|
+
megadetector/data_management/cct_json_utils.py,sha256=B9YawIxs1l62AsWlv0yHaV01XZtbRXQ8NByRwfYGjv0,19536
|
|
35
36
|
megadetector/data_management/cct_to_md.py,sha256=e1fYevSz0m65n5H16uB6uwzNiXiwxjdB2ka5p68R4d0,5120
|
|
36
37
|
megadetector/data_management/cct_to_wi.py,sha256=wcBOmurXY5I-hiqV6SmRSGUAeYaKHEU1LgCZjqVmCyw,9561
|
|
37
38
|
megadetector/data_management/coco_to_labelme.py,sha256=uYJ60XoZfHUEfLzj-EjLyeNM590skNnMp-IThWwNISo,8683
|
|
@@ -47,10 +48,11 @@ megadetector/data_management/remap_coco_categories.py,sha256=DT4Rdt7Y1IdhbO2TZiB
|
|
|
47
48
|
megadetector/data_management/remove_exif.py,sha256=5JHGWMIeXqB2PE2ZwIMJOEtNYopxknNDwynQAuJCLvw,4031
|
|
48
49
|
megadetector/data_management/rename_images.py,sha256=iHkdQ_c1G9Oc8C4wcnPLmhKv0S9i9g7ppbytfBBqn2Y,6516
|
|
49
50
|
megadetector/data_management/resize_coco_dataset.py,sha256=onXe3y27QKC53OQQ2Y2h9115-UOztQYWpOoTljUbKxY,26613
|
|
50
|
-
megadetector/data_management/speciesnet_to_md.py,sha256=
|
|
51
|
+
megadetector/data_management/speciesnet_to_md.py,sha256=nY3_5z-rEYzYUB1w216ARRTIOuB6O1JAD7LKBDip1oI,1386
|
|
51
52
|
megadetector/data_management/wi_download_csv_to_coco.py,sha256=rhqWSEmDiXs1GbHavoNwdGSqk01-a-4xmz7z7x1Qjs4,7973
|
|
52
53
|
megadetector/data_management/yolo_output_to_md_output.py,sha256=4wU31dHo8rSwge91m0bO0YAYrytvmxZH0YRHiRjRGa8,22509
|
|
53
54
|
megadetector/data_management/yolo_to_coco.py,sha256=5fa7VAbRZQgWK-03DeyVhpj6qeIW6cT7v8B33rhsN3I,31003
|
|
55
|
+
megadetector/data_management/zamba_to_md.py,sha256=f6hK0pdVY0FhN_7DqKhY5BswYps7fO-Hy5ojmRvntok,5314
|
|
54
56
|
megadetector/data_management/annotations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
57
|
megadetector/data_management/annotations/annotation_constants.py,sha256=Fp_uaFQbMzhjMBcXOBUuTA9eOmenjPboMQojPQUaJjI,951
|
|
56
58
|
megadetector/data_management/databases/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -70,40 +72,40 @@ megadetector/data_management/lila/lila_common.py,sha256=IRWs46TrxcjckLidDwXPmb5O
|
|
|
70
72
|
megadetector/data_management/lila/test_lila_metadata_urls.py,sha256=ThU78Ks5V3rFyJSKStFcM5M2yTlhR_pgMTa6_KuF5Hs,5256
|
|
71
73
|
megadetector/detection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
72
74
|
megadetector/detection/change_detection.py,sha256=Ne3GajbH_0KPBU8ruHp4Rkr0uKd5oKAMQ3CQTRKRHgQ,28659
|
|
73
|
-
megadetector/detection/process_video.py,sha256=
|
|
74
|
-
megadetector/detection/pytorch_detector.py,sha256=
|
|
75
|
+
megadetector/detection/process_video.py,sha256=iE-TA42IhrVwl3ftZ12mgaWv5CuttsI5SsivxSzpRiY,17498
|
|
76
|
+
megadetector/detection/pytorch_detector.py,sha256=ixU-2_AnCwEP33FaaqTZRoi1WxIUeM4x_ksbNT-tezA,59817
|
|
75
77
|
megadetector/detection/run_detector.py,sha256=TTX29zxDN_O7ja61sOmMIVewUz3yRvKg1D1AAYhVEkc,46851
|
|
76
|
-
megadetector/detection/run_detector_batch.py,sha256=
|
|
78
|
+
megadetector/detection/run_detector_batch.py,sha256=aZgiywL6arrdQ_l3jzlHctlccqL537lwVStjhi1hIWw,89823
|
|
77
79
|
megadetector/detection/run_inference_with_yolov5_val.py,sha256=A-AQuARVVy7oR9WtenCZwzvd5U3HQwihMr4Jkiv9U0g,53515
|
|
78
|
-
megadetector/detection/run_md_and_speciesnet.py,sha256=
|
|
80
|
+
megadetector/detection/run_md_and_speciesnet.py,sha256=Dp_SpJZp0pX9jzFtxM6zPCyBNq49uyQpMDAdNDLVorM,50280
|
|
79
81
|
megadetector/detection/run_tiled_inference.py,sha256=wrQkKIloHBO9v2i0nZ1_Tt75iFtVrnco3Y4FafoVxdw,39382
|
|
80
82
|
megadetector/detection/tf_detector.py,sha256=3b2MiqgMw8KBDzHQliUSDXWrmKpa9iZnfe6EgYpMcYo,8398
|
|
81
|
-
megadetector/detection/video_utils.py,sha256=
|
|
83
|
+
megadetector/detection/video_utils.py,sha256=JkCTK1-aNmLDHOEvlI1w5KS2ZssSdgzerLIUE8iX2_I,49785
|
|
82
84
|
megadetector/postprocessing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
83
85
|
megadetector/postprocessing/add_max_conf.py,sha256=9MYtsH2mwkiaZb7Qcor5J_HskfAj7d9srp8G_Qldpk0,1722
|
|
84
86
|
megadetector/postprocessing/categorize_detections_by_size.py,sha256=DpZpRNFlyeOfWuOc6ICuENgIWDCEtiErJ_frBZp9lYM,5382
|
|
85
|
-
megadetector/postprocessing/classification_postprocessing.py,sha256=
|
|
86
|
-
megadetector/postprocessing/combine_batch_outputs.py,sha256=
|
|
87
|
+
megadetector/postprocessing/classification_postprocessing.py,sha256=klHi5OFQx0LTQntg384llZeSmrxUWEm2HJQmEU-sG8U,60710
|
|
88
|
+
megadetector/postprocessing/combine_batch_outputs.py,sha256=BEP8cVa0sMIPg7tkWQc_8vOEPnbmWjOsQdVJHe61uz8,8468
|
|
87
89
|
megadetector/postprocessing/compare_batch_results.py,sha256=RDlKLwea76rOWiDneSJUj6P_oMBMnD2BY4inoxLqQiw,84258
|
|
88
90
|
megadetector/postprocessing/convert_output_format.py,sha256=FiwKSiMyEeNVLLfjpQtx3CrMbchwNUaW2TgLmdXGFVo,14892
|
|
89
91
|
megadetector/postprocessing/create_crop_folder.py,sha256=T37HnvBEakikXY3n3Bgk5boFo_0-Z5aKnkEWXv-Ki4s,23166
|
|
90
92
|
megadetector/postprocessing/detector_calibration.py,sha256=UFjJ8D6tMghatLRj3CyrtJ7vrPIJkULMNsYMIj98j2M,20495
|
|
91
|
-
megadetector/postprocessing/generate_csv_report.py,sha256=
|
|
92
|
-
megadetector/postprocessing/load_api_results.py,sha256=
|
|
93
|
+
megadetector/postprocessing/generate_csv_report.py,sha256=KIGT8zFZev-cl4YOCq2BqnodBWsZG-7CZaWuep_211U,19169
|
|
94
|
+
megadetector/postprocessing/load_api_results.py,sha256=eTepSPwjLYGoJcKLvodnRNokbfcMib9gInAQ00KVkss,7882
|
|
93
95
|
megadetector/postprocessing/md_to_coco.py,sha256=CkN1ky4A2uZj_gUu8rmyaaxyOH00k6J5cuW_ZtKv3Ow,16932
|
|
94
96
|
megadetector/postprocessing/md_to_labelme.py,sha256=r-EGyXVrSSyN6N6wqQ6pwKeV-fCNzb50ZkJqaDqjrvM,11935
|
|
95
|
-
megadetector/postprocessing/md_to_wi.py,sha256=
|
|
97
|
+
megadetector/postprocessing/md_to_wi.py,sha256=8IHtkMNKRMIcvE2jsKNfKtdH94JTkzrByyo5uBXHOSA,1220
|
|
96
98
|
megadetector/postprocessing/merge_detections.py,sha256=hvb4TJ6u1PyWOVQai9wZk72li1GpjmBxbpfUcV3qqXY,15749
|
|
97
|
-
megadetector/postprocessing/postprocess_batch_results.py,sha256=
|
|
99
|
+
megadetector/postprocessing/postprocess_batch_results.py,sha256=VJyXx8I6KZgefrLNKdvUIf_lCtZW3e_lMBR9TMKYi0E,84606
|
|
98
100
|
megadetector/postprocessing/remap_detection_categories.py,sha256=BE6Ce-PGBEx1FyG3XwbYp2D5sh5xUlVf6fonaMuPMAg,7927
|
|
99
101
|
megadetector/postprocessing/render_detection_confusion_matrix.py,sha256=oNvDTh5td5ynELNnhz4XaLP2HiwLuojkJlob15TpgcY,26365
|
|
100
|
-
megadetector/postprocessing/separate_detections_into_folders.py,sha256=
|
|
101
|
-
megadetector/postprocessing/subset_json_detector_output.py,sha256=
|
|
102
|
+
megadetector/postprocessing/separate_detections_into_folders.py,sha256=Yvpkl_MsWbGoo4zvQHrXHkATRJaYdYligItfg9bvuV8,32262
|
|
103
|
+
megadetector/postprocessing/subset_json_detector_output.py,sha256=FiP1sUYfIBqOiSwjkJ6qkj4hvlF7yJsF7-y9tmfSShc,32187
|
|
102
104
|
megadetector/postprocessing/top_folders_to_bottom.py,sha256=zYrqMHjUZG8urh2CYphfs91ZQ620uqe-TL8jVYy8KVw,6049
|
|
103
105
|
megadetector/postprocessing/validate_batch_results.py,sha256=9nr7LeKMdki9Y821ag2bZFQCxuq0OqINDH7cPXyVcY8,12059
|
|
104
106
|
megadetector/postprocessing/repeat_detection_elimination/find_repeat_detections.py,sha256=XgVeyga8iSC01MAjXxb2rn-CgJTYHqC_gfxxEoSn4aw,9420
|
|
105
107
|
megadetector/postprocessing/repeat_detection_elimination/remove_repeat_detections.py,sha256=mJtexTuWRJbjxu-ss4GRs6Ivl7PFDWlFVSitXTbpbhA,2820
|
|
106
|
-
megadetector/postprocessing/repeat_detection_elimination/repeat_detections_core.py,sha256=
|
|
108
|
+
megadetector/postprocessing/repeat_detection_elimination/repeat_detections_core.py,sha256=_r4J6dXzwfYZraAnNhlz6q3PF9Raa-Os4Iv8Ff264gs,66783
|
|
107
109
|
megadetector/taxonomy_mapping/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
108
110
|
megadetector/taxonomy_mapping/map_lila_taxonomy_to_wi_taxonomy.py,sha256=cutQ4rtZ6T3WtnpHxUd9A5tM5f3bdyUdMMbe8Qss8eA,17694
|
|
109
111
|
megadetector/taxonomy_mapping/map_new_lila_datasets.py,sha256=eSC18J-hxL9OUUN1hx9EGtSKaut9qX15VAek3NYFkAA,4088
|
|
@@ -118,27 +120,28 @@ megadetector/taxonomy_mapping/validate_lila_category_mappings.py,sha256=sAKYreO1
|
|
|
118
120
|
megadetector/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
119
121
|
megadetector/tests/test_nms_synthetic.py,sha256=oY6xmT1sLSSN7weQJ8TPTaZgAiSiZ6s43EffUhwLWIw,14707
|
|
120
122
|
megadetector/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
121
|
-
megadetector/utils/ct_utils.py,sha256=
|
|
123
|
+
megadetector/utils/ct_utils.py,sha256=IiZV8dWtJamveINv_joATMgMPHeDkZ8l82jDEQcLgQg,60502
|
|
122
124
|
megadetector/utils/directory_listing.py,sha256=CZBzwg0Fus1xuRAp3ycEBjViDdwwk4eKdGq06ZERLDg,6414
|
|
123
125
|
megadetector/utils/extract_frames_from_video.py,sha256=vjSVgxtb5z2syHCVYWc2KdNUpc-O6yY8nkbj_wqsIvY,12255
|
|
124
126
|
megadetector/utils/gpu_test.py,sha256=5zUfAVeSjH8I08eCqayFmMxL-0mix8SjJJTe5ORABvU,3544
|
|
125
|
-
megadetector/utils/md_tests.py,sha256=
|
|
126
|
-
megadetector/utils/path_utils.py,sha256=
|
|
127
|
+
megadetector/utils/md_tests.py,sha256=Iup4KjyIpLUpZ4TzzwEyGK61rg6aH7NrEQsdQ-ov51I,80300
|
|
128
|
+
megadetector/utils/path_utils.py,sha256=qU1jTBHYy11i5vOMslFEUjc1VBnxQHnDCPYkVzuUXms,98686
|
|
127
129
|
megadetector/utils/process_utils.py,sha256=gQcpH9WYvGPUs0FhtJ5_Xvl6JsvoGz8_mnDQk0PbTRM,5673
|
|
128
130
|
megadetector/utils/split_locations_into_train_val.py,sha256=fd_6pj1aWY6hybwaXvBn9kBcOHjI90U-OsTmEAGpeu8,10297
|
|
129
131
|
megadetector/utils/string_utils.py,sha256=r2Maw3zbzk3EyaZcNkdqr96yP_8m4ey6v0WxlemEY9U,6155
|
|
130
132
|
megadetector/utils/url_utils.py,sha256=VWYDHbWctTtw7mvbb_A5DTdF3v9V2mWhBoOP5MGE5S8,25728
|
|
131
|
-
megadetector/utils/
|
|
133
|
+
megadetector/utils/wi_platform_utils.py,sha256=8CGpiox_aL6RVZKfJqPVwpW4_6Cjku0HIajJPcmeNpE,32019
|
|
134
|
+
megadetector/utils/wi_taxonomy_utils.py,sha256=VTlWqZqNBplpvTvg7E_tCh88RdG_wf-6jE6ahU7GOuI,66173
|
|
132
135
|
megadetector/utils/write_html_image_list.py,sha256=6Tbe5wyUxoBYJgH9yVrxxKCeWF2BVre_wQMEOQJ-ZIU,9068
|
|
133
136
|
megadetector/visualization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
134
137
|
megadetector/visualization/plot_utils.py,sha256=uDDlOhdaJ3V8sGj2kS9b0cgszKc8WCq2_ofl6TW_XUs,10727
|
|
135
138
|
megadetector/visualization/render_images_with_thumbnails.py,sha256=-XX4PG4wnrFjFTIwd0sMxXxKMxPuu0SZ_TfK3dI1x8Y,8425
|
|
136
|
-
megadetector/visualization/visualization_utils.py,sha256=
|
|
139
|
+
megadetector/visualization/visualization_utils.py,sha256=E5uvysS3F1S_yiPFxZty3U2f6cjuE8zG6XWggYOu-5o,75921
|
|
137
140
|
megadetector/visualization/visualize_db.py,sha256=8YDWSR0eMehXYdPtak9z8UUw35xV7hu-0eCuzgSLjWc,25558
|
|
138
|
-
megadetector/visualization/visualize_detector_output.py,sha256=
|
|
139
|
-
megadetector/visualization/visualize_video_output.py,sha256=
|
|
140
|
-
megadetector-10.0.
|
|
141
|
-
megadetector-10.0.
|
|
142
|
-
megadetector-10.0.
|
|
143
|
-
megadetector-10.0.
|
|
144
|
-
megadetector-10.0.
|
|
141
|
+
megadetector/visualization/visualize_detector_output.py,sha256=HpWh7ugwo51YBHsFi40iAp9G-uRAMMjgsm8H_uBolBs,20295
|
|
142
|
+
megadetector/visualization/visualize_video_output.py,sha256=4A5uit_JVV46kZCsO6j0bZ5-o6ZTAlXKuVvvR_xWpho,20266
|
|
143
|
+
megadetector-10.0.5.dist-info/licenses/LICENSE,sha256=RMa3qq-7Cyk7DdtqRj_bP1oInGFgjyHn9-PZ3PcrqIs,1100
|
|
144
|
+
megadetector-10.0.5.dist-info/METADATA,sha256=i5TpLpLfLxIXO5brvz7yqqKlZ3K5mnvHfoeXExTJCXI,6352
|
|
145
|
+
megadetector-10.0.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
146
|
+
megadetector-10.0.5.dist-info/top_level.txt,sha256=wf9DXa8EwiOSZ4G5IPjakSxBPxTDjhYYnqWRfR-zS4M,13
|
|
147
|
+
megadetector-10.0.5.dist-info/RECORD,,
|