mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-03-19 14:48:22 +03:00
18 lines
505 B
TypeScript
18 lines
505 B
TypeScript
|
|
// License Plate Recognition Section Component
|
||
|
|
// Camera-level LPR settings
|
||
|
|
|
||
|
|
import { createConfigSection } from "./BaseSection";
|
||
|
|
|
||
|
|
export const LprSection = createConfigSection({
|
||
|
|
sectionPath: "lpr",
|
||
|
|
i18nNamespace: "config/lpr",
|
||
|
|
defaultConfig: {
|
||
|
|
fieldOrder: ["enabled", "expire_time", "min_area", "enhancement"],
|
||
|
|
hiddenFields: [],
|
||
|
|
advancedFields: ["expire_time", "min_area", "enhancement"],
|
||
|
|
overrideFields: ["enabled", "min_area", "enhancement"],
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
export default LprSection;
|