Skip to content

API Reference

This section provides API for the core classes and models used in AutoTomeQC.

AutoTome Service

The High-Level Controller. It explicitly handles the 3 main events: Start, Stop, Process.

Source code in src/autotomeqc/core/autotome_service.py
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
class AutoTomeService:
    """
    The High-Level Controller. 
    It explicitly handles the 3 main events: Start, Stop, Process.
    """
    def __init__(self):
        self.pipeline = None
        self.running = False
        self.log = logging.getLogger(self.__class__.__name__)

    def start(self) -> bool:
        """
        Returns: True if pipeline started successfully, False if already running or failed.
        """
        if self.running:
            self.log.warning("Service is already running.")
            return False
        self.log.info(">>> EVENT: START")
        try:
            self.pipeline = AutoTomePipeline()
            success = self.pipeline.start()
            if success:
                self.running = True
                self.log.info("Service Initialized & Ready.")
                return True
            else:
                self.log.error("Pipeline failed to start.")
                self.pipeline = None
                return False
        except Exception as e:
            self.log.error(f"Critical error starting service: {e}")
            self.running = False
            return False

    def stop(self) -> bool:
        """
        Returns: True if stopped successfully, False if it wasn't running.
        """
        if not self.running:
            self.log.warning("Cannot stop: Service is not running.")
            return False

        self.log.info(">>> EVENT: STOP")
        try:
            if self.pipeline:
                self.pipeline.stop()
            self.running = False
            self.pipeline = None
            self.log.info("Service Shutdown Complete.")
            return True
        except Exception as e:
            self.log.error(f"Error during shutdown: {e}")
            return False

    def process(self, img_path: Optional[str] = None, frame: Optional[np.ndarray] = None) -> Future:
        if not self.running:
            raise RuntimeError("Service is stopped")

        # The Service just hands it off to the Pipeline
        return self.pipeline.process(img_path=img_path, frame=frame)

start()

Returns: True if pipeline started successfully, False if already running or failed.

Source code in src/autotomeqc/core/autotome_service.py
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
def start(self) -> bool:
    """
    Returns: True if pipeline started successfully, False if already running or failed.
    """
    if self.running:
        self.log.warning("Service is already running.")
        return False
    self.log.info(">>> EVENT: START")
    try:
        self.pipeline = AutoTomePipeline()
        success = self.pipeline.start()
        if success:
            self.running = True
            self.log.info("Service Initialized & Ready.")
            return True
        else:
            self.log.error("Pipeline failed to start.")
            self.pipeline = None
            return False
    except Exception as e:
        self.log.error(f"Critical error starting service: {e}")
        self.running = False
        return False

stop()

Returns: True if stopped successfully, False if it wasn't running.

Source code in src/autotomeqc/core/autotome_service.py
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
def stop(self) -> bool:
    """
    Returns: True if stopped successfully, False if it wasn't running.
    """
    if not self.running:
        self.log.warning("Cannot stop: Service is not running.")
        return False

    self.log.info(">>> EVENT: STOP")
    try:
        if self.pipeline:
            self.pipeline.stop()
        self.running = False
        self.pipeline = None
        self.log.info("Service Shutdown Complete.")
        return True
    except Exception as e:
        self.log.error(f"Error during shutdown: {e}")
        return False

Pipeline Orchestrator

