endoreg-db 0.2.3__py3-none-any.whl → 0.3.0__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.
- endoreg_db/management/commands/delete_all.py +18 -0
- endoreg_db/management/commands/fix_auth_permission.py +20 -0
- endoreg_db/management/commands/load_user_groups.py +8 -47
- endoreg_db/migrations/0001_initial.py +1 -1
- endoreg_db/migrations/0002_rawvideofile.py +26 -0
- endoreg_db/migrations/0003_rawvideofile_frames_required.py +18 -0
- endoreg_db/migrations/0004_rename_hash_rawvideofile_video_hash.py +18 -0
- endoreg_db/migrations/0005_ffmpegmeta_remove_videoimportmeta_center_and_more.py +56 -0
- endoreg_db/migrations/0006_rawvideofile_center_alter_videometa_processor.py +25 -0
- endoreg_db/migrations/0007_rawvideofile_processor.py +19 -0
- endoreg_db/migrations/0008_rename_frames_required_rawvideofile_state_frames_required.py +18 -0
- endoreg_db/migrations/0009_sensitivemeta_rawvideofile_sensitive_meta.py +31 -0
- endoreg_db/migrations/0010_rename_endoscope_serial_number_sensitivemeta_endoscope_sn.py +18 -0
- endoreg_db/migrations/0011_rawvideofile_state_sensitive_data_retrieved.py +18 -0
- endoreg_db/migrations/0012_rawvideofile_prediction_dir_and_more.py +109 -0
- endoreg_db/models/data_file/__init__.py +4 -1
- endoreg_db/models/data_file/base_classes/__init__.py +0 -1
- endoreg_db/models/data_file/base_classes/abstract_video.py +1 -0
- endoreg_db/models/data_file/import_classes/__init__.py +31 -0
- endoreg_db/models/data_file/import_classes/processing_functions.py +269 -0
- endoreg_db/models/data_file/import_classes/raw_video.py +341 -0
- endoreg_db/models/data_file/metadata/__init__.py +133 -0
- endoreg_db/models/data_file/metadata/sensitive_meta.py +13 -0
- endoreg_db/models/data_file/video/__init__.py +1 -1
- endoreg_db/models/data_file/video/import_meta.py +21 -21
- endoreg_db/models/permissions/__init__.py +44 -0
- endoreg_db/utils/cropping.py +29 -0
- endoreg_db/utils/file_operations.py +30 -0
- endoreg_db/utils/legacy_ocr.py +201 -0
- endoreg_db/utils/ocr.py +19 -23
- endoreg_db/utils/uuid.py +4 -0
- endoreg_db/utils/video_metadata.py +2 -2
- {endoreg_db-0.2.3.dist-info → endoreg_db-0.3.0.dist-info}/METADATA +7 -1
- {endoreg_db-0.2.3.dist-info → endoreg_db-0.3.0.dist-info}/RECORD +36 -13
- {endoreg_db-0.2.3.dist-info → endoreg_db-0.3.0.dist-info}/LICENSE +0 -0
- {endoreg_db-0.2.3.dist-info → endoreg_db-0.3.0.dist-info}/WHEEL +0 -0
|
@@ -24,10 +24,12 @@ endoreg_db/forms/__init__.py,sha256=irncZr5xuZkEEiAVOAhjHk6so1IBW2VZEodaFyQNyHU,
|
|
|
24
24
|
endoreg_db/forms/settings/__init__.py,sha256=xKCYyRS1tEAWsm5C9OrG0Btqgitzuh_s31Oa_W6Os0I,259
|
|
25
25
|
endoreg_db/forms/unit.py,sha256=rywaSXT6E18RwPdGXhDr94Q9_lP-fauY1XAPhj0D7Dc,116
|
|
26
26
|
endoreg_db/management/commands/_load_model_template.py,sha256=2ELH07EbvcXs4Wdpj9rixm6rggNFJp3P0gb_zDQwNLQ,1379
|
|
27
|
+
endoreg_db/management/commands/delete_all.py,sha256=AA5f5GRAyMdzOdOT7qj-Ox7nbioKMJfjAZCgqd839NI,974
|
|
27
28
|
endoreg_db/management/commands/delete_legacy_images.py,sha256=gJWkwqSFNVSBceivMYia93l0tN1FDqlQTxTDwQlzjvY,639
|
|
28
29
|
endoreg_db/management/commands/delete_legacy_videos.py,sha256=T_e0lhsHVEgtgjfK9ORXgh77OXZpHoZ7p6PqjP5BqO0,574
|
|
29
30
|
endoreg_db/management/commands/extract_legacy_video_frames.py,sha256=YiWRytW8EKqDgvy-wxt3JstHK2ErhokOIL4mzQmouVw,600
|
|
30
31
|
endoreg_db/management/commands/fetch_legacy_image_dataset.py,sha256=8QJyw25AOdCVLtbBvn7bTiIlZctEuxRmvRuNVqP7_iw,1153
|
|
32
|
+
endoreg_db/management/commands/fix_auth_permission.py,sha256=f7RFMH4ET4ee5ODZtvTP0RmgJcT3JclPW1OGHLfMMoc,947
|
|
31
33
|
endoreg_db/management/commands/import_legacy_images.py,sha256=IcBmihG9rvqC37XgMgwCwrIkYfHVFjQEWEWZaHtnMuc,3558
|
|
32
34
|
endoreg_db/management/commands/import_legacy_videos.py,sha256=OHFTNb53RtznRyVay88vo83fkfafTiwTgUMieI70NX4,2732
|
|
33
35
|
endoreg_db/management/commands/load_active_model_data.py,sha256=NpWIksrVQIyrd-ZhI_B_34NFbLJI1_vhwuN6gXc8hgQ,1337
|
|
@@ -41,9 +43,20 @@ endoreg_db/management/commands/load_information_source.py,sha256=3sL906AMa7FGO3b
|
|
|
41
43
|
endoreg_db/management/commands/load_label_data.py,sha256=0vSBzBweO-M7mjXJotg4q_W7gbcaBoilrnA9e7dyp8o,2217
|
|
42
44
|
endoreg_db/management/commands/load_profession_data.py,sha256=oF3OF7zRqxA-SVpMW6e7LJ3MSfEc5Hoz1XlcvcFACRg,1321
|
|
43
45
|
endoreg_db/management/commands/load_unit_data.py,sha256=tcux-iL-ByT2ApgmHEkLllZSEA3AGMK5l-ze2Mtty1Y,1319
|
|
44
|
-
endoreg_db/management/commands/load_user_groups.py,sha256=
|
|
46
|
+
endoreg_db/management/commands/load_user_groups.py,sha256=D7SK2FvZEHoE4TIXNGCjDw5_12MH9bpGZvoS7eEv0Os,1031
|
|
45
47
|
endoreg_db/management/commands/register_ai_model.py,sha256=e5hgEyLS-E98XWzINcZ79mgtHvZltmbmAmLYaNrcfQs,2544
|
|
46
|
-
endoreg_db/migrations/0001_initial.py,sha256=
|
|
48
|
+
endoreg_db/migrations/0001_initial.py,sha256=dVrXpuzaaHkollKimmBl5WUw1ZTIx91AWXJ3wRr2mlI,33643
|
|
49
|
+
endoreg_db/migrations/0002_rawvideofile.py,sha256=EazXiUm61IJUxVi24pmzTFQJbfe-rzkfN5ZDULe-BLY,935
|
|
50
|
+
endoreg_db/migrations/0003_rawvideofile_frames_required.py,sha256=wrHZQs6QZjjjO4yfSVQPc_47ksO7z_TwT9drWPJy5uk,399
|
|
51
|
+
endoreg_db/migrations/0004_rename_hash_rawvideofile_video_hash.py,sha256=WbGYmSoKqV8T65xjpaGDnp2Nm-jKR_scv1XteksgJBA,385
|
|
52
|
+
endoreg_db/migrations/0005_ffmpegmeta_remove_videoimportmeta_center_and_more.py,sha256=wBMIiNt1NgJpptQeQTKkrYHC00Dus0oRKPjG6qLWkak,2658
|
|
53
|
+
endoreg_db/migrations/0006_rawvideofile_center_alter_videometa_processor.py,sha256=66-qNUshGzb4vdkH92MS4fxX8NJDTAcGv1FECKev0wU,809
|
|
54
|
+
endoreg_db/migrations/0007_rawvideofile_processor.py,sha256=Kef5DLJ3voCRL2NvNbHR3X2CjE3TyMOHskWFkfowzJg,547
|
|
55
|
+
endoreg_db/migrations/0008_rename_frames_required_rawvideofile_state_frames_required.py,sha256=12g3tWO_ENYbgUuWC6GDeXVtpyJ_anXEERZrJpUcK8A,401
|
|
56
|
+
endoreg_db/migrations/0009_sensitivemeta_rawvideofile_sensitive_meta.py,sha256=pKcFoYyM8HhAvbHenSHni-eGdJKSd3BWsTdQaTde_BA,1334
|
|
57
|
+
endoreg_db/migrations/0010_rename_endoscope_serial_number_sensitivemeta_endoscope_sn.py,sha256=7kStqnOp3Z-FoDYaAvFcOwfAaAS0mcCmF3hFoUO7WQQ,420
|
|
58
|
+
endoreg_db/migrations/0011_rawvideofile_state_sensitive_data_retrieved.py,sha256=_Mw-OybAZrKsm0zD8iPVkgDv7-BKVxzFP5e_Bqnj5DI,460
|
|
59
|
+
endoreg_db/migrations/0012_rawvideofile_prediction_dir_and_more.py,sha256=iIP5k6SoUFQR4zrN27BOC0MIuErlgTn9LNTfDq86C7I,3769
|
|
47
60
|
endoreg_db/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
61
|
endoreg_db/models/__init__.py,sha256=47Pcu9-CKjtAP8rYCzLsXJ67YN0jWZQuw2AbW6DaV0E,957
|
|
49
62
|
endoreg_db/models/ai_model/__init__.py,sha256=rh5npLRGml5iiRocx359gsaA82pGJTW7wdVAfnbZP6w,106
|
|
@@ -55,14 +68,19 @@ endoreg_db/models/annotation/__init__.py,sha256=jM8ISS4hWciC9cFUCMo6fSkmCGUptWkX
|
|
|
55
68
|
endoreg_db/models/annotation/binary_classification_annotation_task.py,sha256=CpvyDxLSJcoJyajtUsDGBt881SNSFcG8lvuQ01knMNM,3292
|
|
56
69
|
endoreg_db/models/annotation/image_classification.py,sha256=Og1tRo1QKBMztwfdbFryUWghnGdsTqQdepn9rOcmVMc,1387
|
|
57
70
|
endoreg_db/models/center.py,sha256=hDGN0ABWeCtfjPJfSObeCwXnxxpqVqWlKRrtRUijVXI,550
|
|
58
|
-
endoreg_db/models/data_file/__init__.py,sha256=
|
|
59
|
-
endoreg_db/models/data_file/base_classes/__init__.py,sha256=
|
|
71
|
+
endoreg_db/models/data_file/__init__.py,sha256=6_V9G8ghDxIVDwAj4pttEJNt8r74kNgsTc8in_ilY5s,288
|
|
72
|
+
endoreg_db/models/data_file/base_classes/__init__.py,sha256=uyjViKV7N3K264xapYAOCpQx-zSwdRAN_oguUWQlq10,84
|
|
60
73
|
endoreg_db/models/data_file/base_classes/abstract_frame.py,sha256=wUGkPCYoOESfiragEEy6oMeGpdS2nzha6g2lBiK7pcA,2214
|
|
61
|
-
endoreg_db/models/data_file/base_classes/abstract_video.py,sha256=
|
|
74
|
+
endoreg_db/models/data_file/base_classes/abstract_video.py,sha256=4OUgHWbHpESpSnZGSiA13nQwtvUDJweFwJPOuL8taAo,7406
|
|
62
75
|
endoreg_db/models/data_file/frame.py,sha256=-8O2yCfhTk2eMd3GB5PIPrO0i_oV6yk24UV-8Pvl2Ik,1935
|
|
76
|
+
endoreg_db/models/data_file/import_classes/__init__.py,sha256=-6HVcCu27bhfYDlLTui0HeYcWvsMQbyG8Q_2uS-VYnM,1136
|
|
77
|
+
endoreg_db/models/data_file/import_classes/processing_functions.py,sha256=qXv6MWItFtGMjWleBs8QXyQ2KhWbAaGa2wsuEVMRurA,8642
|
|
78
|
+
endoreg_db/models/data_file/import_classes/raw_video.py,sha256=r1Beml7dFxUdyesRKAvvIRKnfkffpS5jwcbLV-RitBI,12464
|
|
79
|
+
endoreg_db/models/data_file/metadata/__init__.py,sha256=m9Z1kQLK3PyrX9C8KQdf1dzyQ2rMe-_q8IgXyLY-MEY,5407
|
|
80
|
+
endoreg_db/models/data_file/metadata/sensitive_meta.py,sha256=cUwL0NdoCxj8tfd2psBvb4F2EbECrzXxXNrShfpagAM,602
|
|
63
81
|
endoreg_db/models/data_file/report_file.py,sha256=SsKwzhsaNhfOLCp7dg6GNBwPYdrqw7QHQtYzqeVgD18,3498
|
|
64
|
-
endoreg_db/models/data_file/video/__init__.py,sha256=
|
|
65
|
-
endoreg_db/models/data_file/video/import_meta.py,sha256=
|
|
82
|
+
endoreg_db/models/data_file/video/__init__.py,sha256=3UUMcrlIZBeVGkt5hOvjUr2-VSxOTFE1miPTcmHF4v0,98
|
|
83
|
+
endoreg_db/models/data_file/video/import_meta.py,sha256=NTRYIZI8TeNoPmJhE0ZFljGIOf5CS9LbFcdYO0p4-mA,1311
|
|
66
84
|
endoreg_db/models/data_file/video/video.py,sha256=lx3Iu7pdsy_oGlrvKKY8V06ZSNNWcwPYjP5DgCE2MKA,673
|
|
67
85
|
endoreg_db/models/data_file/video_segment.py,sha256=zQo-ZGrHTRmuV6Cdj8gCAauwevQPk2m5VGo2lx0DojY,4652
|
|
68
86
|
endoreg_db/models/examination/__init__.py,sha256=fnbGYzLc0kvQMF-nfDXyczy2x14ahgnuGGaU_r7Xv-Q,183
|
|
@@ -79,6 +97,7 @@ endoreg_db/models/label/label.py,sha256=NlAEa5T35kNrOF0t6YZCk8aSvC0IncbvkxrEilkz
|
|
|
79
97
|
endoreg_db/models/legacy_data/__init__.py,sha256=J0ewe30Y2qCxCUPktcFOm2WOEz2fQnwrgfZ93FRcnio,115
|
|
80
98
|
endoreg_db/models/legacy_data/image.py,sha256=mKQed6AIJL2XauPB2GevHX6NXaR8gphundI9_IC9Hpc,1622
|
|
81
99
|
endoreg_db/models/patient_examination/__init__.py,sha256=s3ybaIdnvZDLKPnP1UctMRbao69yZowjmqjSYpfg1MI,1674
|
|
100
|
+
endoreg_db/models/permissions/__init__.py,sha256=p4C61oKuwKwYcN0EZ6SqBZDW0GCRO2VS-12whhOZBuY,1766
|
|
82
101
|
endoreg_db/models/persons/__init__.py,sha256=hp24oTdoneaXSJUVCFoVi-yqaF8rGoMJ1nl7AZWzb54,183
|
|
83
102
|
endoreg_db/models/persons/examiner/__init__.py,sha256=-e0mxzCacT04tOAg2NA2aKg6EbKvzuZPQR4E2MqMEfI,92
|
|
84
103
|
endoreg_db/models/persons/examiner/examiner.py,sha256=-eaRF42Qpr3Tj_XqYhz60noRJ5ndvpoZH_X3wM23rVc,422
|
|
@@ -120,12 +139,16 @@ endoreg_db/serializers/report_file.py,sha256=dsO_-zwybdhq4BWGzD2rp6u1nloZgTMa3Ll
|
|
|
120
139
|
endoreg_db/serializers/video.py,sha256=mZ2CsSxVGUXB0FR-CLjIZpE86z1tmFPXBrHbgYY3jWY,831
|
|
121
140
|
endoreg_db/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
|
|
122
141
|
endoreg_db/utils/__init__.py,sha256=yj_2T_itUgmVW3nAqYLosTvga7J2eghkzbxLcEpYUl4,49
|
|
142
|
+
endoreg_db/utils/cropping.py,sha256=wMLo5sCFdZAEVBe3RbCH26eQjRe8q3th4K3ZKDd9fww,1143
|
|
123
143
|
endoreg_db/utils/dataloader.py,sha256=-XJJuvUpclvreNtTyuNqRhxG-p-xjM_oCsKyiHrUHd4,2999
|
|
144
|
+
endoreg_db/utils/file_operations.py,sha256=3mUY6jARIm927XK0nJoDO7fRp5quoSqPr95jDJERmr0,884
|
|
124
145
|
endoreg_db/utils/hashs.py,sha256=01PRVvGLuFCfJxNIxM-O5rfk6E7DelTLvu_--zEQVpU,509
|
|
125
|
-
endoreg_db/utils/
|
|
126
|
-
endoreg_db/utils/
|
|
146
|
+
endoreg_db/utils/legacy_ocr.py,sha256=c2EBP-9egUYyfsQ1n0QoZY2wKndWoKdEXrB-MQZ0Xn4,7633
|
|
147
|
+
endoreg_db/utils/ocr.py,sha256=jkdT1bl-LSCjZ2PvxlX1AG2TmhdMclayxUPrdZWs7UE,7322
|
|
148
|
+
endoreg_db/utils/uuid.py,sha256=T4HXqYtKwXFqE5kPyvlgWHyllBBF6LL6N48nl9TpwBk,53
|
|
149
|
+
endoreg_db/utils/video_metadata.py,sha256=HDyXxAeNQOK3cGzQ06xosmObzEnJBARuKjwz9vmmRIM,2613
|
|
127
150
|
endoreg_db/views.py,sha256=xc1IQHrsij7j33TUbo-_oewy3vs03pw_etpBWaMYJl0,63
|
|
128
|
-
endoreg_db-0.
|
|
129
|
-
endoreg_db-0.
|
|
130
|
-
endoreg_db-0.
|
|
131
|
-
endoreg_db-0.
|
|
151
|
+
endoreg_db-0.3.0.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
152
|
+
endoreg_db-0.3.0.dist-info/METADATA,sha256=lZ6efIFs3Mzsj7Vu84Rrng-U6bjEVAvIqHG-eSWH5To,926
|
|
153
|
+
endoreg_db-0.3.0.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
|
154
|
+
endoreg_db-0.3.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|