FLOOR2MODEL / src /detection /__init__.py
Harisri
Purged CV model deployment
fc895f4
raw
history blame contribute delete
487 Bytes
"""
Detection refinement module for improving door and window detection.
This module provides geometry-based refinement of YOLO segmentation results,
using wall structure analysis and computer vision techniques to improve
detection accuracy for doors and windows in floor plans.
"""
from .refinement import (
RefinementConfig,
DetectionRefiner,
refine_detections,
)
__all__ = [
'RefinementConfig',
'DetectionRefiner',
'refine_detections',
]