-
Notifications
You must be signed in to change notification settings - Fork 0
/
dental_analyzer.py
239 lines (193 loc) · 10.6 KB
/
dental_analyzer.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
import cv2
import numpy as np
class DentalAnalyzer:
def __init__(self):
self.conditions = {
'cavity': 'تسوس',
'gum_inflammation': 'التهاب لثة',
'plaque': 'تراكم البلاك',
'erosion': 'تآكل المينا',
'sensitivity': 'حساسية الأسنان',
'overall_health': 'الصحة العامة'
}
self.symptom_conditions = {
'ألم': ['cavity', 'sensitivity'],
'نزيف': ['gum_inflammation'],
'حساسية': ['sensitivity', 'erosion'],
'تورم': ['gum_inflammation'],
'رائحة': ['plaque', 'gum_inflammation'],
'تغير لون': ['cavity', 'erosion']
}
def analyze_image_and_symptoms(self, image, patient):
# تحليل الصورة
image_analysis = self.analyze_image(image)
# تعديل النتائج بناءً على الأعراض والتاريخ المرضي
adjusted_scores = self._adjust_scores_based_on_patient(
image_analysis['scores'],
patient
)
# توليد توصيات محدثة
recommendations = self._generate_recommendations(
adjusted_scores,
patient
)
return {
'scores': adjusted_scores,
'recommendations': recommendations
}
def analyze_image(self, image):
try:
# تحويل الصورة إلى تدرج الرمادي
if len(image.shape) == 3:
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
else:
gray = image
# تحسين جودة الصورة
gray = cv2.equalizeHist(gray)
# تطبيق مرشح لتقليل الضوضاء
gray = cv2.GaussianBlur(gray, (5, 5), 0)
# حساب الدرجات لكل حالة
scores = {}
# تحليل التسوس
_, thresh = cv2.threshold(gray, 127, 255, cv2.THRESH_BINARY | cv2.THRESH_OTSU)
contours, _ = cv2.findContours(thresh, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
cavity_score = min(len(contours) / 100.0, 1.0)
scores['cavity'] = cavity_score
# تحليل التهاب اللثة
edges = cv2.Canny(gray, 100, 200)
inflammation_score = np.sum(edges > 0) / (gray.shape[0] * gray.shape[1])
scores['gum_inflammation'] = min(inflammation_score * 2, 1.0)
# تحليل تراكم البلاك
blur = cv2.GaussianBlur(gray, (15, 15), 0)
plaque_score = np.std(gray - blur) / 128.0
scores['plaque'] = min(plaque_score * 2, 1.0)
# تحليل تآكل المينا
laplacian = cv2.Laplacian(gray, cv2.CV_64F)
erosion_score = np.std(laplacian) / 128.0
scores['erosion'] = min(erosion_score * 2, 1.0)
# تقدير الحساسية
sensitivity_score = (cavity_score + erosion_score) / 2
scores['sensitivity'] = sensitivity_score
# تقييم الصحة العامة
overall_health = 1.0 - np.mean([
cavity_score,
inflammation_score,
plaque_score,
erosion_score,
sensitivity_score
])
scores['overall_health'] = overall_health
return {
'scores': scores,
'recommendations': self._generate_basic_recommendations(scores)
}
except Exception as e:
print(f"Error in analyze_image: {str(e)}")
return {
'scores': {
'cavity': 0.0,
'gum_inflammation': 0.0,
'plaque': 0.0,
'erosion': 0.0,
'sensitivity': 0.0,
'overall_health': 0.0
},
'recommendations': ['عذراً، حدث خطأ أثناء تحليل الصورة. يرجى التأكد من جودة الصورة وإعادة المحاولة.']
}
def _adjust_scores_based_on_patient(self, scores, patient):
adjusted_scores = scores.copy()
# تعديل النتائج بناءً على الأعراض
for symptom in patient.symptoms:
if symptom in self.symptom_conditions:
related_conditions = self.symptom_conditions[symptom]
for condition in related_conditions:
# تخفيض درجة الصحة للحالات المرتبطة بالأعراض
adjusted_scores[condition] = min(
adjusted_scores[condition] * 0.8,
adjusted_scores[condition]
)
# تعديل النتائج بناءً على العمر
if patient.age > 60:
# زيادة احتمالية مشاكل اللثة وتآكل المينا للمرضى الأكبر سناً
adjusted_scores['gum_inflammation'] *= 0.9
adjusted_scores['erosion'] *= 0.9
elif patient.age < 18:
# زيادة احتمالية التسوس للمرضى الأصغر سناً
adjusted_scores['cavity'] *= 0.9
# تعديل النتائج بناءً على أسباب الزيارة
for reason in patient.visit_reasons:
if 'ألم' in reason.lower():
adjusted_scores['cavity'] *= 0.8
adjusted_scores['sensitivity'] *= 0.8
elif 'نزيف' in reason.lower():
adjusted_scores['gum_inflammation'] *= 0.7
elif 'رائحة' in reason.lower():
adjusted_scores['plaque'] *= 0.8
adjusted_scores['gum_inflammation'] *= 0.8
# إعادة حساب الصحة العامة
adjusted_scores['overall_health'] = sum(
score for condition, score in adjusted_scores.items()
if condition != 'overall_health'
) / (len(adjusted_scores) - 1)
return adjusted_scores
def _normalize_score(self, value, min_threshold, max_threshold):
if value < min_threshold:
return 1.0
elif value > max_threshold:
return 0.0
else:
return 1.0 - ((value - min_threshold) / (max_threshold - min_threshold))
def _calculate_overall_health(self, brightness, contrast, edge_density):
health_indicators = [
self._normalize_score(1 - brightness, 0.3, 0.7),
self._normalize_score(contrast, 0.2, 0.6),
self._normalize_score(edge_density, 0.1, 0.4)
]
return sum(health_indicators) / len(health_indicators)
def _generate_recommendations(self, scores, patient=None):
recommendations = []
# توصيات بناءً على نتائج التحليل
if scores['cavity'] < 0.7:
recommendations.append("ينصح بزيارة طبيب الأسنان للكشف عن التسوس المحتمل")
if scores['gum_inflammation'] < 0.7:
recommendations.append("يُنصح باستخدام غسول الفم المضاد للبكتيريا وتحسين نظافة الفم")
if scores['plaque'] < 0.6:
recommendations.append("يجب تحسين تنظيف الأسنان باستخدام الفرشاة والخيط السني بانتظام")
if scores['erosion'] < 0.7:
recommendations.append("تجنب المشروبات الحمضية وتناول الأطعمة القاسية")
if scores['sensitivity'] < 0.7:
recommendations.append("استخدم معجون أسنان مخصص للأسنان الحساسة")
if scores['overall_health'] < 0.6:
recommendations.append("يُنصح بزيارة طبيب الأسنان لفحص شامل وتنظيف احترافي")
# إضافة توصيات خاصة بناءً على معلومات المريض
if patient:
if patient.age > 60:
recommendations.append("نظراً لعمرك، يُنصح بزيارة طبيب الأسنان كل 4-6 أشهر للفحص الدوري")
elif patient.age < 18:
recommendations.append("يُنصح بتجنب الحلويات والمشروبات الغازية وتنظيف الأسنان بعد كل وجبة")
for symptom in patient.symptoms:
if 'ألم' in symptom.lower():
recommendations.append("يُنصح بتجنب الأطعمة والمشروبات شديدة البرودة أو السخونة")
elif 'نزيف' in symptom.lower():
recommendations.append("استخدم فرشاة أسنان ناعمة وتجنب الضغط الشديد أثناء التنظيف")
if not recommendations:
recommendations.append("صحة أسنانك جيدة! حافظ على روتين العناية اليومي")
return recommendations
def _generate_basic_recommendations(self, scores):
recommendations = []
# توصيات بناءً على نتائج التحليل
if scores['cavity'] < 0.7:
recommendations.append("ينصح بزيارة طبيب الأسنان للكشف عن التسوس المحتمل")
if scores['gum_inflammation'] < 0.7:
recommendations.append("يُنصح باستخدام غسول الفم المضاد للبكتيريا وتحسين نظافة الفم")
if scores['plaque'] < 0.6:
recommendations.append("يجب تحسين تنظيف الأسنان باستخدام الفرشاة والخيط السني بانتظام")
if scores['erosion'] < 0.7:
recommendations.append("تجنب المشروبات الحمضية وتناول الأطعمة القاسية")
if scores['sensitivity'] < 0.7:
recommendations.append("استخدم معجون أسنان مخصص للأسنان الحساسة")
if scores['overall_health'] < 0.6:
recommendations.append("يُنصح بزيارة طبيب الأسنان لفحص شامل وتنظيف احترافي")
if not recommendations:
recommendations.append("صحة أسنانك جيدة! حافظ على روتين العناية اليومي")
return recommendations