Source code in src/autotomeqc/core/pipeline.py
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
class AutoTomePipeline:
    DEFAULT_MAX_QUEUE_SIZE = 20   # 20 frames 640x640 RGB is ~24MB

    def __init__(self):
        self.log = logging.getLogger(self.__class__.__name__)
        self.output_path = Path(CONFIG.qc.output_dir)
        self.save_segmented_img = CONFIG.qc.save_segmented_images
        self.save_input_img = CONFIG.qc.save_input_images

        self.input_queue = deque(maxlen=self.DEFAULT_MAX_QUEUE_SIZE)
        self.queue_lock = threading.Lock()
        self.worker_thread = None
        self.is_running = False

        # Preprocessing - Segmentation via YOLO
        self.segmenter = YoloSegmentation(config=CONFIG.qc.yolo)

        self.log.info("Initializing QC Models...")
        self.qc_modules = {
            "coverage": SectionCoverageQC(CONFIG.qc.section_coverage),
            "knife_mark": KnifeMarksQC(CONFIG.qc.knife_mark),
            "thickness_consistency": ThicknessConsistencyQC(CONFIG.qc.thickness_consistency),
            "thickness": ThicknessQC(CONFIG.qc.thickness),
            "shape": ShapeQC(CONFIG.qc.shape, output_dir=self.output_path),
        }

    def start(self):
        if self.is_running:
            self.log.warning("Pipeline.start() called, but pipeline is already running.")
            return True

        self.log.info("Starting Pipeline...")
        try:
            is_ready = self.segmenter.ready.wait(timeout=60.0)  # Wait
            if not is_ready or self.segmenter.model is None:
                self.log.error("Pipeline Start Failed: YOLO Model initialization timed out or model is None.")
                return False

            self.is_running = True
            self.worker_thread = threading.Thread(target=self._worker_loop, daemon=True)
            self.worker_thread.start()

            self.log.info("Pipeline started successfully.")
            return True
        except Exception as e:
            self.log.error(f"Critical error starting pipeline: {e}")
            return False

    def stop(self):
        self.log.info("Stopping Pipeline...")
        self.is_running = False
        if self.worker_thread is not None:
            self.worker_thread.join(timeout=5.0)
            self.worker_thread = None

    def process(self, img_path: Optional[str] = None, frame: Optional[np.ndarray] = None) -> Future:
        """Entry point for processing a single file."""
        filename = "Unknown"
        future_ticket: Future[Dict[str, Any]] = Future()
        ts = time.time()
        timestamp_str = datetime.fromtimestamp(ts).strftime("%Y-%m-%d %H:%M:%S")

        try:
            # Validate Input via Pydantic
            try:
                valid_input = ProcessInput(img_path=img_path, frame=frame)
            except ValidationError:
                msg = "Ambiguous input: Provide either 'img_path' OR 'frame', not both/neither."
                self._handle_pipeline_failure(None, [], filename, timestamp_str, msg, future_ticket)
                return future_ticket

            # 2. Handle Image Loading/Naming
            if valid_input.img_path is not None:
                path_obj = Path(valid_input.img_path)
                filename = path_obj.stem
                if not path_obj.exists():
                    self._handle_pipeline_failure(None, [], filename, timestamp_str, f"File not found: {valid_input.img_path}", future_ticket)
                    return future_ticket
                frame = cv2.imread(valid_input.img_path)
                if frame is None:
                    self._handle_pipeline_failure(None, [], filename, timestamp_str, f"File load failed: {valid_input.img_path}", future_ticket)
                    return future_ticket
            else:
                frame = valid_input.frame
                ts_dt = datetime.fromtimestamp(ts)
                filename = f"{ts_dt:%Y%m%d_%H%M%S}_{ts_dt.microsecond // 1000:03d}"

            # 3. Package and Enqueue Task
            frame = self.segmenter.resize_frame(frame)
            task = PipelineTask(
                frame=frame,
                filename=filename,
                timestamp=timestamp_str,
                start_ts=ts,
                future=future_ticket
            )
            with self.queue_lock:
                try:
                    # insert() raises IndexError if the deque is full
                    self.input_queue.insert(len(self.input_queue), task)
                    self.log.info(f"[{filename}] Task enqueued. Size: {len(self.input_queue)}")
                except IndexError:
                    # Catch the error, make room by dropping the oldest task
                    dropped_task = self.input_queue.popleft()
                    # Set result on the dropped task's future ticket
                    self._handle_pipeline_failure(
                        frame=None,
                        detections=[],
                        filename=dropped_task.filename,
                        timestamp=dropped_task.timestamp,
                        reason="Dropped: Buffer full (System Overloaded)",
                        future_ticket=dropped_task.future
                    )
                    # NOW add the new task since there is room
                    self.input_queue.append(task)
                    self.log.info(f"[{filename}] Task enqueued. Size: {len(self.input_queue)}")

            return future_ticket  # Return the ticket so the user can await result

        except Exception as e:
            self._handle_pipeline_failure(None, [], filename, timestamp_str, f"Process Error: {str(e)}", future_ticket)
            return future_ticket

    def _worker_loop(self):
        """The 'Heavy Lifter': Consumes tasks and runs AI + QC logic."""
        self.log.info("Worker thread active.")
        while self.is_running:
            task = None
            try:
                with self.queue_lock:
                    if self.input_queue:
                        task = self.input_queue.popleft()  # Retrieve oldest task
                if task is None:
                    time.sleep(0.01) # 10ms sleep to save CPU cycles
                    continue

                try:
                    frame = task.frame
                    filename = task.filename
                    future_ticket = task.future
                    timestamp = task.timestamp
                    start_ts = task.start_ts
                    if frame is None or future_ticket is None:
                        raise KeyError("Task missing 'frame' or 'future' ticket.")

                    # Execute YOLO
                    detections = self.segmenter.process_frame(frame)

                    # Validate Detections
                    is_valid, error_reason, detections = validate_detections(detections)
                    if not is_valid:
                        self._handle_pipeline_failure(
                            frame, detections, filename, timestamp, error_reason, future_ticket
                        )
                    else:
                        # Pre-processing for QC (Segmentation & Cropping)
                        detections = cropped_segmented(frame, detections)
                        # Execution for QC Algorithms
                        self._handle_pipeline_valid_input(
                            frame, detections, filename, timestamp, start_ts,
                            validation_msg=error_reason,
                            future_ticket=future_ticket,
                        )
                except Exception as e:
                    self.log.error(f"Worker Error on {filename}: {e}")
                    self._handle_pipeline_failure(frame, [], filename, timestamp, str(e), future_ticket)
            except Exception as e:
                self.log.error(f"Worker Loop Error: {e}")

    def _handle_pipeline_failure(
        self,
        frame: Optional[np.ndarray],
        detections: list[Detection],
        filename: str,
        timestamp: str,
        reason: str,
        future_ticket: Future
    ) -> None:
        """Standardized reporting for any rejection or failure in the pipeline."""
        self.log.warning(f"[{filename}] Pipeline Rejected: {reason}")
        result = PipelineResult(
            filename=filename,
            timestamp=timestamp,
            qc_summary="FAIL",
            fail_reason=reason,
            sections=[]
        )
        output = result.model_dump(exclude_none=True)
        save_json_results(output, self.output_path / f"{filename}_qc.json")
        if self.save_input_img and frame is not None:
            save_debug_image(frame, self.output_path / f"{filename}_input.jpg")
        if future_ticket and not future_ticket.done():
            future_ticket.set_result(output)

    def _handle_pipeline_valid_input(
            self,
            frame: np.ndarray,
            detections: list[Detection],
            filename: str,
            timestamp: str,
            start_ts: float,
            future_ticket: Future,
            validation_msg: str = "N/A"
        ) -> None:
        """
        Executes QC checks on all sections and compiles the final result using Pydantic models.
        """
        # Filter out valid sections
        sections = [d for d in detections if d.class_name == 'section' and d.section_image is not None]
        sections_list = []
        all_qc_passed = True

        # Iterate through each section and run QC
        for i, section_obj in enumerate(sections):
            target_img = section_obj.section_image
            if target_img is None:
                continue

            # Run the QC checks (Returns Dict[str, dict])
            qc_results = self._run_all_checks(target_img)

            # Determine if this specific section passed
            section_passed = all(obj.pass_status for obj in qc_results.values())
            if not section_passed:
                all_qc_passed = False

            # Instantiate SectionResult model
            sections_list.append(SectionResult(
                qc_result="PASS" if section_passed else "FAIL",
                segmentation_conf=round(section_obj.confidence, 2),
                area_in_pixels=section_obj.area_in_pixels,
                overlap_ratio=round(section_obj.overlap_ratio, 2),
                criteria=qc_results
            ))

        # Final global summary report Logic
        multiple_detected = len(sections) > 1
        processing_time = round(time.time() - start_ts, 4)
        global_pass = all_qc_passed and not multiple_detected
        if multiple_detected:
            current_fail_reason = validation_msg
        elif not all_qc_passed:
            current_fail_reason = "Section failed QC criteria"
        else:
            current_fail_reason = "N/A"

        # Construct Final PipelineResult Model
        result_obj = PipelineResult(
            filename=filename,
            timestamp=timestamp,
            qc_summary="PASS" if global_pass else "FAIL",
            fail_reason=current_fail_reason,
            processing_time_sec=processing_time,
            sections=sections_list
        )
        output = result_obj.model_dump(exclude_none=True)

        # IO Operations
        save_json_results(output, self.output_path / f"{filename}_qc.json")
        if self.save_input_img:
            save_debug_image(frame, self.output_path / f"{filename}_input.jpg")
        if self.save_segmented_img:
            for i, section_obj in enumerate(sections):
                img_to_save = section_obj.section_image
                save_debug_image(img_to_save, self.output_path / f"{filename}_section_{i}.jpg")
        # Resolve the Future
        if future_ticket and not future_ticket.done():
            future_ticket.set_result(output)

    def _run_all_checks(self, qc_image: np.ndarray) -> Dict[str, QCCriteria]:
        results = {}
        for name, module in self.qc_modules.items():
            try:
                # Execution in the worker thread
                raw_res = module.check(qc_image)
                results[name] = QCCriteria(**raw_res)
            except Exception as e:
                self.log.error(f"QC Check {name} failed: {e}")
                results[name] = QCCriteria(pass_status=False, label="Error", message=str(e))
        return results

