Spaces:
Runtime error
Runtime error
Commit
·
c4b1d99
1
Parent(s):
c117b57
Fixed Didson
Browse files- app.py +0 -2
- backend/inference.py +0 -1
- lib/fish_eye/pyARIS.py +0 -1
app.py
CHANGED
@@ -15,8 +15,6 @@ from frontend.result_ui import Result_Gradio, update_result, create_metadata_tab
|
|
15 |
from frontend.annotation_handler import load_annotation, prepare_annotation, js_store_frame_info, annotation_css
|
16 |
from frontend.state_handler import reset_state
|
17 |
|
18 |
-
import lib.fish_eye.pyARIS as pyARIS
|
19 |
-
|
20 |
|
21 |
|
22 |
#Initialize State & Result
|
|
|
15 |
from frontend.annotation_handler import load_annotation, prepare_annotation, js_store_frame_info, annotation_css
|
16 |
from frontend.state_handler import reset_state
|
17 |
|
|
|
|
|
18 |
|
19 |
|
20 |
#Initialize State & Result
|
backend/inference.py
CHANGED
@@ -68,7 +68,6 @@ def do_full_tracking(inference, image_shapes, image_meter_width, image_meter_hei
|
|
68 |
|
69 |
# Find low confidence detections
|
70 |
low_outputs = do_suppression(inference, image_meter_width, width, conf_thres=config.byte_low_conf, iou_thres=config.nms_iou, max_length=config.max_length, gp=gp, verbose=verbose)
|
71 |
-
print(low_outputs)
|
72 |
low_preds, real_width, real_height = format_predictions(image_shapes, low_outputs, width, height, gp=gp, verbose=verbose)
|
73 |
|
74 |
# Find high confidence detections
|
|
|
68 |
|
69 |
# Find low confidence detections
|
70 |
low_outputs = do_suppression(inference, image_meter_width, width, conf_thres=config.byte_low_conf, iou_thres=config.nms_iou, max_length=config.max_length, gp=gp, verbose=verbose)
|
|
|
71 |
low_preds, real_width, real_height = format_predictions(image_shapes, low_outputs, width, height, gp=gp, verbose=verbose)
|
72 |
|
73 |
# Find high confidence detections
|
lib/fish_eye/pyARIS.py
CHANGED
@@ -600,7 +600,6 @@ def FrameRead(ARIS_data, frameIndex, frameBuffer = None):
|
|
600 |
|
601 |
|
602 |
#Add the frame data
|
603 |
-
print(pingmode)
|
604 |
if pingmode in [1,2]:
|
605 |
ARIS_Frame.BeamCount = 48
|
606 |
if pingmode in [3,4,5]:
|
|
|
600 |
|
601 |
|
602 |
#Add the frame data
|
|
|
603 |
if pingmode in [1,2]:
|
604 |
ARIS_Frame.BeamCount = 48
|
605 |
if pingmode in [3,4,5]:
|