mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-03-11 10:57:38 +03:00
19 lines
390 B
TypeScript
19 lines
390 B
TypeScript
import type { SectionConfigOverrides } from "./types";
|
|
|
|
const detectors: SectionConfigOverrides = {
|
|
base: {
|
|
sectionDocs: "/configuration/object_detectors",
|
|
restartRequired: [],
|
|
fieldOrder: [],
|
|
advancedFields: [],
|
|
hiddenFields: [
|
|
"*.model.labelmap",
|
|
"*.model.attributes_map",
|
|
"*.model",
|
|
"*.model_path",
|
|
],
|
|
},
|
|
};
|
|
|
|
export default detectors;
|