process(img_path=None, frame=None)

Entry point for processing a single file.

Source code in src/autotomeqc/core/pipeline.py
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
def process(self, img_path: Optional[str] = None, frame: Optional[np.ndarray] = None) -> Future:
    """Entry point for processing a single file."""
    filename = "Unknown"
    future_ticket: Future[Dict[str, Any]] = Future()
    ts = time.time()
    timestamp_str = datetime.fromtimestamp(ts).strftime("%Y-%m-%d %H:%M:%S")

    try:
        # Validate Input via Pydantic
        try:
            valid_input = ProcessInput(img_path=img_path, frame=frame)
        except ValidationError:
            msg = "Ambiguous input: Provide either 'img_path' OR 'frame', not both/neither."
            self._handle_pipeline_failure(None, [], filename, timestamp_str, msg, future_ticket)
            return future_ticket

        # 2. Handle Image Loading/Naming
        if valid_input.img_path is not None:
            path_obj = Path(valid_input.img_path)
            filename = path_obj.stem
            if not path_obj.exists():
                self._handle_pipeline_failure(None, [], filename, timestamp_str, f"File not found: {valid_input.img_path}", future_ticket)
                return future_ticket
            frame = cv2.imread(valid_input.img_path)
            if frame is None:
                self._handle_pipeline_failure(None, [], filename, timestamp_str, f"File load failed: {valid_input.img_path}", future_ticket)
                return future_ticket
        else:
            frame = valid_input.frame
            ts_dt = datetime.fromtimestamp(ts)
            filename = f"{ts_dt:%Y%m%d_%H%M%S}_{ts_dt.microsecond // 1000:03d}"

        # 3. Package and Enqueue Task
        frame = self.segmenter.resize_frame(frame)
        task = PipelineTask(
            frame=frame,
            filename=filename,
            timestamp=timestamp_str,
            start_ts=ts,
            future=future_ticket
        )
        with self.queue_lock:
            try:
                # insert() raises IndexError if the deque is full
                self.input_queue.insert(len(self.input_queue), task)
                self.log.info(f"[{filename}] Task enqueued. Size: {len(self.input_queue)}")
            except IndexError:
                # Catch the error, make room by dropping the oldest task
                dropped_task = self.input_queue.popleft()
                # Set result on the dropped task's future ticket
                self._handle_pipeline_failure(
                    frame=None,
                    detections=[],
                    filename=dropped_task.filename,
                    timestamp=dropped_task.timestamp,
                    reason="Dropped: Buffer full (System Overloaded)",
                    future_ticket=dropped_task.future
                )
                # NOW add the new task since there is room
                self.input_queue.append(task)
                self.log.info(f"[{filename}] Task enqueued. Size: {len(self.input_queue)}")

        return future_ticket  # Return the ticket so the user can await result

    except Exception as e:
        self._handle_pipeline_failure(None, [], filename, timestamp_str, f"Process Error: {str(e)}", future_ticket)
        return future_ticket

Core Models

Bases: BaseModel

Source code in src/autotomeqc/core/models.py
33
34
35
36
37
38
39
class PipelineResult(BaseModel):
    filename: str
    timestamp: str
    qc_summary: str
    fail_reason: str = "N/A"
    processing_time_sec: Optional[float] = None
    sections: List[SectionResult] = Field(default_factory=list)

Bases: BaseModel

Source code in src/autotomeqc/core/models.py
14
15
16
17
18
19
class SectionResult(BaseModel):
    qc_result: str  # "PASS" or "FAIL"
    segmentation_conf: float
    area_in_pixels: int
    overlap_ratio: float
    criteria: Dict[str, QCCriteria]

Bases: BaseModel

Source code in src/autotomeqc/core/models.py
50
51
52
53
54
55
56
57
58
59
class ProcessInput(BaseModel):
    model_config = ConfigDict(arbitrary_types_allowed=True)
    img_path: Optional[str] = None
    frame: Optional[np.ndarray] = None

    @model_validator(mode='after')
    def check_exclusive_input(self) -> 'ProcessInput':
        if (self.img_path is None) == (self.frame is None):
            raise ValueError("Ambiguous input: Provide either 'img_path' OR 'frame', not both/neither.")
        return self