Enum DetectionArchitecture
Detection model architectures.
public enum DetectionArchitecture
Fields
CascadeRCNN = 8Cascade R-CNN - Multi-stage R-CNN with progressive refinement.
DETR = 4DETR - DEtection TRansformer, end-to-end object detection.
DINO = 5DINO - DETR with Improved deNoising anchor boxes.
FasterRCNN = 7Faster R-CNN - Two-stage detector with region proposals.
RTDETR = 6RT-DETR - Real-Time DETR for efficient transformer detection.
YOLOv10 = 2YOLOv10 - End-to-end real-time detection with NMS-free training.
YOLOv11 = 3YOLOv11 - Latest YOLO with enhanced feature extraction.
YOLOv8 = 0YOLOv8 - Fast and accurate single-stage detector.
YOLOv9 = 1YOLOv9 - Improved YOLOv8 with programmable gradient information.