File size: 13,900 Bytes
55051eb
f305d33
 
 
 
55051eb
f305d33
55051eb
 
 
ca6d35b
f305d33
 
 
 
 
ca6d35b
55051eb
 
ca6d35b
55051eb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ca6d35b
 
55051eb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ca6d35b
55051eb
 
ca6d35b
 
 
 
 
 
55051eb
 
 
 
 
ca6d35b
55051eb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ca6d35b
55051eb
 
ca6d35b
 
 
 
 
 
55051eb
 
 
 
 
 
ca6d35b
55051eb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ca6d35b
55051eb
 
ca6d35b
 
 
 
 
 
55051eb
 
 
 
 
 
 
ca6d35b
55051eb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ca6d35b
55051eb
 
ca6d35b
 
 
 
 
 
55051eb
 
 
 
 
 
ca6d35b
55051eb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ca6d35b
55051eb
 
 
 
ca6d35b
 
 
 
55051eb
 
 
 
 
 
ca6d35b
55051eb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ca6d35b
55051eb
 
ca6d35b
 
 
 
55051eb
ca6d35b
55051eb
 
 
 
 
 
 
ca6d35b
55051eb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ca6d35b
55051eb
 
ca6d35b
 
 
 
55051eb
 
 
 
 
 
 
 
f305d33
ca6d35b
 
55051eb
 
 
 
 
 
 
 
 
 
ca6d35b
 
 
 
 
 
 
 
55051eb
 
 
 
 
 
 
 
 
 
 
06ce8bc
55051eb
 
 
 
 
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
import gradio as gr

# Import tensorflow here
import tensorflow as tf 

from tensorflow.keras.utils import img_to_array,load_img
from tensorflow.keras.models import load_model # Use tensorflow.keras.models
import numpy as np

# Load the pre-trained model from the local path
model_path = 'Mango.h5'

# Define custom objects to handle potential incompatibilities
custom_objects = {'DepthwiseConv2D': tf.keras.layers.DepthwiseConv2D} 

# Load the model with custom_objects
model = load_model(model_path, custom_objects=custom_objects)  # Load the model here

