endoreg-db 0.8.2.2__py3-none-any.whl → 0.8.2.4__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 endoreg-db might be problematic. Click here for more details.
- endoreg_db/helpers/default_objects.py +29 -48
- endoreg_db/management/commands/import_video.py +3 -5
- endoreg_db/models/media/video/video_file.py +44 -53
- endoreg_db/models/metadata/sensitive_meta.py +6 -6
- endoreg_db/services/ollama_api_docs.py +1528 -0
- endoreg_db/services/pseudonym_service.py +1 -1
- endoreg_db/services/video_import.py +363 -280
- endoreg_db/urls/media.py +5 -0
- endoreg_db/utils/paths.py +2 -2
- endoreg_db/views/__init__.py +2 -0
- endoreg_db/views/video/__init__.py +2 -1
- endoreg_db/views/video/correction.py +15 -2
- endoreg_db/views/video/video_correction.py +1 -1
- {endoreg_db-0.8.2.2.dist-info → endoreg_db-0.8.2.4.dist-info}/METADATA +2 -2
- {endoreg_db-0.8.2.2.dist-info → endoreg_db-0.8.2.4.dist-info}/RECORD +17 -16
- {endoreg_db-0.8.2.2.dist-info → endoreg_db-0.8.2.4.dist-info}/WHEEL +0 -0
- {endoreg_db-0.8.2.2.dist-info → endoreg_db-0.8.2.4.dist-info}/licenses/LICENSE +0 -0
endoreg_db/urls/media.py
CHANGED
|
@@ -30,6 +30,7 @@ from endoreg_db.views.video.correction import (
|
|
|
30
30
|
VideoAnalyzeView,
|
|
31
31
|
VideoApplyMaskView,
|
|
32
32
|
VideoRemoveFramesView,
|
|
33
|
+
VideoCorrectionView,
|
|
33
34
|
)
|
|
34
35
|
# ---------------------------------------------------------------------------------------
|
|
35
36
|
# ANNOTATION API ENDPOINTS
|
|
@@ -66,6 +67,10 @@ urlpatterns = [
|
|
|
66
67
|
# - History: Track all correction operations
|
|
67
68
|
# ---------------------------------------------------------------------------------------
|
|
68
69
|
|
|
70
|
+
# Video Correction API
|
|
71
|
+
# GET /api/media/videos/video-correction/{id}/ - Get video details for correction
|
|
72
|
+
path("media/videos/video-correction/<int:pk>", VideoCorrectionView.as_view(), name="video-correction"),
|
|
73
|
+
|
|
69
74
|
# Video Metadata API
|
|
70
75
|
# GET /api/media/videos/<int:pk>/metadata/
|
|
71
76
|
# Returns analysis results (sensitive frame count, ratio, frame IDs)
|
endoreg_db/utils/paths.py
CHANGED
|
@@ -11,9 +11,9 @@ logger = getLogger(__name__)
|
|
|
11
11
|
from pathlib import Path
|
|
12
12
|
from typing import Dict
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
import os
|
|
15
15
|
|
|
16
|
-
STORAGE_DIR =
|
|
16
|
+
STORAGE_DIR = Path(os.getenv("STORAGE_DIR", "storage"))
|
|
17
17
|
|
|
18
18
|
# Resolve STORAGE_DIR from env or default under BASE_DIR
|
|
19
19
|
#def _resolve_storage_dir() -> Path:
|
endoreg_db/views/__init__.py
CHANGED
|
@@ -150,6 +150,7 @@ from .video import (
|
|
|
150
150
|
rerun_segmentation,
|
|
151
151
|
video_timeline_view,
|
|
152
152
|
VideoExaminationViewSet,
|
|
153
|
+
VideoCorrectionView,
|
|
153
154
|
)
|
|
154
155
|
|
|
155
156
|
__all__ = [
|
|
@@ -269,6 +270,7 @@ __all__ = [
|
|
|
269
270
|
'VideoApplyMaskView',
|
|
270
271
|
'VideoRemoveFramesView',
|
|
271
272
|
'VideoReprocessView',
|
|
273
|
+
'VideoCorrectionView',
|
|
272
274
|
|
|
273
275
|
# Video Views (Existing)
|
|
274
276
|
'VideoReimportView',
|
|
@@ -5,6 +5,7 @@ from .correction import (
|
|
|
5
5
|
VideoApplyMaskView,
|
|
6
6
|
VideoRemoveFramesView,
|
|
7
7
|
VideoReprocessView,
|
|
8
|
+
VideoCorrectionView,
|
|
8
9
|
)
|
|
9
10
|
|
|
10
11
|
from ..media.video_media import VideoMediaView
|
|
@@ -42,7 +43,7 @@ __all__ = [
|
|
|
42
43
|
'VideoMediaView',
|
|
43
44
|
|
|
44
45
|
# TODO Phase 1.2+: Future views
|
|
45
|
-
|
|
46
|
+
'VideoCorrectionView',
|
|
46
47
|
# 'TaskStatusView',
|
|
47
48
|
# 'VideoDownloadProcessedView',
|
|
48
49
|
|
|
@@ -24,9 +24,24 @@ from endoreg_db.models import VideoFile, VideoMetadata, VideoProcessingHistory,
|
|
|
24
24
|
from endoreg_db.serializers import VideoMetadataSerializer, VideoProcessingHistorySerializer
|
|
25
25
|
from lx_anonymizer import FrameCleaner
|
|
26
26
|
|
|
27
|
+
from endoreg_db.models import VideoFile
|
|
28
|
+
from endoreg_db.serializers.video.video_file_detail import VideoDetailSerializer
|
|
29
|
+
from endoreg_db.utils.permissions import EnvironmentAwarePermission
|
|
30
|
+
|
|
27
31
|
logger = logging.getLogger(__name__)
|
|
28
32
|
|
|
29
33
|
|
|
34
|
+
class VideoCorrectionView(APIView):
|
|
35
|
+
"""
|
|
36
|
+
GET /api/video/media/video-correction/{id}/ - Get video details for correction
|
|
37
|
+
"""
|
|
38
|
+
permission_classes = [EnvironmentAwarePermission]
|
|
39
|
+
|
|
40
|
+
def get(self, request, pk):
|
|
41
|
+
video = get_object_or_404(VideoFile, pk=pk)
|
|
42
|
+
ser = VideoDetailSerializer(video, context={"request": request})
|
|
43
|
+
return Response(ser.data, status=status.HTTP_200_OK)
|
|
44
|
+
|
|
30
45
|
def update_segments_after_frame_removal(video: VideoFile, removed_frames: list) -> dict:
|
|
31
46
|
"""
|
|
32
47
|
Update LabelVideoSegment frame boundaries after frame removal.
|
|
@@ -240,8 +255,6 @@ class VideoAnalyzeView(APIView):
|
|
|
240
255
|
|
|
241
256
|
# Run analysis (uses existing FrameCleaner.analyze_video_sensitivity)
|
|
242
257
|
analysis_result = frame_cleaner.analyze_video_sensitivity(
|
|
243
|
-
video_path=video_path,
|
|
244
|
-
sample_interval=sample_interval
|
|
245
258
|
)
|
|
246
259
|
|
|
247
260
|
# Extract results
|
|
@@ -11,7 +11,7 @@ from rest_framework.views import APIView
|
|
|
11
11
|
|
|
12
12
|
class VideoCorrectionView(APIView):
|
|
13
13
|
"""
|
|
14
|
-
GET /api/video-correction/{id}/ - Get video details for correction
|
|
14
|
+
GET /api/video/media/video-correction/{id}/ - Get video details for correction
|
|
15
15
|
"""
|
|
16
16
|
permission_classes = [EnvironmentAwarePermission]
|
|
17
17
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: endoreg-db
|
|
3
|
-
Version: 0.8.2.
|
|
3
|
+
Version: 0.8.2.4
|
|
4
4
|
Summary: EndoReg Db Django App
|
|
5
5
|
Project-URL: Homepage, https://info.coloreg.de
|
|
6
6
|
Project-URL: Repository, https://github.com/wg-lux/endoreg-db
|
|
@@ -33,7 +33,7 @@ Requires-Dist: gunicorn>=23.0.0
|
|
|
33
33
|
Requires-Dist: icecream>=2.1.4
|
|
34
34
|
Requires-Dist: librosa==0.11.0
|
|
35
35
|
Requires-Dist: llvmlite>=0.44.0
|
|
36
|
-
Requires-Dist: lx-anonymizer[llm,ocr]>=0.8.2.
|
|
36
|
+
Requires-Dist: lx-anonymizer[llm,ocr]>=0.8.2.1
|
|
37
37
|
Requires-Dist: moviepy==2.2.1
|
|
38
38
|
Requires-Dist: mypy>=1.16.0
|
|
39
39
|
Requires-Dist: numpy>=2.2.3
|
|
@@ -240,7 +240,7 @@ endoreg_db/forms/settings/__init__.py,sha256=xKCYyRS1tEAWsm5C9OrG0Btqgitzuh_s31O
|
|
|
240
240
|
endoreg_db/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
241
241
|
endoreg_db/helpers/count_db.py,sha256=IkdgvDPM5xq7DgFn8Bp1rgpXOtmLzPfLpZy-5cFTEPg,1951
|
|
242
242
|
endoreg_db/helpers/data_loader.py,sha256=Kn5MyRRuul-bDtLtqg2gn4E2OKt1-5HkjjD3QcwWyPM,6324
|
|
243
|
-
endoreg_db/helpers/default_objects.py,sha256
|
|
243
|
+
endoreg_db/helpers/default_objects.py,sha256=-YnfKSIt7ixwM-7r8fjSnwdRUbeXjc7YbvnFfZo1QCQ,13309
|
|
244
244
|
endoreg_db/helpers/download_segmentation_model.py,sha256=VZ8BU7QkYpZkr8kpkUrnuvDBkirmLhuf2rHC2jRBILM,1053
|
|
245
245
|
endoreg_db/helpers/interact.py,sha256=EAiUP_5CXCauKcYYEoUo-Ot3FqE5n1Rm4UX6mkC06IY,174
|
|
246
246
|
endoreg_db/helpers/test_video_helper.py,sha256=4iIjH3Xe-5krhLffQLJO16XtxKJpM9wplpWUocmwWeg,4695
|
|
@@ -253,7 +253,7 @@ endoreg_db/management/commands/fix_missing_patient_data.py,sha256=5TPUTOQwI2fVh3
|
|
|
253
253
|
endoreg_db/management/commands/fix_video_paths.py,sha256=7LLwc38oX3B_tYWbLJA43Li_KBO3m5Lyw0CF6YqN5rU,7145
|
|
254
254
|
endoreg_db/management/commands/import_fallback_video.py,sha256=PhSBqyHevGgOZieZsj3NBfPJ656wqEkdCWrp2NSb538,9590
|
|
255
255
|
endoreg_db/management/commands/import_report.py,sha256=vFst-NeQdL-w62yoH4kDamq-2Hos5GW90vLTO2-hfYI,13168
|
|
256
|
-
endoreg_db/management/commands/import_video.py,sha256=
|
|
256
|
+
endoreg_db/management/commands/import_video.py,sha256=Y2L0LNd0tnx2dQcOonQQBwytb_6gnm2QhUZFhvLYbOs,17719
|
|
257
257
|
endoreg_db/management/commands/import_video_with_classification.py,sha256=ulZH5jvAWu_pJ1kI9B3hbIO1-p_BReY0zbIQDS_d9OI,14726
|
|
258
258
|
endoreg_db/management/commands/init_default_ai_model.py,sha256=98yBigGZ5gkA-b1LPcvzS5x2jAms3pX58fU-TEAcjKw,4669
|
|
259
259
|
endoreg_db/management/commands/load_ai_model_data.py,sha256=QDyWPjIC1ga13Ou67_mnE8HUGTAK0uF2LLQ12sE-95E,2747
|
|
@@ -389,7 +389,7 @@ endoreg_db/models/media/video/create_from_file.py,sha256=3n4bbzFteEOFDUuEikP0x-S
|
|
|
389
389
|
endoreg_db/models/media/video/pipe_1.py,sha256=hOII3BCiMpxgpDKpV5h52-O2XTqKlb4YArxuH2fWyck,9402
|
|
390
390
|
endoreg_db/models/media/video/pipe_2.py,sha256=DnMxW0uOqSsf7-0n9Rlvn7u89U4Jpkv7n6hFpQfUjkQ,4964
|
|
391
391
|
endoreg_db/models/media/video/refactor_plan.md,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
392
|
-
endoreg_db/models/media/video/video_file.py,sha256=
|
|
392
|
+
endoreg_db/models/media/video/video_file.py,sha256=fbqQo0RxeD5d-wHi1X7bHE-AyGQFrUg5fhdY1V8aU8M,26343
|
|
393
393
|
endoreg_db/models/media/video/video_file_ai.py,sha256=3ABea52FOF1qlrlxHdYhz_M3Kmqfzqtgq7M0prl-FAo,18819
|
|
394
394
|
endoreg_db/models/media/video/video_file_anonymize.py,sha256=pet1UfSsbSHJJZxq6gDPifAfBWpGyEpD1jEQuSQi0Gg,16027
|
|
395
395
|
endoreg_db/models/media/video/video_file_frames.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -465,7 +465,7 @@ endoreg_db/models/metadata/frame_ocr_result.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
|
|
|
465
465
|
endoreg_db/models/metadata/model_meta.py,sha256=aZH6Bz5Ss874Knvg1b3Kgq6gU8kVzPHXneunZJNF4yw,7111
|
|
466
466
|
endoreg_db/models/metadata/model_meta_logic.py,sha256=yiIWbxxykUp6VB_7imRqSXcO0RS5GuoYP83O48TyKws,8987
|
|
467
467
|
endoreg_db/models/metadata/pdf_meta.py,sha256=BTmpSgqxmPKi0apcNjyrZAS4AFKCPXVdBd6VBeyyv6E,3174
|
|
468
|
-
endoreg_db/models/metadata/sensitive_meta.py,sha256=
|
|
468
|
+
endoreg_db/models/metadata/sensitive_meta.py,sha256=eORPGblrcFoMPPzqnc6QMs4cV63RL6nWWnb5f4bTQXs,12930
|
|
469
469
|
endoreg_db/models/metadata/sensitive_meta_logic.py,sha256=Oh7ssZQEPfKGfRMF5nXKJpOIxXx-Xibd3rpOu-bQilk,29988
|
|
470
470
|
endoreg_db/models/metadata/video_meta.py,sha256=c6xWdLW3uNqJ5VPJXHCxXA3mbXw-b0uR54-TOS3qL2Q,14966
|
|
471
471
|
endoreg_db/models/metadata/video_prediction_logic.py,sha256=j5N82mHtiomeeIaf1HA65kT5d0htQfJmbI2bJb8mpxQ,7677
|
|
@@ -595,13 +595,14 @@ endoreg_db/services/examination_evaluation.py,sha256=jx9IL2PIoBzjiITzs00c1XucE7A
|
|
|
595
595
|
endoreg_db/services/finding_description_service.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
596
596
|
endoreg_db/services/lookup_service.py,sha256=A2t07-qlQhFEeNvOhez0GU0sxi7mnN0MIlhYzxj4W1U,10581
|
|
597
597
|
endoreg_db/services/lookup_store.py,sha256=8sB2HmJQrnzq5Vfqt-UdaJLHYMRZCxnui9BCCXscnJE,4856
|
|
598
|
+
endoreg_db/services/ollama_api_docs.py,sha256=6uyep2jqjrvx87By_teEW8BX0cm14Pt2b-Hht-rrelQ,47259
|
|
598
599
|
endoreg_db/services/pdf_import.py,sha256=_ll_Vng1SpI7mEKxNRYuNttVnehuJFpKjQGDB8OX7no,47133
|
|
599
600
|
endoreg_db/services/polling_coordinator.py,sha256=alnPB-kdMyxbYaxQN9fki9dKrwmAsY3s68bUHWDSNeI,10662
|
|
600
|
-
endoreg_db/services/pseudonym_service.py,sha256=
|
|
601
|
+
endoreg_db/services/pseudonym_service.py,sha256=sjqPw-SBwdNfWKxciMiy7RJokcII15YgrmZeNVI593k,3149
|
|
601
602
|
endoreg_db/services/requirements_object.py,sha256=290zf8AEbVtCoHhW4Jr7_ud-RvrqYmb1Nz9UBHtTnc0,6164
|
|
602
603
|
endoreg_db/services/segment_sync.py,sha256=YgHvIHkbW4mqCu0ACf3zjRSZnNfxWwt4gh5syUVXuE0,6400
|
|
603
604
|
endoreg_db/services/storage_aware_video_processor.py,sha256=kKFK64vXLeBSVkp1YJonU3gFDTeXZ8C4qb9QZZB99SE,13420
|
|
604
|
-
endoreg_db/services/video_import.py,sha256=
|
|
605
|
+
endoreg_db/services/video_import.py,sha256=t7adr-1r5zKk32Wlx9sg08DKV8DEhy-UAPhqnaVwIpQ,58681
|
|
605
606
|
endoreg_db/tasks/upload_tasks.py,sha256=OJq7DhNwcbWdXzHY8jz5c51BCVkPN5gSWOz-6Fx6W5M,7799
|
|
606
607
|
endoreg_db/tasks/video_ingest.py,sha256=kxFuYkHijINV0VabQKCFVpJRv6eCAw07tviONurDgg8,5265
|
|
607
608
|
endoreg_db/tasks/video_processing_tasks.py,sha256=KjcERRJ1TZzmavBpvr6OsvSTUViU0PR1ECWnEdzu2Js,14140
|
|
@@ -616,7 +617,7 @@ endoreg_db/urls/examination.py,sha256=IWNIR-hsWKD3nfL27EzMMazcZnOa_imjgk8RL0mql2
|
|
|
616
617
|
endoreg_db/urls/files.py,sha256=qfa8mPDNF9SW4z66B26SCtX7WHyoAo1muS1DR2QwST8,192
|
|
617
618
|
endoreg_db/urls/label_video_segment_validate.py,sha256=bGWacxIG4pHnGRbnHL_L91ShKWfKCn5X-YXsHGs6i-I,1044
|
|
618
619
|
endoreg_db/urls/label_video_segments.py,sha256=Hjc__HjohZnNE-oudqBc_uOIHqiSbQ_zpN4aHzGYRuE,1142
|
|
619
|
-
endoreg_db/urls/media.py,sha256=
|
|
620
|
+
endoreg_db/urls/media.py,sha256=wXu_bWlBCTBM1LlSjEsfq9sh5PcyKIJwh57UxyZV47A,11127
|
|
620
621
|
endoreg_db/urls/patient.py,sha256=VLKFbEiNgpfYLWFisbHidyoUnoQuEzj1U0SgZDpdPDM,588
|
|
621
622
|
endoreg_db/urls/report.py,sha256=9i3sOSofB7_PHGByr3DMghZFtcbjKf_U5PVSlxu9d4I,1917
|
|
622
623
|
endoreg_db/urls/requirements.py,sha256=5d-SD_7nsTA9YXlBeWdZuh-mXh26BkgH29fFBaTLjU8,455
|
|
@@ -640,7 +641,7 @@ endoreg_db/utils/mime_types.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
|
|
|
640
641
|
endoreg_db/utils/names.py,sha256=6OKOSmXeAKv5XVs86_IjlQ7klyF3zLkvVQz9Bl7Lf0o,2745
|
|
641
642
|
endoreg_db/utils/ocr.py,sha256=LvyABxX5OZhIeXw2pI6af8_xTj7nHQQoKGh5kNsrv7o,7136
|
|
642
643
|
endoreg_db/utils/parse_and_generate_yaml.py,sha256=k7y0fl9Jbb_LNryeJYd6tebklRlu1-P70dJ-4sxvEZs,1626
|
|
643
|
-
endoreg_db/utils/paths.py,sha256=
|
|
644
|
+
endoreg_db/utils/paths.py,sha256=pjX-FOSEbC8cE0P4m16O8IKS9rlSXBt_a-kRnnPPsnA,3426
|
|
644
645
|
endoreg_db/utils/permissions.py,sha256=IqxG9IqJBSZuxvT1ItVgGS8fMzkA2OLdDV6y8mKHSuo,5096
|
|
645
646
|
endoreg_db/utils/requirement_helpers.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
646
647
|
endoreg_db/utils/translation.py,sha256=77Xel12pAGo0rQ0NxB7nfejvMb0GBjEmhC3I7mcU91I,1256
|
|
@@ -679,7 +680,7 @@ endoreg_db/utils/video/names.py,sha256=m268j2Ynt94OYH6dYxeL8gzU5ODtFJD4OmzS7l0nB
|
|
|
679
680
|
endoreg_db/utils/video/streaming_processor.py,sha256=C-39DtxhSnL7B2cObFE5k829VLXl_Fl0KQFrFP368JA,13747
|
|
680
681
|
endoreg_db/utils/video/video_splitter.py,sha256=EZEnhNjaUva_9VxjcjScgRSrxsEuifhBjlwIMLX1qaA,3698
|
|
681
682
|
endoreg_db/views/Frames_NICE_and_PARIS_classifications_views.py,sha256=Lu1JuUD44B6yUAR9pcYLlQ-3g66VTktmzStuO0uGIj4,8752
|
|
682
|
-
endoreg_db/views/__init__.py,sha256=
|
|
683
|
+
endoreg_db/views/__init__.py,sha256=Jy92erUivibnqS-hEVkXdMFgIByc8qpzMnoPDL3nAFg,6941
|
|
683
684
|
endoreg_db/views/anonymization/__init__.py,sha256=s1_r9j0jPJsKHy1-isjFAlRF3Cw0o8EXxyUP7Xv1Kqo,698
|
|
684
685
|
endoreg_db/views/anonymization/media_management.py,sha256=ObiXjPa-KsSGs3IfmABE-TVzQZ2U6yJioFh64T7TtKY,16799
|
|
685
686
|
endoreg_db/views/anonymization/overview.py,sha256=fA4a4tZ4tbnWf3BUP6heAtqmHvinixUnDoI3dqPjTE0,8320
|
|
@@ -769,15 +770,15 @@ endoreg_db/views/requirement_lookup/lookup.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeR
|
|
|
769
770
|
endoreg_db/views/requirement_lookup/lookup_store.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
770
771
|
endoreg_db/views/stats/__init__.py,sha256=VHxrW0-RAWYki_89jWWJ0TrD7Nb0D3m-VjYV6bvP2k4,259
|
|
771
772
|
endoreg_db/views/stats/stats_views.py,sha256=v9ue1BKXdcApOgyolgNiT3hazx1xSVVvo26r91IozWY,8656
|
|
772
|
-
endoreg_db/views/video/__init__.py,sha256=
|
|
773
|
-
endoreg_db/views/video/correction.py,sha256=
|
|
773
|
+
endoreg_db/views/video/__init__.py,sha256=dm9BsgcB35kPq4Dn9rT6yoGuIkIHxYtVLEVGaAExOrA,1384
|
|
774
|
+
endoreg_db/views/video/correction.py,sha256=ioO52MU8bn7AvkVlU0D40EdxvogPOGtx30St5h9meDA,25656
|
|
774
775
|
endoreg_db/views/video/reimport.py,sha256=gSDBQ_Bam2xpJIj1SIMoLKnoBDBRgQ9V_TZdK9OICrI,8959
|
|
775
776
|
endoreg_db/views/video/segmentation.py,sha256=jzsLB95rYnHALSX2E_QNpAM9BpE1pbteOBxcAr_EjZo,11758
|
|
776
777
|
endoreg_db/views/video/task_status.py,sha256=PXaesTS4R7Uhu9WBaTL4lscpOschVqyR32zVDUuSbfw,1770
|
|
777
778
|
endoreg_db/views/video/timeline.py,sha256=6jxS2gZh3bYH0eZSc-uHQhJwRDwTL6Um3CvaVkTl_pY,1793
|
|
778
779
|
endoreg_db/views/video/video_analyze.py,sha256=vxQHnXRFH5Y6IaWEmEnE4Svkz6Vjw1O9NEJRafdfOe4,1907
|
|
779
780
|
endoreg_db/views/video/video_apply_mask.py,sha256=spGK4oXMAKhVotJuwZGndbKKws6klveKe35mbX7Rv6k,1630
|
|
780
|
-
endoreg_db/views/video/video_correction.py,sha256=
|
|
781
|
+
endoreg_db/views/video/video_correction.py,sha256=9mFICVvRSxp0WhGv7ib4d4M1hJs1iIhYmTl2OUIXQAg,767
|
|
781
782
|
endoreg_db/views/video/video_download_processed.py,sha256=tp5llYJKyQD0WSr4Fvqi-YrgBw2EPPe23E8F8SZbR4w,2000
|
|
782
783
|
endoreg_db/views/video/video_examination_viewset.py,sha256=77ujdUh8fzTC5Oe2fo4ESLBkwJ10rGhJLlQBpP1eMbQ,13663
|
|
783
784
|
endoreg_db/views/video/video_media.py,sha256=fvMQmSM1a-3rxpx_wK0wee9sRXV3EZz2bF8jLRAeaIQ,7022
|
|
@@ -786,7 +787,7 @@ endoreg_db/views/video/video_processing_history.py,sha256=mhFuS8RG5GV8E-lTtuD0qr
|
|
|
786
787
|
endoreg_db/views/video/video_remove_frames.py,sha256=2FmvNrSPM0fUXiBxINN6vBUUDCqDlBkNcGR3WsLDgKo,1696
|
|
787
788
|
endoreg_db/views/video/video_reprocess.py,sha256=IVlt_ASldNy5BywOecgkl1OT7l2SRijf78PUutMansA,1294
|
|
788
789
|
endoreg_db/views/video/video_stream.py,sha256=kLyuf0ORTmsLeYUQkTQ6iRYqlIQozWhMMR3Lhfe_trk,12148
|
|
789
|
-
endoreg_db-0.8.2.
|
|
790
|
-
endoreg_db-0.8.2.
|
|
791
|
-
endoreg_db-0.8.2.
|
|
792
|
-
endoreg_db-0.8.2.
|
|
790
|
+
endoreg_db-0.8.2.4.dist-info/METADATA,sha256=R_W40-C35-lrZiRGKehgXwebEUo7oHwY8zOgvAVfFcM,14772
|
|
791
|
+
endoreg_db-0.8.2.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
792
|
+
endoreg_db-0.8.2.4.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
793
|
+
endoreg_db-0.8.2.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|