Enhanced object detection with confidence scores
(self, img)
| 38 | return preprocess_pipeline(img, target_size) |
| 39 | |
| 40 | def detect_objects(self, img): |
| 41 | """Enhanced object detection with confidence scores""" |
| 42 | from .object_detection import detect_objects |
| 43 | return detect_objects(img) |
| 44 | |
| 45 | def extract_features(self, img): |
| 46 | """Extract comprehensive feature set""" |
nothing calls this directly
no test coverage detected