def predict_disease(image_file, model, all_labels):
    
    try:
        # Load and preprocess the image
        img = load_img(image_file, target_size=(224, 224))  # Use load_img from tensorflow.keras.utils
        img_array = img_to_array(img)
        img_array = np.expand_dims(img_array, axis=0)  # Add batch dimension
        img_array = img_array / 255.0  # Normalize the image

        # Predict the class
        predictions = model.predict(img_array)  # Use the loaded model here
        predicted_class = np.argmax(predictions[0])

        # Get the predicted class label
        predicted_label = all_labels[predicted_class]

        # Print the predicted label to the console
        
        if predicted_label=='Mango Anthracrose':
            predicted_label = """<style>
                      li{
                        font-size: 15px;
                        margin-left: 90px;
                        margin-top: 15px;
                        margin-bottom: 15px;
                      }
                      h4{
                        font-size: 17px;
                        margin-top: 15px;
                      }
                      h4:hover{
                        cursor: pointer;
                      }

                      h3:hover{
                        cursor: pointer;
                        color: blue;
                        transform: scale(1.3);
                      }
                      .note{
                        text-align: center;
                        font-size: 16px;
                      }
                      p{
                        font-size: 13px;
                        text-align: center;
                      }

                </style>
                <h3><center><b>Mango Anthracrose</b></center></h3>
                <h4>PESTICIDES TO BE USED:</h4>
                <ul>
                    <li>1. Mancozeb</li>
                    <li>2. Azoxystrobin</li>
                    <li>3. carbendazim</li>
                    <li>4. Propiconazole</li>
                    <li>5. Thiophanate-methyl</li>
                    <li>6. Copper Sulfate</li>
                </ul><br>
                <p class="note"><b>* * * IMPORTANT NOTE * * *</b></p>
                <p>Be sure to follow local regulations and guidelines for application</p>

            """
        elif predicted_label=='Mango Bacterial Canker':
            predicted_label = """
            <style>
                      li{
                        font-size: 15px;
                        margin-left: 90px;
                        margin-top: 15px;
                        margin-bottom: 15px;
                      }
                      h4{
                        font-size: 17px;
                        margin-top: 15px;
                      }
                      h4:hover{
                        cursor: pointer;
                      }

                      h3:hover{
                        cursor: pointer;
                        color: blue;
                        transform: scale(1.3);
                      }
                      .note{
                        text-align: center;
                        font-size: 16px;
                      }
                      p{
                        font-size: 13px;
                        text-align: center;
                      }

                </style>
                <h3><center><b>Mango Bacterial Canker</b></center></h3>
                <h4>PESTICIDES TO BE USED:</h4>
                <ul>
                    <li>1. Copper Hydroxide</li>
                    <li>2. Copper Oxychloride</li>
                    <li>3. Streptomycin</li>
                    <li>4. oxytetracycline</li>
                    <li>5. Neem oil</li>
                    <li>6. Garlic oil</li>
                </ul>
                <p class="note"><b>* * * IMPORTANT NOTE * * *</b></p>
                <p>Be sure to follow local regulations and guidelines for application</p>


            """
        elif predicted_label=='Mango Cutting Weevil':
            predicted_label = """
            <style>
                      li{
                        font-size: 15px;
                        margin-left: 90px;
                        margin-top: 15px;
                        margin-bottom: 15px;
                      }
                      h4{
                        font-size: 17px;
                        margin-top: 15px;
                      }
                      h4:hover{
                        cursor: pointer;
                      }

                      h3:hover{
                        cursor: pointer;
                        color: blue;
                        transform: scale(1.3);
                      }
                      .note{
                        text-align: center;
                        font-size: 16px;
                      }
                      p{
                        font-size: 13px;
                        text-align: center;
                      }

                </style>
                <h3><center><b>Mango Cutting Weevil</b></center></h3>
                <h4>PESTICIDES TO BE USED:</h4>
                <ul>
                    <li>1. Imidacloprid</li>
                    <li>2. Thiamethoxam</li>
                    <li>3. Chlorpyrifos</li>
                    <li>4. Lambda-cyhalothrin</li>
                    <li>5. Fipronil</li>
                    <li>6. Neem oil</li>
                </ul>
                <p class="note"><b>* * * IMPORTANT NOTE * * *</b></p>
                <p>Be sure to follow local regulations and guidelines for application</p>


            """

        elif predicted_label=='Mango Die Back':
            predicted_label = """
            <style>
                      li{
                        font-size: 15px;
                        margin-left: 90px;
                        margin-top: 15px;
                        margin-bottom: 15px;
                      }
                      h4{
                        font-size: 17px;
                        margin-top: 15px;
                      }
                      h4:hover{
                        cursor: pointer;
                      }

                      h3:hover{
                        cursor: pointer;
                        color: blue;
                        transform: scale(1.3);
                      }
                      .note{
                        text-align: center;
                        font-size: 16px;
                      }
                      p{
                        font-size: 13px;
                        text-align: center;
                      }

                </style>
                <h3><center><b>Mango Die Back</b></center></h3>
                <h4>PESTICIDES TO BE USED:</h4>
                <ul>
                    <li>1. Carbendazim</li>
                    <li>2. Mancozeb</li>
                    <li>3. Azoxystrobin</li>
                    <li>4. Triazole</li>
                    <li>5. Potassium bicarbonate</li>
                    <li>6. Sodium bicarbonate</li>
                </ul>
                <p class="note"><b>* * * IMPORTANT NOTE * * *</b></p>
                <p>Be sure to follow local regulations and guidelines for application</p>


            """
        elif predicted_label=='Mango Gall Midge':
            predicted_label = """
            <style>
                      li{
                        font-size: 15px;
                        margin-left: 90px;
                        margin-top: 15px;
                        margin-bottom: 15px;
                      }
                      h4{
                        font-size: 17px;
                        margin-top: 15px;
                      }
                      h4:hover{
                        cursor: pointer;
                      }

                      h3:hover{
                        cursor: pointer;
                        color: blue;
                        transform: scale(1.3);
                      }
                      .note{
                        text-align: center;
                        font-size: 16px;
                      }
                      p{
                        font-size: 13px;
                        text-align: center;
                      }

                </style>
                <h3><center><b>Mango Gall Midge</b></center></h3>
                <h4>PESTICIDES TO BE USED:</h4>
                <ul>
                    <li>1. Imidacloprid</li>
                    <li>2. Thiamethoxam</li>
                    <li>3. Chlorpyrifos</li>
                    <li>4. Lambda-cyhalothrin</li>
                    <li>5. Spinosad</li>
                    <li>6. Pyrethrin</li>
                </ul>
                <p class="note"><b>* * * IMPORTANT NOTE * * *</b></p>
                <p>Be sure to follow local regulations and guidelines for application</p>


            """
        elif predicted_label=='Mango Powdery Mildew':
            predicted_label = """
            <style>
                      li{
                        font-size: 15px;
                        margin-left: 90px;
                        margin-top: 15px;
                        margin-bottom: 15px;
                      }
                      h4{
                        font-size: 17px;
                        margin-top: 15px;
                      }
                      h4:hover{
                        cursor: pointer;
                      }

                      h3:hover{
                        cursor: pointer;
                        color: blue;
                        transform: scale(1.3);
                      }
                      .note{
                        text-align: center;
                        font-size: 16px;
                      }
                      p{
                        font-size: 13px;
                        text-align: center;
                      }

                </style>
                <h3><center><b>Mango Powdery Mildew</b></center></h3>
                <h4>PESTICIDES TO BE USED:</h4>
                <ul>
                    <li>1. Sulfur</li>
                    <li>2. Bicarbonates</li>
                    <li>3. Myclobutanil</li>
                    <li>4. Triadimefon</li>
                    <li>5. Propiconazole</li>
                    <li>6. Azoxystrobin</li>
                </ul>
                <p class="note"><b>* * * IMPORTANT NOTE * * *</b></p>
                <p>Be sure to follow local regulations and guidelines for application</p>


            """

        elif predicted_label=='Mango Sooty Mould':
            predicted_label = """
                <style>
                      li{
                        font-size: 15px;
                        margin-left: 90px;
                        margin-top: 15px;
                        margin-bottom: 15px;
                      }
                      h4{
                        font-size: 17px;
                        margin-top: 15px;
                      }
                      h4:hover{
                        cursor: pointer;
                      }

                      h3:hover{
                        cursor: pointer;
                        color: blue;
                        transform: scale(1.3);
                      }
                      .note{
                        text-align: center;
                        font-size: 16px;
                      }
                      p{
                        font-size: 13px;
                        text-align: center;
                      }

                </style>
                <h3><center><b>Mango Sooty Mould</b></center></h3>
                <h4>PESTICIDES TO BE USED:</h4>
                <ul>
                    <li>1. Imidacloprid (Neonicotinoid)</li>
                    <li>2. Thiamethoxam (Neonicotinoid)</li>
                    <li>3. Bifenthrin (Pyrethroid)</li>
                    <li>4. Lambda-cyhalothrin (Pyrethroid)</li>
                    <li>5. Insecticidal soap</li>
                    <li>6. Horticultural oil</li>
                </ul>
                <p class="note"><b>* * * IMPORTANT NOTE * * *</b></p>
                <p>Be sure to follow local regulations and guidelines for application</p>


            """
        else:
          predicted_label = """<h3 align="center">Mango Healthy</h3><br><br>
          <center>No need use Pesticides</center>"""

        return predicted_label


    except Exception as e:
        print(f"Error: {e}")
        return None

# List of class labels
all_labels = [
    'Mango Anthracrose',
    'Mango Bacterial Canker',
    'Mango Cutting Weevil',
    'Mango Die Back',
    'Mango Gall Midge',
    'Mango Healthy',
    'Mango Powdery Mildew',
    'Mango Sooty Mould'
]

# Define the Gradio interface
def gradio_predict(image_file):
    return predict_disease(image_file, model, all_labels)  # Pass the model to the function

# Create a Gradio interface
gr_interface = gr.Interface(
    fn=gradio_predict,  # Function to call for predictions
    inputs=gr.Image(type="filepath"),  # Upload image as file path
    outputs="html",  # Output will be the class label as text
    title="Mango Disease Predictor",
    description="Upload an image of a plant to predict the disease.",
)

# Launch the Gradio app
gr_interface.launch(share=True)