We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86ca130 commit 4c3c49cCopy full SHA for 4c3c49c
examples/official/dcv/main.py
@@ -1491,15 +1491,6 @@ def create_camera_control_panel(self):
1491
self.camera_beep_check = QCheckBox("Beep on detection")
1492
detection_layout.addWidget(self.camera_beep_check)
1493
1494
- # Detection frequency
1495
- freq_layout = QHBoxLayout()
1496
- freq_layout.addWidget(QLabel("Detection frequency:"))
1497
- self.detection_freq_combo = QComboBox()
1498
- self.detection_freq_combo.addItems(["High (30Hz)", "Medium (10Hz)", "Low (5Hz)"])
1499
- self.detection_freq_combo.setCurrentIndex(1) # Default to Medium
1500
- freq_layout.addWidget(self.detection_freq_combo)
1501
- detection_layout.addLayout(freq_layout)
1502
-
1503
layout.addWidget(detection_group)
1504
1505
# Camera Actions Group
0 commit comments