| 1234567891011121314151617181920212223242526272829303132 |
- export { FisVisionModule } from './fis-vision.module';
- // Domain types
- export {
- InferenceService,
- InferenceFrame,
- DetectionResult,
- HistoryRecord,
- MPOB_CLASSES,
- HEALTH_ALERT_CLASSES,
- } from './services/inference.service';
- export {
- RemoteInferenceService,
- EdgeResultPayload,
- SaveExternalResultResponse,
- ImageRecord,
- } from './services/remote-inference.service';
- // State
- export { VisionState, VisionStateModel } from './store/vision.state';
- export {
- SubmitBatchAnalysis,
- ToggleBatchGroup,
- LoadGroupImages,
- LoadHistory,
- DeleteHistoryRecord,
- ClearAllHistory,
- } from './store/vision.actions';
- // Decorators
- export { VisionAnalyzerDecorator, EngineMode } from './decorators/vision-analyzer.decorator';
- export { VisionHistoryDecorator, BatchGroup } from './decorators/vision-history.decorator';
|