MultiTaskYOLOView constructor
const
MultiTaskYOLOView({
- Key? key,
- required String detectModelPath,
- required String classifyModelPath,
- String? segmentModelPath,
- MultiTaskYOLOController? controller,
- MultiTaskStreamCallback? onStreamingData,
- String lensFacing = 'back',
- bool useGpu = true,
- double confidenceThreshold = 0.25,
- double iouThreshold = 0.7,
- double? detectConfidenceThreshold,
- double? detectIouThreshold,
- double? classifyConfidenceThreshold,
- double? segmentConfidenceThreshold,
- double? segmentIouThreshold,
Implementation
const MultiTaskYOLOView({
super.key,
required this.detectModelPath,
required this.classifyModelPath,
this.segmentModelPath,
this.controller,
this.onStreamingData,
this.lensFacing = 'back',
this.useGpu = true,
this.confidenceThreshold = 0.25,
this.iouThreshold = 0.7,
this.detectConfidenceThreshold,
this.detectIouThreshold,
this.classifyConfidenceThreshold,
this.segmentConfidenceThreshold,
this.segmentIouThreshold,
});