검사장비의 검출율 (Detection Rate of Inspection Equipment)
1. 컨퓨전 매트릭스 (Confusion Matrix)
컨퓨전 매트릭스는 검사 결과와 실제 상태를 비교하여 TP, FP, FN, TN 네 가지 값으로 정리합니다.
A confusion matrix compares the predicted results with the actual conditions using four values: TP, FP, FN, and TN.
실제값 \\ 예측값 Actual \\ Predicted |
양성 (Positive) | 음성 (Negative) |
---|---|---|
양성 (Positive) | TP True Positive |
FN False Negative |
음성 (Negative) | FP False Positive |
TN True Negative |
2. 검출율 정의 (Definition of Detection Rate)
검출율은 실제 결함 중 장비가 정확히 검출한 비율입니다.
Detection rate is the ratio of actual defects correctly detected by the inspection equipment.
검출율 = TP / (TP + FN)
Detection Rate = TP / (TP + FN)
Detection Rate = TP / (TP + FN)
3. 예시 (Example)
전체 100개 제품 중 20개가 결함, 그 중 18개를 검출했다면:
Out of 100 products, 20 were defective, and 18 were detected:
- TP = 18
- FN = 2
검출율 = 18 / (18 + 2) = 0.9 (90%)
Detection Rate = 18 / (18 + 2) = 0.9 (90%)
Detection Rate = 18 / (18 + 2) = 0.9 (90%)
4. 주의사항 (Important Notes)
- 검출율이 높아도 오탐지(FP)가 많으면 불필요한 비용이 발생합니다.
- 정밀도(Precision)와 함께 해석하는 것이 중요합니다.
- Even with a high detection rate, too many false positives (FP) can increase unnecessary costs.
- It's important to consider detection rate together with precision.
정밀도 = TP / (TP + FP)
Precision = TP / (TP + FP)
Precision = TP / (TP + FP)