Add guided detection calibration runner
This commit is contained in:
@@ -249,12 +249,17 @@ function App(): JSX.Element {
|
||||
yoloPreflight,
|
||||
loadingYoloPreflight,
|
||||
yoloPreflightError,
|
||||
calibrationThresholdText,
|
||||
runningDetectionCalibration,
|
||||
detectionCalibrationRows,
|
||||
detectionCalibrationError,
|
||||
loadDetectionModels,
|
||||
loadYoloPreflight,
|
||||
loadDetectionRuns,
|
||||
loadDetectionResults,
|
||||
runDetection,
|
||||
runDetectionQa,
|
||||
runDetectionCalibration,
|
||||
resetDetectionForProject,
|
||||
setSelectedDetectionDatasetId,
|
||||
setSelectedDetectionModelId,
|
||||
@@ -265,6 +270,7 @@ function App(): JSX.Element {
|
||||
setDetectionClassFilter,
|
||||
setDetectionMinConfidenceFilter,
|
||||
setDetectionReferenceDatasetId,
|
||||
setCalibrationThresholdText,
|
||||
} = useDetectionWorkflow({
|
||||
selectedProjectId,
|
||||
rasterDatasets,
|
||||
@@ -951,6 +957,10 @@ function App(): JSX.Element {
|
||||
detectionRunError={detectionRunError}
|
||||
detectionRuns={detectionRuns}
|
||||
qualityChecks={qualityChecks}
|
||||
calibrationThresholdText={calibrationThresholdText}
|
||||
runningDetectionCalibration={runningDetectionCalibration}
|
||||
detectionCalibrationRows={detectionCalibrationRows}
|
||||
detectionCalibrationError={detectionCalibrationError}
|
||||
selectedDetectionRunId={selectedDetectionRunId}
|
||||
detectionItems={detectionItems}
|
||||
detectionClassFilter={detectionClassFilter}
|
||||
@@ -981,6 +991,8 @@ function App(): JSX.Element {
|
||||
onLoadResults={() => loadDetectionResults()}
|
||||
onSelectReferenceDataset={setDetectionReferenceDatasetId}
|
||||
onRunQa={runDetectionQa}
|
||||
onSetCalibrationThresholdText={setCalibrationThresholdText}
|
||||
onRunCalibration={runDetectionCalibration}
|
||||
/>
|
||||
|
||||
<SegmentationLab
|
||||
|
||||
Reference in New Issue
Block a user