mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-03-10 10:33:11 +03:00
18 lines
474 B
TypeScript
18 lines
474 B
TypeScript
// Face Recognition Section Component
|
|
// Camera-level face recognition settings
|
|
|
|
import { createConfigSection } from "./BaseSection";
|
|
|
|
export const FaceRecognitionSection = createConfigSection({
|
|
sectionPath: "face_recognition",
|
|
i18nNamespace: "config/global",
|
|
defaultConfig: {
|
|
fieldOrder: ["enabled", "min_area"],
|
|
hiddenFields: [],
|
|
advancedFields: ["min_area"],
|
|
overrideFields: ["enabled", "min_area"],
|
|
},
|
|
});
|
|
|
|
export default FaceRecognitionSection;
|