File size: 487 Bytes
fc895f4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""

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',
]