diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..3e98409afe9ae1cc4f4273dc93b89ce42d3afdfc --- /dev/null +++ b/README.md @@ -0,0 +1,110 @@ +--- +license: other +language: +- en +task_categories: +- image-classification +tags: +- plant-disease +- agriculture +- crops +- leaf +- banana +- tomato +- potato +- lemon +- tea +- rice +- watering +- irrigation +- treatment +size_categories: +- 100K_/NNNNNN.jpg # 109 classes, ~125k images (the training set) +_source_manifest.csv # per-image provenance: target_code, source, original_path +detection/ # PlantDoc object-detection dataset (VOC: .jpg + .xml, TRAIN/TEST) +knowledge/ + names.json # class code -> human-readable message + treatments.json # class code -> {treatment: {pill_code, pill_name}, agronomy} + watering_rules.json # per-crop thresholds for the watering decision engine + watering_recommendations.csv # human-readable watering reference table (ph, temp, moisture, practice) +labels.json # class list + code->index + per-class counts +README.md +``` + +### Class code scheme + +`_` — e.g. `potato_late_blight`, `banana_sigatoka`, `tea_helopeltis`, `tomato_healthy`. +- `*_healthy` = healthy class for that plant (the model's "healthy" output). +- Plant = first token of the code. +- 109 classes, one folder per class — drop `images/` straight into any classification pipeline (ImageFolder / the CropHelth trainer both work as-is). + +## Sources (all open source) + +| Source | DOI / URL | Contribution | +|---|---|---| +| Mendeley `tywbtsjrjv` — "Data for: Identification of Plant Leaf Diseases Using a 9-layer Deep CNN" (PlantVillage) | https://data.mendeley.com/datasets/tywbtsjrjv/1 | apple, blueberry, cherry, corn, grape, orange, peach, pepper, potato, raspberry, soybean, squash, strawberry, tomato (~52k) | +| Mendeley `9tb7k297ff` — BananaLSD | https://data.mendeley.com/datasets/9tb7k297ff/1 | banana (sigatoka, cordana, pestalotiopsis, healthy; Original set only — augmented set excluded to avoid synthetic-duplicate bias) | +| Mendeley `744vznw5k2` — teaLeafBD | https://data.mendeley.com/datasets/744vznw5k2/4 | tea (7 classes) | +| Mendeley `j32xdt2ff5` — Tea Sickness | https://data.mendeley.com/datasets/j32xdt2ff5/2 | tea (8 classes, merged with teaLeafBD) | +| Mendeley `6243z8r6t6` — Multi-Crop Disease (roboflow) | https://data.mendeley.com/datasets/6243z8r6t6/1 | banana, cauliflower, chilli, peanut, radish (~22k; class assigned via YOLO label files) | +| Mendeley `643f5bbc2t` — BDLemonLeaf | https://data.mendeley.com/datasets/643f5bbc2t/6 | lemon (13 classes, Raw Image set) | +| Mendeley `8d9fv6kpt3` — Large-Scale Lemon Leaf Disease & Pest | https://data.mendeley.com/datasets/8d9fv6kpt3/1 | lemon (18 classes, merged with BDLemonLeaf) | +| Mendeley `c5yvn32dzg` — RoCoLe (robusta coffee) | https://data.mendeley.com/datasets/c5yvn32dzg/2 | coffee healthy/unhealthy (labels from the shipped Labelbox CSV) | +| Mendeley `22p2vcbxfk` — Groundnut (peanut) | https://data.mendeley.com/datasets/22p2vcbxfk/3 | peanut (5 classes, Raw_Data) | +| Mendeley `7vpdrbdkd4` — Nutrient-deficient banana | https://data.mendeley.com/datasets/7vpdrbdkd4/2 | banana nutrient deficiencies (7 classes, RAW set only) | +| Mendeley `g7xnn2bm4g` — Nitrogen deficiency in maize | https://data.mendeley.com/datasets/g7xnn2bm4g/1 | maize N0/N7/NF (3 classes) | +| GitHub `pratikkayal/PlantDoc-Dataset` | https://github.com/pratikkayal/PlantDoc-Dataset | 28 classes (train+test merged) | +| GitHub `pratikkayal/PlantDoc-Object-Detection-Dataset` | https://github.com/pratikkayal/PlantDoc-Object-Detection-Dataset | `detection/` (VOC format, separate task) | +| Harvard Dataverse `LQUWXW` — Bananas TZ (Tanzania) | https://doi.org/10.7910/DVN/LQUWXW | banana black sigatoka, fusarium wilt, healthy (~15k large photos) | + +**Excluded by design:** `Background_without_leaves` (PlantVillage, not a plant class), augmented/synthetic image sets (our trainer does its own augmentation), and the Zenodo **DiaMOS** pear dataset (12.5 GB single archive — could not be processed in the build environment; add it with the same pipeline). + +**Note:** the IEEE DataPort *Paddy Doctor* (rice) dataset requires a logged-in IEEE account to download — it could not be included automatically. Rice classes should be added the same way when you download it. + +## Watering decision data + +`knowledge/watering_rules.json` drives a rule engine (`water_now` / `hold_water` / `check_data`): + +- `soil_moisture_pct < min` → `water_now` +- `soil_moisture_pct > max` → `hold_water` (overwatering risk) +- no soil moisture given → `check_data` +- `ph` / `air_temp_c` / `soil_temp_c` outside range → extra reason codes (`ph_low`, `ph_high`, `air_temp_high`, `soil_temp_high`) + +Per-crop values (moisture %, pH window, temperature stress limits) in `watering_rules.json` + the readable practice table in `watering_recommendations.csv`. **Values are standard agronomic reference ranges — calibrate them with your own field sensors.** Soil moisture is the primary signal; pH/temperature alone cannot decide irrigation. To replace rules with a learned model, log readings + actual watering actions and train a classifier (see the CropHelth trainer's `train_watering.py`). + +## Treatments + +`knowledge/treatments.json` maps every non-healthy class to `{treatment: {pill_code, pill_name}, agronomy}`. These are **standard extension-service style reference recommendations for training/testing** — before any real-world use, verify products are registered in your region, follow label rates, rotate FRAC groups, and have a local agronomist review. The model predicts the class code only; treatment text always comes from this file (never model-generated). + +## Provenance & licenses + +`_source_manifest.csv` maps every image back to its source dataset and original path. Each source keeps its own license (see `detection/LICENSE.txt` for PlantDoc; Mendeley datasets are typically CC-BY/CC0 — check each dataset page). If you redistribute, keep the source attribution above. + +## Quick usage (CropHelth trainer) + +```bash +# point the trainer at this dataset +python scripts/build_labels.py --images-dir /images +python scripts/split.py +python scripts/train.py +python scripts/predict.py --image some_leaf.jpg --meta +python scripts/predict_watering.py --json '{"crop":"potato","soil_moisture_pct":18,"ph":6.1}' +``` diff --git a/_source_manifest.csv b/_source_manifest.csv index 02840520264ed4c81706e13e793cc791f5edbe74..df9d3f088d583972eca97c842a3c6329b412297b 100644 --- a/_source_manifest.csv +++ b/_source_manifest.csv @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:11c6b3bd41c97474e0c40b79a49b6d406cab9e26c7e35bfe7a0a1ba6fef0da2f -size 11273732 +oid sha256:b7aea6d3f9fe52a415e71994675b413cd33132f9a3ad5b03b8ac7cbfd1820715 +size 12632977 diff --git a/detection/LICENSE.txt b/detection/LICENSE.txt new file mode 100644 index 0000000000000000000000000000000000000000..52bd1459bd805f5a715e4975287d84c44201a79e --- /dev/null +++ b/detection/LICENSE.txt @@ -0,0 +1,395 @@ +Attribution 4.0 International + +======================================================================= + +Creative Commons Corporation ("Creative Commons") is not a law firm and +does not provide legal services or legal advice. Distribution of +Creative Commons public licenses does not create a lawyer-client or +other relationship. Creative Commons makes its licenses and related +information available on an "as-is" basis. Creative Commons gives no +warranties regarding its licenses, any material licensed under their +terms and conditions, or any related information. Creative Commons +disclaims all liability for damages resulting from their use to the +fullest extent possible. + +Using Creative Commons Public Licenses + +Creative Commons public licenses provide a standard set of terms and +conditions that creators and other rights holders may use to share +original works of authorship and other material subject to copyright +and certain other rights specified in the public license below. The +following considerations are for informational purposes only, are not +exhaustive, and do not form part of our licenses. + + Considerations for licensors: Our public licenses are + intended for use by those authorized to give the public + permission to use material in ways otherwise restricted by + copyright and certain other rights. Our licenses are + irrevocable. Licensors should read and understand the terms + and conditions of the license they choose before applying it. + Licensors should also secure all rights necessary before + applying our licenses so that the public can reuse the + material as expected. Licensors should clearly mark any + material not subject to the license. This includes other CC- + licensed material, or material used under an exception or + limitation to copyright. More considerations for licensors: + wiki.creativecommons.org/Considerations_for_licensors + + Considerations for the public: By using one of our public + licenses, a licensor grants the public permission to use the + licensed material under specified terms and conditions. If + the licensor's permission is not necessary for any reason--for + example, because of any applicable exception or limitation to + copyright--then that use is not regulated by the license. Our + licenses grant only permissions under copyright and certain + other rights that a licensor has authority to grant. Use of + the licensed material may still be restricted for other + reasons, including because others have copyright or other + rights in the material. A licensor may make special requests, + such as asking that all changes be marked or described. + Although not required by our licenses, you are encouraged to + respect those requests where reasonable. More_considerations + for the public: + wiki.creativecommons.org/Considerations_for_licensees + +======================================================================= + +Creative Commons Attribution 4.0 International Public License + +By exercising the Licensed Rights (defined below), You accept and agree +to be bound by the terms and conditions of this Creative Commons +Attribution 4.0 International Public License ("Public License"). To the +extent this Public License may be interpreted as a contract, You are +granted the Licensed Rights in consideration of Your acceptance of +these terms and conditions, and the Licensor grants You such rights in +consideration of benefits the Licensor receives from making the +Licensed Material available under these terms and conditions. + + +Section 1 -- Definitions. + + a. Adapted Material means material subject to Copyright and Similar + Rights that is derived from or based upon the Licensed Material + and in which the Licensed Material is translated, altered, + arranged, transformed, or otherwise modified in a manner requiring + permission under the Copyright and Similar Rights held by the + Licensor. For purposes of this Public License, where the Licensed + Material is a musical work, performance, or sound recording, + Adapted Material is always produced where the Licensed Material is + synched in timed relation with a moving image. + + b. Adapter's License means the license You apply to Your Copyright + and Similar Rights in Your contributions to Adapted Material in + accordance with the terms and conditions of this Public License. + + c. Copyright and Similar Rights means copyright and/or similar rights + closely related to copyright including, without limitation, + performance, broadcast, sound recording, and Sui Generis Database + Rights, without regard to how the rights are labeled or + categorized. For purposes of this Public License, the rights + specified in Section 2(b)(1)-(2) are not Copyright and Similar + Rights. + + d. Effective Technological Measures means those measures that, in the + absence of proper authority, may not be circumvented under laws + fulfilling obligations under Article 11 of the WIPO Copyright + Treaty adopted on December 20, 1996, and/or similar international + agreements. + + e. Exceptions and Limitations means fair use, fair dealing, and/or + any other exception or limitation to Copyright and Similar Rights + that applies to Your use of the Licensed Material. + + f. Licensed Material means the artistic or literary work, database, + or other material to which the Licensor applied this Public + License. + + g. Licensed Rights means the rights granted to You subject to the + terms and conditions of this Public License, which are limited to + all Copyright and Similar Rights that apply to Your use of the + Licensed Material and that the Licensor has authority to license. + + h. Licensor means the individual(s) or entity(ies) granting rights + under this Public License. + + i. Share means to provide material to the public by any means or + process that requires permission under the Licensed Rights, such + as reproduction, public display, public performance, distribution, + dissemination, communication, or importation, and to make material + available to the public including in ways that members of the + public may access the material from a place and at a time + individually chosen by them. + + j. Sui Generis Database Rights means rights other than copyright + resulting from Directive 96/9/EC of the European Parliament and of + the Council of 11 March 1996 on the legal protection of databases, + as amended and/or succeeded, as well as other essentially + equivalent rights anywhere in the world. + + k. You means the individual or entity exercising the Licensed Rights + under this Public License. Your has a corresponding meaning. + + +Section 2 -- Scope. + + a. License grant. + + 1. Subject to the terms and conditions of this Public License, + the Licensor hereby grants You a worldwide, royalty-free, + non-sublicensable, non-exclusive, irrevocable license to + exercise the Licensed Rights in the Licensed Material to: + + a. reproduce and Share the Licensed Material, in whole or + in part; and + + b. produce, reproduce, and Share Adapted Material. + + 2. Exceptions and Limitations. For the avoidance of doubt, where + Exceptions and Limitations apply to Your use, this Public + License does not apply, and You do not need to comply with + its terms and conditions. + + 3. Term. The term of this Public License is specified in Section + 6(a). + + 4. Media and formats; technical modifications allowed. The + Licensor authorizes You to exercise the Licensed Rights in + all media and formats whether now known or hereafter created, + and to make technical modifications necessary to do so. The + Licensor waives and/or agrees not to assert any right or + authority to forbid You from making technical modifications + necessary to exercise the Licensed Rights, including + technical modifications necessary to circumvent Effective + Technological Measures. For purposes of this Public License, + simply making modifications authorized by this Section 2(a) + (4) never produces Adapted Material. + + 5. Downstream recipients. + + a. Offer from the Licensor -- Licensed Material. Every + recipient of the Licensed Material automatically + receives an offer from the Licensor to exercise the + Licensed Rights under the terms and conditions of this + Public License. + + b. No downstream restrictions. You may not offer or impose + any additional or different terms or conditions on, or + apply any Effective Technological Measures to, the + Licensed Material if doing so restricts exercise of the + Licensed Rights by any recipient of the Licensed + Material. + + 6. No endorsement. Nothing in this Public License constitutes or + may be construed as permission to assert or imply that You + are, or that Your use of the Licensed Material is, connected + with, or sponsored, endorsed, or granted official status by, + the Licensor or others designated to receive attribution as + provided in Section 3(a)(1)(A)(i). + + b. Other rights. + + 1. Moral rights, such as the right of integrity, are not + licensed under this Public License, nor are publicity, + privacy, and/or other similar personality rights; however, to + the extent possible, the Licensor waives and/or agrees not to + assert any such rights held by the Licensor to the limited + extent necessary to allow You to exercise the Licensed + Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this + Public License. + + 3. To the extent possible, the Licensor waives any right to + collect royalties from You for the exercise of the Licensed + Rights, whether directly or through a collecting society + under any voluntary or waivable statutory or compulsory + licensing scheme. In all other cases the Licensor expressly + reserves any right to collect such royalties. + + +Section 3 -- License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the +following conditions. + + a. Attribution. + + 1. If You Share the Licensed Material (including in modified + form), You must: + + a. retain the following if it is supplied by the Licensor + with the Licensed Material: + + i. identification of the creator(s) of the Licensed + Material and any others designated to receive + attribution, in any reasonable manner requested by + the Licensor (including by pseudonym if + designated); + + ii. a copyright notice; + + iii. a notice that refers to this Public License; + + iv. a notice that refers to the disclaimer of + warranties; + + v. a URI or hyperlink to the Licensed Material to the + extent reasonably practicable; + + b. indicate if You modified the Licensed Material and + retain an indication of any previous modifications; and + + c. indicate the Licensed Material is licensed under this + Public License, and include the text of, or the URI or + hyperlink to, this Public License. + + 2. You may satisfy the conditions in Section 3(a)(1) in any + reasonable manner based on the medium, means, and context in + which You Share the Licensed Material. For example, it may be + reasonable to satisfy the conditions by providing a URI or + hyperlink to a resource that includes the required + information. + + 3. If requested by the Licensor, You must remove any of the + information required by Section 3(a)(1)(A) to the extent + reasonably practicable. + + 4. If You Share Adapted Material You produce, the Adapter's + License You apply must not prevent recipients of the Adapted + Material from complying with this Public License. + + +Section 4 -- Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that +apply to Your use of the Licensed Material: + + a. for the avoidance of doubt, Section 2(a)(1) grants You the right + to extract, reuse, reproduce, and Share all or a substantial + portion of the contents of the database; + + b. if You include all or a substantial portion of the database + contents in a database in which You have Sui Generis Database + Rights, then the database in which You have Sui Generis Database + Rights (but not its individual contents) is Adapted Material; and + + c. You must comply with the conditions in Section 3(a) if You Share + all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not +replace Your obligations under this Public License where the Licensed +Rights include other Copyright and Similar Rights. + + +Section 5 -- Disclaimer of Warranties and Limitation of Liability. + + a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE + EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS + AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF + ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, + IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, + WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, + ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT + KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT + ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. + + b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE + TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, + NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, + INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, + COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR + USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN + ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR + DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR + IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. + + c. The disclaimer of warranties and limitation of liability provided + above shall be interpreted in a manner that, to the extent + possible, most closely approximates an absolute disclaimer and + waiver of all liability. + + +Section 6 -- Term and Termination. + + a. This Public License applies for the term of the Copyright and + Similar Rights licensed here. However, if You fail to comply with + this Public License, then Your rights under this Public License + terminate automatically. + + b. Where Your right to use the Licensed Material has terminated under + Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided + it is cured within 30 days of Your discovery of the + violation; or + + 2. upon express reinstatement by the Licensor. + + For the avoidance of doubt, this Section 6(b) does not affect any + right the Licensor may have to seek remedies for Your violations + of this Public License. + + c. For the avoidance of doubt, the Licensor may also offer the + Licensed Material under separate terms or conditions or stop + distributing the Licensed Material at any time; however, doing so + will not terminate this Public License. + + d. Sections 1, 5, 6, 7, and 8 survive termination of this Public + License. + + +Section 7 -- Other Terms and Conditions. + + a. The Licensor shall not be bound by any additional or different + terms or conditions communicated by You unless expressly agreed. + + b. Any arrangements, understandings, or agreements regarding the + Licensed Material not stated herein are separate from and + independent of the terms and conditions of this Public License. + + +Section 8 -- Interpretation. + + a. For the avoidance of doubt, this Public License does not, and + shall not be interpreted to, reduce, limit, restrict, or impose + conditions on any use of the Licensed Material that could lawfully + be made without permission under this Public License. + + b. To the extent possible, if any provision of this Public License is + deemed unenforceable, it shall be automatically reformed to the + minimum extent necessary to make it enforceable. If the provision + cannot be reformed, it shall be severed from this Public License + without affecting the enforceability of the remaining terms and + conditions. + + c. No term or condition of this Public License will be waived and no + failure to comply consented to unless expressly agreed to by the + Licensor. + + d. Nothing in this Public License constitutes or may be interpreted + as a limitation upon, or waiver of, any privileges and immunities + that apply to the Licensor or You, including from the legal + processes of any jurisdiction or authority. + + +======================================================================= + +Creative Commons is not a party to its public +licenses. Notwithstanding, Creative Commons may elect to apply one of +its public licenses to material it publishes and in those instances +will be considered the “Licensor.” The text of the Creative Commons +public licenses is dedicated to the public domain under the CC0 Public +Domain Dedication. Except for the limited purpose of indicating that +material is shared under a Creative Commons public license or as +otherwise permitted by the Creative Commons policies published at +creativecommons.org/policies, Creative Commons does not authorize the +use of the trademark "Creative Commons" or any other trademark or logo +of Creative Commons without its prior written consent including, +without limitation, in connection with any unauthorized modifications +to any of its public licenses or any other arrangements, +understandings, or agreements concerning use of licensed material. For +the avoidance of doubt, this paragraph does not form part of the +public licenses. + +Creative Commons may be contacted at creativecommons.org. \ No newline at end of file diff --git a/detection/README.md b/detection/README.md new file mode 100644 index 0000000000000000000000000000000000000000..ca224a6143b849448c0b294957c769db5c5877e6 --- /dev/null +++ b/detection/README.md @@ -0,0 +1,37 @@ +# PlantDoc: A Dataset for Visual Plant Disease Detection + +This repository contains the PlantDoc dataset used for benchmarking classification models in the paper titled "PlantDoc: A Dataset for Visual Plant Disease Detection" which was accepted in the Research Track at ACM India Joint International Conference on Data Science and Management of Data (CoDS-COMAD 2020). + +While the cropped dataset can accessed through the following [link](https://github.com/pratikkayal/PlantDoc-Dataset). + +## Abstract +India loses 35% of the annual crop yield due to plant diseases. Early detection of plant diseases remains difficult due to the lack of lab infrastructure and expertise. In this paper, we explore the possibility of computer vision approaches for scalable and early plant disease detection. The lack of availability of sufficiently large-scale non-lab data set remains a major challenge for enabling vision based plant disease detection. Against this background, we present PlantDoc: a dataset for visual plant disease detection. Our dataset contains 2,598 data points in total across 13 plant species and up to 17 classes of diseases, involving approximately 300 human hours of effort in annotating internet scraped images. To show the efficacy of our dataset, we learn 3 models for the task of plant disease classification. Our results show that modelling using our dataset can increase the classification accuracy by up to 31%. We believe that our dataset can help reduce the entry barrier of computer vision techniques in plant disease detection. + +## Paper +For full paper, refer [Arxiv](https://arxiv.org/abs/1911.10317) and [ACM](https://dl.acm.org/doi/10.1145/3371158.3371196) + +## Authors +Davinder Singh*, Naman Jain*, Pranjali Jain*, Pratik Kayal*, Sudhakar Kumawat and Nipun Batra + +## Bibtex +``` +@inproceedings{10.1145/3371158.3371196, +author = {Singh, Davinder and Jain, Naman and Jain, Pranjali and Kayal, Pratik and Kumawat, Sudhakar and Batra, Nipun}, +title = {PlantDoc: A Dataset for Visual Plant Disease Detection}, +year = {2020}, +isbn = {9781450377386}, +publisher = {Association for Computing Machinery}, +address = {New York, NY, USA}, +url = {https://doi.org/10.1145/3371158.3371196}, +doi = {10.1145/3371158.3371196}, +booktitle = {Proceedings of the 7th ACM IKDD CoDS and 25th COMAD}, +pages = {249–253}, +numpages = {5}, +keywords = {Deep Learning, Object Detection, Image Classification}, +location = {Hyderabad, India}, +series = {CoDS COMAD 2020} +} +``` + +## License +Creative Commons Attribution 4.0 International [Link](https://github.com/pratikkayal/PlantDoc-Dataset/blob/master/LICENSE.txt) diff --git a/detection/TEST/%2320+Bacterial+Spot+and+Speck.jpg b/detection/TEST/%2320+Bacterial+Spot+and+Speck.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3347cac79e10e4cbbd66c87e5a156ce3cab9b47d --- /dev/null +++ b/detection/TEST/%2320+Bacterial+Spot+and+Speck.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b609929106ab0044de24717ceb091163e7630ec3460ec18c6d9c7bf2b996121c +size 101734 diff --git a/detection/TEST/%2320+Bacterial+Spot+and+Speck.xml b/detection/TEST/%2320+Bacterial+Spot+and+Speck.xml new file mode 100644 index 0000000000000000000000000000000000000000..d18ebbd21769a09855c304d37f3633bdefb1caa8 --- /dev/null +++ b/detection/TEST/%2320+Bacterial+Spot+and+Speck.xml @@ -0,0 +1,23 @@ + + tomato leaf bacterial spot + %2320+Bacterial+Spot+and+Speck.jpg + + 960 + 720 + 3 + + 0 + + Tomato leaf bacterial spot + Unspecified + 0 + 0 + 0 + + 61 + 196 + 410 + 396 + + + \ No newline at end of file diff --git a/detection/TEST/0.jpg b/detection/TEST/0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..24eace10b27c1d0b27c2bad06272ac3baef25654 --- /dev/null +++ b/detection/TEST/0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7e82b8ce320acec30c35a89e73490618e425c76d3c80d2d88a3053d39e9709e +size 20364 diff --git a/detection/TEST/0.xml b/detection/TEST/0.xml new file mode 100644 index 0000000000000000000000000000000000000000..73e7c11003c47528112b7ec7ea9506b52a82104c --- /dev/null +++ b/detection/TEST/0.xml @@ -0,0 +1,36 @@ + + Tomato Septoria leaf spot + 0.jpg + + 480 + 360 + 3 + + 0 + + Tomato Septoria leaf spot + Unspecified + 0 + 0 + 0 + + 244 + 136 + 394 + 253 + + + + Tomato Septoria leaf spot + Unspecified + 0 + 0 + 0 + + 68 + 136 + 233 + 253 + + + \ No newline at end of file diff --git a/detection/TEST/00.jpg b/detection/TEST/00.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c2fde211141852a4baa5a03d48a040ed694b98e0 --- /dev/null +++ b/detection/TEST/00.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:092fd6fa8208f5c46f10899a8c58543949ad3ee3c7621a4e760d685bfd9f610a +size 57046 diff --git a/detection/TEST/00.xml b/detection/TEST/00.xml new file mode 100644 index 0000000000000000000000000000000000000000..28f343daaca7b463d0d7d93ed757879ad51d065d --- /dev/null +++ b/detection/TEST/00.xml @@ -0,0 +1,86 @@ + + bell pepper leaf spot + 00.jpg + /home/pranjali/Desktop/sem6/ML_Project/latestDataset/ bell pepper leaf spot /00.jpg + + Unknown + + + 480 + 360 + 3 + + 0 + + Bell_pepper leaf spot + Unspecified + 0 + 0 + + 88 + 26 + 419 + 259 + + + + Bell_pepper leaf spot + Unspecified + 0 + 0 + + 126 + 251 + 459 + 357 + + + + Bell_pepper leaf spot + Unspecified + 1 + 0 + + 1 + 70 + 134 + 238 + + + + Bell_pepper leaf spot + Unspecified + 1 + 0 + + 381 + 1 + 480 + 131 + + + + Bell_pepper leaf spot + Unspecified + 0 + 0 + + 389 + 99 + 479 + 224 + + + + Bell_pepper leaf spot + Unspecified + 0 + 0 + + 8 + 203 + 158 + 334 + + + diff --git a/detection/TEST/000.jpg b/detection/TEST/000.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c6acefacde4f750ecdb07cf63dd46aaf1d30cf2 --- /dev/null +++ b/detection/TEST/000.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:428e8aa1e9ea0e344c1fc50c26734079f7d4eb0d76c5709a9b4a3cf6d1f559cb +size 192682 diff --git a/detection/TEST/000.xml b/detection/TEST/000.xml new file mode 100644 index 0000000000000000000000000000000000000000..a0f95e49f02bdaf6b3afcb24e58e9074e3108f28 --- /dev/null +++ b/detection/TEST/000.xml @@ -0,0 +1,26 @@ + + bell pepper leaf spot + 000.jpg + /home/pranjali/Desktop/sem6/ML_Project/latestDataset/ bell pepper leaf spot /000.jpg + + Unknown + + + 1024 + 768 + 3 + + 0 + + Bell_pepper leaf spot + Unspecified + 1 + 0 + + 252 + 1 + 942 + 741 + + + diff --git a/detection/TEST/0000.jpg b/detection/TEST/0000.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be2296f517358334e4bc3f5a8de54c22a048229a --- /dev/null +++ b/detection/TEST/0000.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:420433aad07a69dbba27df1b1db4693058daef37698b93f0461724bb8767ba6d +size 140651 diff --git a/detection/TEST/0000.xml b/detection/TEST/0000.xml new file mode 100644 index 0000000000000000000000000000000000000000..32acde5192e71a39f594025ae9aa8e8701133981 --- /dev/null +++ b/detection/TEST/0000.xml @@ -0,0 +1,26 @@ + + grape leaf + 0000.jpg + /home/pranjali/Desktop/sem6/ML_Project/latestDataset/ grape leaf /0000.jpg + + Unknown + + + 1000 + 1000 + 3 + + 0 + + grape leaf + Unspecified + 0 + 0 + + 3 + 27 + 941 + 939 + + + diff --git a/detection/TEST/00pe.jpg b/detection/TEST/00pe.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ea4867b8dbf379c54d3021eada307ba2def8812 --- /dev/null +++ b/detection/TEST/00pe.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efe7103184ba7b526b7958d11ece9922d3a7110b20603860b3225e1dbeb4db82 +size 93367 diff --git a/detection/TEST/00pe.xml b/detection/TEST/00pe.xml new file mode 100644 index 0000000000000000000000000000000000000000..f9b50c68045e51266818915c055599b33846b0cc --- /dev/null +++ b/detection/TEST/00pe.xml @@ -0,0 +1,26 @@ + + peach leaf + 00pe.jpg + /home/pranjali/Desktop/sem6/ML_Project/latestDataset/ peach leaf /00pe.jpg + + Unknown + + + 720 + 1000 + 3 + + 0 + + Peach leaf + Unspecified + 0 + 0 + + 41 + 39 + 700 + 731 + + + diff --git a/detection/TEST/01.jpg b/detection/TEST/01.jpg new file mode 100644 index 0000000000000000000000000000000000000000..54b110d1f8393013a4799cf185ca9367e33d241e --- /dev/null +++ b/detection/TEST/01.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:993f8bea1f19f3bc3334636badfe6e05d1206d7e338d2138cff7392fba6ff9d9 +size 65060 diff --git a/detection/TEST/01.xml b/detection/TEST/01.xml new file mode 100644 index 0000000000000000000000000000000000000000..06d494a48c80966512e3c744e9aae6e99bf3a5ce --- /dev/null +++ b/detection/TEST/01.xml @@ -0,0 +1,26 @@ + + bell pepper leaf spot + 01.jpg + /home/pranjali/Desktop/sem6/ML_Project/latestDataset/ bell pepper leaf spot /01.jpg + + Unknown + + + 638 + 479 + 3 + + 0 + + Bell_pepper leaf spot + Unspecified + 0 + 0 + + 409 + 171 + 548 + 416 + + + diff --git a/detection/TEST/02.-Rust-2017-207u24s.jpg b/detection/TEST/02.-Rust-2017-207u24s.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5eaec3a6f7d01104ed1ecb6c8d0a4ed9488146f8 --- /dev/null +++ b/detection/TEST/02.-Rust-2017-207u24s.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1b4f0ef38724290a0f896de850871f302aa12eac89625705233f77b0bd52797 +size 4916332 diff --git a/detection/TEST/02.-Rust-2017-207u24s.xml b/detection/TEST/02.-Rust-2017-207u24s.xml new file mode 100644 index 0000000000000000000000000000000000000000..e9f9c93db1e8eb7f8062f900c6fc31eb4c6d2951 --- /dev/null +++ b/detection/TEST/02.-Rust-2017-207u24s.xml @@ -0,0 +1,26 @@ + + apple rust leaf + 02.-Rust-2017-207u24s.jpg + /home/davinder/ISDf/ apple rust leaf /02.-Rust-2017-207u24s.jpg + + Unknown + + + 5312 + 2988 + 3 + + 0 + + Apple rust leaf + Unspecified + 0 + 0 + + 1690 + 324 + 5078 + 2397 + + + diff --git a/detection/TEST/02c.jpg b/detection/TEST/02c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6b3413d17941c876960ec446f760a0ce60a75286 --- /dev/null +++ b/detection/TEST/02c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a7d472d5da53b9436775feb479598e0c8067eae96dfd06c7ebdaecee79af473 +size 67199 diff --git a/detection/TEST/02c.xml b/detection/TEST/02c.xml new file mode 100644 index 0000000000000000000000000000000000000000..45445ea8ea031eb10df381d5ff7df0ee1c683355 --- /dev/null +++ b/detection/TEST/02c.xml @@ -0,0 +1,26 @@ + + leaf blight of corn + 02c.jpg + /home/pranjali/Desktop/sem6/ML_Project/latestDataset/ leaf blight of corn /02c.jpg + + Unknown + + + 960 + 540 + 3 + + 0 + + Corn leaf blight + Unspecified + 0 + 0 + + 7 + 62 + 958 + 465 + + + diff --git a/detection/TEST/039b47d574bc4bb8a14259a1cd96a741.jpg b/detection/TEST/039b47d574bc4bb8a14259a1cd96a741.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c589520443d5bed921af1dce0b09306f96599def --- /dev/null +++ b/detection/TEST/039b47d574bc4bb8a14259a1cd96a741.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d9c5c6947554d5fc6e98df5fbc1beb6363255128bd56446960e29a73242c02e +size 37998 diff --git a/detection/TEST/039b47d574bc4bb8a14259a1cd96a741.xml b/detection/TEST/039b47d574bc4bb8a14259a1cd96a741.xml new file mode 100644 index 0000000000000000000000000000000000000000..8eab51fb39593cabd4723b5fff108f3981bbdbab --- /dev/null +++ b/detection/TEST/039b47d574bc4bb8a14259a1cd96a741.xml @@ -0,0 +1,26 @@ + + Tomato Early blight leaf + 039b47d574bc4bb8a14259a1cd96a741.jpg + /home/sohamp/Desktop/done/ Tomato Early blight leaf /039b47d574bc4bb8a14259a1cd96a741.jpg + + Unknown + + + 638 + 479 + 3 + + 0 + + Tomato Early blight leaf + Unspecified + 0 + 0 + + 329 + 202 + 607 + 389 + + + diff --git a/detection/TEST/03gb.jpg b/detection/TEST/03gb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e13b7852935146bd6df2ff294ff6ceba16e1c18 --- /dev/null +++ b/detection/TEST/03gb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8468522aba52f73e8e919658fa833130602633a98aa3033dba6dd1595bc8718 +size 22839 diff --git a/detection/TEST/03gb.xml b/detection/TEST/03gb.xml new file mode 100644 index 0000000000000000000000000000000000000000..7c6434c0acafca9539078f3c92a1f983e17094e5 --- /dev/null +++ b/detection/TEST/03gb.xml @@ -0,0 +1,26 @@ + + grape leaf black rot + 03gb.jpg + /home/pranjali/Desktop/sem6/ML_Project/latestDataset/ grape leaf black rot /03gb.jpg + + Unknown + + + 479 + 302 + 3 + + 0 + + grape leaf black rot + Unspecified + 0 + 0 + + 176 + 24 + 470 + 292 + + + diff --git a/detection/TEST/052609%20Hartman%20Crabapple%20scab%20single%20leaf.JPG.jpg b/detection/TEST/052609%20Hartman%20Crabapple%20scab%20single%20leaf.JPG.jpg new file mode 100644 index 0000000000000000000000000000000000000000..05efad7993aca5a3c5c0dcc2f20885e754adca01 --- /dev/null +++ b/detection/TEST/052609%20Hartman%20Crabapple%20scab%20single%20leaf.JPG.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13cfeac779b23fa433e92498086f19b1768b84cab23bc9d25e5b33cbe7ca17db +size 84481 diff --git a/detection/TEST/052609%20Hartman%20Crabapple%20scab%20single%20leaf.JPG.xml b/detection/TEST/052609%20Hartman%20Crabapple%20scab%20single%20leaf.JPG.xml new file mode 100644 index 0000000000000000000000000000000000000000..020b05914fe6b50f08b3111f3e211a64b212876a --- /dev/null +++ b/detection/TEST/052609%20Hartman%20Crabapple%20scab%20single%20leaf.JPG.xml @@ -0,0 +1,26 @@ + + Apple Scab Leaf + 052609%20Hartman%20Crabapple%20scab%20single%20leaf.JPG.jpg + /home/davinder/ISDf/ Apple Scab Leaf /052609%20Hartman%20Crabapple%20scab%20single%20leaf.JPG.jpg + + Unknown + + + 496 + 348 + 3 + + 0 + + Apple Scab Leaf + Unspecified + 0 + 0 + + 41 + 41 + 464 + 285 + + + diff --git a/detection/TEST/0605_Rust-induced_leafspot.jpg b/detection/TEST/0605_Rust-induced_leafspot.jpg new file mode 100644 index 0000000000000000000000000000000000000000..edf313851b0f1bfb42606e2a0fd65ed73eb29aae --- /dev/null +++ b/detection/TEST/0605_Rust-induced_leafspot.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9773123c2caf06b5b574c406894ed37fff53638d2b826343603504b1d69595b1 +size 87480 diff --git a/detection/TEST/0605_Rust-induced_leafspot.xml b/detection/TEST/0605_Rust-induced_leafspot.xml new file mode 100644 index 0000000000000000000000000000000000000000..00698538819df71378d3e71587631c0a62eb7474 --- /dev/null +++ b/detection/TEST/0605_Rust-induced_leafspot.xml @@ -0,0 +1,26 @@ + + apple rust leaf + 0605_Rust-induced_leafspot.jpg + /home/davinder/ISDf/ apple rust leaf /0605_Rust-induced_leafspot.jpg + + Unknown + + + 341 + 188 + 3 + + 0 + + Apple rust leaf + Unspecified + 0 + 0 + + 6 + 10 + 299 + 182 + + + diff --git a/detection/TEST/07.17.18-Common_Tomato_Diseases_Canker-258x300.jpg b/detection/TEST/07.17.18-Common_Tomato_Diseases_Canker-258x300.jpg new file mode 100644 index 0000000000000000000000000000000000000000..060272dcc817f6c3e496cdd6271e8b8e07c8065e --- /dev/null +++ b/detection/TEST/07.17.18-Common_Tomato_Diseases_Canker-258x300.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9e9aa3d8e0e58d5875c4b9bb17b19327a5b004e91e20942d7a528a8c52f4eeb +size 117880 diff --git a/detection/TEST/07.17.18-Common_Tomato_Diseases_Canker-258x300.xml b/detection/TEST/07.17.18-Common_Tomato_Diseases_Canker-258x300.xml new file mode 100644 index 0000000000000000000000000000000000000000..696f678b7e23d13e33a8ab5fabf92f14eb8ea124 --- /dev/null +++ b/detection/TEST/07.17.18-Common_Tomato_Diseases_Canker-258x300.xml @@ -0,0 +1,23 @@ + + tomato leaf bacterial spot + 07.17.18-Common_Tomato_Diseases_Canker-258x300.jpg + + 258 + 300 + 3 + + 0 + + Tomato leaf bacterial spot + Unspecified + 0 + 0 + 0 + + 22 + 9 + 235 + 284 + + + \ No newline at end of file diff --git a/detection/TEST/0796.20graylssymt.jpg b/detection/TEST/0796.20graylssymt.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9e8d7dd164d383288abc0874e3390efda22c5358 --- /dev/null +++ b/detection/TEST/0796.20graylssymt.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b616d93a4aa72ad932f05dd2ff1a0392139ce355a1b9d24f0e78cf71405a62c +size 30479 diff --git a/detection/TEST/0796.20graylssymt.xml b/detection/TEST/0796.20graylssymt.xml new file mode 100644 index 0000000000000000000000000000000000000000..b87737cc1a376e3bb05fbfe1111d722845186ee5 --- /dev/null +++ b/detection/TEST/0796.20graylssymt.xml @@ -0,0 +1,26 @@ + + leaf blight of corn + 0796.20graylssymt.jpg + /home/pranjali/Desktop/sem6/ML_Project/latestDataset/ leaf blight of corn /0796.20graylssymt.jpg + + Unknown + + + 432 + 350 + 3 + + 0 + + Corn leaf blight + Unspecified + 0 + 0 + + 2 + 46 + 431 + 324 + + + diff --git a/detection/TEST/0796.39maizerust.jpg b/detection/TEST/0796.39maizerust.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a0c87b7f93f098fdcef90a6e0a1f43a7f78634e6 --- /dev/null +++ b/detection/TEST/0796.39maizerust.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74f5150ebe2ad2efc2288e5d8764852c8616ae96b9cd0486b72e48c08fb3dc55 +size 33414 diff --git a/detection/TEST/0796.39maizerust.xml b/detection/TEST/0796.39maizerust.xml new file mode 100644 index 0000000000000000000000000000000000000000..b9da3ebe78713c0dcc5ade86f727aadd4d843d0d --- /dev/null +++ b/detection/TEST/0796.39maizerust.xml @@ -0,0 +1,26 @@ + + corn rust leaf + 0796.39maizerust.jpg + /home/davinder/ISDf/ corn rust leaf /0796.39maizerust.jpg + + Unknown + + + 432 + 287 + 3 + + 0 + + Corn rust leaf + Unspecified + 0 + 0 + + 40 + 3 + 405 + 269 + + + \ No newline at end of file diff --git a/detection/TEST/0796.40comrust.jpg b/detection/TEST/0796.40comrust.jpg new file mode 100644 index 0000000000000000000000000000000000000000..74ef1505d5c5d67b6717238be79aad192259dfae --- /dev/null +++ b/detection/TEST/0796.40comrust.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d81099827be9eea9fd64d18771a60680255ea1fa9a2d2dd9247d55c97df59556 +size 33671 diff --git a/detection/TEST/0796.40comrust.xml b/detection/TEST/0796.40comrust.xml new file mode 100644 index 0000000000000000000000000000000000000000..f9b69e40dda41d2aa6f17d8eb5ae54d5a807c7e9 --- /dev/null +++ b/detection/TEST/0796.40comrust.xml @@ -0,0 +1,26 @@ + + corn rust leaf + 0796.40comrust.jpg + /home/davinder/ISDf/ corn rust leaf /0796.40comrust.jpg + + Unknown + + + 432 + 268 + 3 + + 0 + + Corn rust leaf + Unspecified + 1 + 0 + + 1 + 15 + 398 + 268 + + + \ No newline at end of file diff --git a/detection/TEST/0796.47southrust.jpg b/detection/TEST/0796.47southrust.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4a897d68c500e3163d975bd84ac019561d970f2 --- /dev/null +++ b/detection/TEST/0796.47southrust.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d3bbdb56a902458d4bb09c2b16a117173048eb2f9dac5a25adaf5b87a32782e +size 38824 diff --git a/detection/TEST/0796.47southrust.xml b/detection/TEST/0796.47southrust.xml new file mode 100644 index 0000000000000000000000000000000000000000..3edb1d59596e5bf9e483e74e373003ba18f590c7 --- /dev/null +++ b/detection/TEST/0796.47southrust.xml @@ -0,0 +1,26 @@ + + corn rust leaf + 0796.47southrust.jpg + /home/davinder/ISDf/ corn rust leaf /0796.47southrust.jpg + + Unknown + + + 432 + 252 + 3 + + 0 + + Corn rust leaf + Unspecified + 1 + 0 + + 1 + 12 + 432 + 226 + + + \ No newline at end of file diff --git a/detection/TEST/0796.52srusttelia.jpg b/detection/TEST/0796.52srusttelia.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b0e1d6ff379a78b0ca20ac88b59d89574a4fcc75 --- /dev/null +++ b/detection/TEST/0796.52srusttelia.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d551e7c75cb72e01ddb13abdc7cc996e7727c54bb21556a552b82bebcd81f825 +size 37960 diff --git a/detection/TEST/0796.52srusttelia.xml b/detection/TEST/0796.52srusttelia.xml new file mode 100644 index 0000000000000000000000000000000000000000..89ed0a7b9746f20540b772600cc79129f10bc8a3 --- /dev/null +++ b/detection/TEST/0796.52srusttelia.xml @@ -0,0 +1,26 @@ + + corn rust leaf + 0796.52srusttelia.jpg + /home/davinder/ISDf/ corn rust leaf /0796.52srusttelia.jpg + + Unknown + + + 432 + 309 + 3 + + 0 + + Corn rust leaf + Unspecified + 1 + 0 + + 1 + 12 + 432 + 291 + + + \ No newline at end of file diff --git a/detection/TEST/07c.jpg b/detection/TEST/07c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..456c5e0f0b4827daee1bf2646b79c094aec3e472 --- /dev/null +++ b/detection/TEST/07c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4713b10521040b12bd472f7d83aca182cb240f99d6a214ec2c904cca3316e30a +size 83607 diff --git a/detection/TEST/07c.xml b/detection/TEST/07c.xml new file mode 100644 index 0000000000000000000000000000000000000000..f911d716e1b8a016ac5c5d390a753345ff2dfc1b --- /dev/null +++ b/detection/TEST/07c.xml @@ -0,0 +1,26 @@ + + leaf blight of corn + 07c.jpg + /home/pranjali/Desktop/sem6/ML_Project/latestDataset/ leaf blight of corn /07c.jpg + + Unknown + + + 675 + 414 + 3 + + 0 + + Corn leaf blight + Unspecified + 0 + 0 + + 38 + 55 + 653 + 406 + + + diff --git a/detection/TEST/07feb_ma_sbr3.JPG.jpg b/detection/TEST/07feb_ma_sbr3.JPG.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4f8197846d94f2c43d45e7ccd8beff82538ead4 --- /dev/null +++ b/detection/TEST/07feb_ma_sbr3.JPG.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8224271e90dba7b9bad497190ce77adbb394984e90890256f12bf78a785b392f +size 102822 diff --git a/detection/TEST/07feb_ma_sbr3.JPG.xml b/detection/TEST/07feb_ma_sbr3.JPG.xml new file mode 100644 index 0000000000000000000000000000000000000000..ea0c885ce6190e580c6ecdadb2c5622ff67b264f --- /dev/null +++ b/detection/TEST/07feb_ma_sbr3.JPG.xml @@ -0,0 +1,26 @@ + + soyabean leaf + 07feb_ma_sbr3.JPG.jpg + /media/master/Data/Sem6/ISDl/Pratik/ soyabean leaf /07feb_ma_sbr3.JPG.jpg + + Unknown + + + 1296 + 864 + 3 + + 0 + + Soyabean leaf + Unspecified + 0 + 0 + + 154 + 188 + 1049 + 810 + + + diff --git a/detection/TEST/0c.jpg b/detection/TEST/0c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b7680aee50d7f890433b1a9cf511a9f91b65426c --- /dev/null +++ b/detection/TEST/0c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b17c3e4a9dacb6144f7c6ae7e69366b5966f8bdc49bd5ac175450a9c2f60dcf +size 179797 diff --git a/detection/TEST/0c.xml b/detection/TEST/0c.xml new file mode 100644 index 0000000000000000000000000000000000000000..2b96724767843f29aa9e647e8a5d643c214598cd --- /dev/null +++ b/detection/TEST/0c.xml @@ -0,0 +1,26 @@ + + leaf blight of corn + 0c.jpg + /home/pranjali/Desktop/sem6/ML_Project/latestDataset/ leaf blight of corn /0c.jpg + + Unknown + + + 1170 + 501 + 3 + + 0 + + Corn leaf blight + Unspecified + 0 + 0 + + 6 + 4 + 1143 + 495 + + + diff --git a/detection/TEST/100983448.jpg b/detection/TEST/100983448.jpg new file mode 100644 index 0000000000000000000000000000000000000000..60e6b9716f489c1c9528c47576819967efbe4bc6 --- /dev/null +++ b/detection/TEST/100983448.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98d52f733e1e23c5f5059f3ce57c762a1e0fc26028abf8750105d0250c29f670 +size 33832 diff --git a/detection/TEST/100983448.xml b/detection/TEST/100983448.xml new file mode 100644 index 0000000000000000000000000000000000000000..dc5ae9fc1be11aadd096cbaff73c0fa6425e8769 --- /dev/null +++ b/detection/TEST/100983448.xml @@ -0,0 +1,26 @@ + + Tomato Early blight leaf + 100983448.jpg + /home/sohamp/Desktop/done/ Tomato Early blight leaf /100983448.jpg + + Unknown + + + 448 + 448 + 3 + + 0 + + Tomato Early blight leaf + Unspecified + 0 + 0 + + 47 + 25 + 406 + 433 + + + diff --git a/detection/TEST/10148582-green-leaf-of-pepper.jpg b/detection/TEST/10148582-green-leaf-of-pepper.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4efb0677437b11f1eeaf0fb2ec4155cac690425c --- /dev/null +++ b/detection/TEST/10148582-green-leaf-of-pepper.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18d27a2f69525db1028494ad8d3a54871f431133017ebcc2fa432da18bb50205 +size 73702 diff --git a/detection/TEST/10148582-green-leaf-of-pepper.xml b/detection/TEST/10148582-green-leaf-of-pepper.xml new file mode 100644 index 0000000000000000000000000000000000000000..a2e828ee4a57aa29f79f49eab9e59362041918fa --- /dev/null +++ b/detection/TEST/10148582-green-leaf-of-pepper.xml @@ -0,0 +1,26 @@ + + bell pepper leaf + 10148582-green-leaf-of-pepper.jpg + /media/master/Data/Sem6/ISDl/Pratik/ bell pepper leaf /10148582-green-leaf-of-pepper.jpg + + Unknown + + + 800 + 582 + 3 + + 0 + + Bell_pepper leaf + Unspecified + 0 + 0 + + 106 + 60 + 747 + 539 + + + diff --git a/detection/TEST/11-40580_5.jpg b/detection/TEST/11-40580_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dae4023de0c2541741d5d9fccdeed69a4b85d0b2 --- /dev/null +++ b/detection/TEST/11-40580_5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f62f0f3eabfd7d955f212d852f4143e8f0bb49077e9350f641696749f595d01 +size 112996 diff --git a/detection/TEST/11-40580_5.xml b/detection/TEST/11-40580_5.xml new file mode 100644 index 0000000000000000000000000000000000000000..a63134f28530e9e72185f0b5d2165ea502697f77 --- /dev/null +++ b/detection/TEST/11-40580_5.xml @@ -0,0 +1,127 @@ + + tomato leaf yellow virus + 11-40580_5.jpg + + 400 + 200 + 3 + + 0 + + Tomato leaf yellow virus + Unspecified + 0 + 0 + 0 + + 109 + 4 + 167 + 56 + + + + Tomato leaf yellow virus + Unspecified + 0 + 0 + 0 + + 7 + 35 + 104 + 114 + + + + Tomato leaf yellow virus + Unspecified + 0 + 0 + 0 + + 110 + 140 + 148 + 183 + + + + Tomato leaf yellow virus + Unspecified + 0 + 0 + 0 + + 292 + 114 + 358 + 182 + + + + Tomato leaf yellow virus + Unspecified + 0 + 0 + 0 + + 253 + 74 + 320 + 124 + + + + Tomato leaf yellow virus + Unspecified + 0 + 0 + 0 + + 72 + 67 + 127 + 101 + + + + Tomato leaf yellow virus + Unspecified + 0 + 0 + 0 + + 132 + 124 + 200 + 170 + + + + Tomato leaf yellow virus + Unspecified + 0 + 0 + 0 + + 135 + 76 + 202 + 115 + + + + Tomato leaf yellow virus + Unspecified + 0 + 0 + 0 + + 183 + 63 + 246 + 129 + + + \ No newline at end of file diff --git a/detection/TEST/110822-206-Tomato-blight.jpg b/detection/TEST/110822-206-Tomato-blight.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02ecc231fed35c6955e181c3183a743a3b286840 --- /dev/null +++ b/detection/TEST/110822-206-Tomato-blight.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd87cea75ee543ab40c76fb94cbc40e42d1c848e5f5dd7756e56f44d0367c734 +size 169278 diff --git a/detection/TEST/110822-206-Tomato-blight.xml b/detection/TEST/110822-206-Tomato-blight.xml new file mode 100644 index 0000000000000000000000000000000000000000..b003dce374e84a531ddccd963f19e5bc1e7d6db6 --- /dev/null +++ b/detection/TEST/110822-206-Tomato-blight.xml @@ -0,0 +1,23 @@ + + tomato leaf late blight + 110822-206-Tomato-blight.jpg + + 750 + 499 + 3 + + 0 + + Tomato leaf late blight + Unspecified + 0 + 0 + 0 + + 35 + 6 + 698 + 424 + + + \ No newline at end of file diff --git a/detection/TEST/12-19striprustJIM.jpg b/detection/TEST/12-19striprustJIM.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5cd24453cee9106889a09994ee14e6ce1d2ac04a --- /dev/null +++ b/detection/TEST/12-19striprustJIM.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3072867b4b451739759fa7b4e26de9018e72e9f85ea5069b8bd2179dc20a4694 +size 19641 diff --git a/detection/TEST/12-19striprustJIM.xml b/detection/TEST/12-19striprustJIM.xml new file mode 100644 index 0000000000000000000000000000000000000000..0ce6ca6c84a316da56f69d6ebcff226d29b1395d --- /dev/null +++ b/detection/TEST/12-19striprustJIM.xml @@ -0,0 +1,26 @@ + + corn rust leaf + 12-19striprustJIM.jpg + /home/davinder/ISDf/ corn rust leaf /12-19striprustJIM.jpg + + Unknown + + + 185 + 500 + 3 + + 0 + + Corn rust leaf + Unspecified + 1 + 0 + + 5 + 6 + 177 + 500 + + + \ No newline at end of file diff --git a/detection/TEST/1234080-Early-Blight.jpg b/detection/TEST/1234080-Early-Blight.jpg new file mode 100644 index 0000000000000000000000000000000000000000..feda884dd81136dd105920b111248f00f8595ac7 --- /dev/null +++ b/detection/TEST/1234080-Early-Blight.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:236d96cdae7b29039c3d93147f447394c78a077fec42ce5aadbd0506a0aca0cb +size 480134 diff --git a/detection/TEST/1234080-Early-Blight.xml b/detection/TEST/1234080-Early-Blight.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a8f0bfea9f51a31c40008b372767acd204c628c --- /dev/null +++ b/detection/TEST/1234080-Early-Blight.xml @@ -0,0 +1,26 @@ + + Tomato Early blight leaf + 1234080-Early-Blight.jpg + /home/sohamp/Desktop/done/ Tomato Early blight leaf /1234080-Early-Blight.jpg + + Unknown + + + 768 + 768 + 3 + + 0 + + Tomato Early blight leaf + Unspecified + 0 + 0 + + 180 + 86 + 691 + 661 + + + diff --git a/detection/TEST/1321189.jpg b/detection/TEST/1321189.jpg new file mode 100644 index 0000000000000000000000000000000000000000..78a4ce889765a95f9197719ab957ded2c0190935 --- /dev/null +++ b/detection/TEST/1321189.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0269c07a3081df41e9e8e5a7ee3c18394bb81fd8b0c6bff78b610d993b72a14d +size 106355 diff --git a/detection/TEST/1321189.xml b/detection/TEST/1321189.xml new file mode 100644 index 0000000000000000000000000000000000000000..4f664afac91363c262527a6cbf4a81482e5cf752 --- /dev/null +++ b/detection/TEST/1321189.xml @@ -0,0 +1,26 @@ + + leaf blight of corn + 1321189.jpg + /home/pranjali/Desktop/sem6/ML_Project/latestDataset/ leaf blight of corn /1321189.jpg + + Unknown + + + 590 + 200 + 3 + + 0 + + Corn leaf blight + Unspecified + 1 + 0 + + 2 + 9 + 590 + 192 + + + diff --git a/detection/TEST/1355.50commonrust.jpg b/detection/TEST/1355.50commonrust.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a433d0773669b9959046f3c4392056464073b436 --- /dev/null +++ b/detection/TEST/1355.50commonrust.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:376de5dfd4c5f0385e483a9a9e8b64d58c271787b9c0f72da2713cfb08ab702d +size 23587 diff --git a/detection/TEST/1355.50commonrust.xml b/detection/TEST/1355.50commonrust.xml new file mode 100644 index 0000000000000000000000000000000000000000..80fc88411d0b74833d9c15e7f517013e247f0372 --- /dev/null +++ b/detection/TEST/1355.50commonrust.xml @@ -0,0 +1,26 @@ + + corn rust leaf + 1355.50commonrust.jpg + /home/davinder/ISDf/ corn rust leaf /1355.50commonrust.jpg + + Unknown + + + 288 + 419 + 3 + + 0 + + Corn rust leaf + Unspecified + 1 + 0 + + 1 + 1 + 277 + 403 + + + \ No newline at end of file diff --git a/detection/TEST/1421_0.jpeg?itok=FMtmgePj.jpg b/detection/TEST/1421_0.jpeg?itok=FMtmgePj.jpg new file mode 100644 index 0000000000000000000000000000000000000000..00c88d43e492445de27c223cfb812706cad88a34 --- /dev/null +++ b/detection/TEST/1421_0.jpeg?itok=FMtmgePj.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c53ad8d40c38debfbc0b79a87d0f3649c20b933a65f5b78a6931f59d06aad498 +size 59758 diff --git a/detection/TEST/1421_0.jpeg?itok=FMtmgePj.xml b/detection/TEST/1421_0.jpeg?itok=FMtmgePj.xml new file mode 100644 index 0000000000000000000000000000000000000000..75528e5beb0c11955b67b583cc61719153807bdb --- /dev/null +++ b/detection/TEST/1421_0.jpeg?itok=FMtmgePj.xml @@ -0,0 +1,26 @@ + + Potato leaf late blight + 1421_0.jpeg?itok=FMtmgePj.jpg + /media/master/Data/Sem6/ISDl/Pratik/ Potato leaf late blight /1421_0.jpeg?itok=FMtmgePj.jpg + + Unknown + + + 640 + 480 + 3 + + 0 + + Potato leaf late blight + Unspecified + 0 + 0 + + 6 + 38 + 617 + 453 + + + diff --git a/detection/TEST/160314_web.jpg b/detection/TEST/160314_web.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0da1c0b25c8284ac9c97fe8b58e5ead606975ac1 --- /dev/null +++ b/detection/TEST/160314_web.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23fb26f404234f8f4a24641c038cac24dade2a9fa70c5da27c6aa2328a8270cd +size 32963 diff --git a/detection/TEST/160314_web.xml b/detection/TEST/160314_web.xml new file mode 100644 index 0000000000000000000000000000000000000000..043ce071d03c1fdab193089883e6a366a3f8c050 --- /dev/null +++ b/detection/TEST/160314_web.xml @@ -0,0 +1,26 @@ + + leaf blight of corn + 160314_web.jpg + /home/pranjali/Desktop/sem6/ML_Project/latestDataset/ leaf blight of corn /160314_web.jpg + + Unknown + + + 400 + 533 + 3 + + 0 + + Corn leaf blight + Unspecified + 1 + 0 + + 15 + 1 + 386 + 533 + + + diff --git a/detection/TEST/1684.jpg b/detection/TEST/1684.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e079c12bdce1f537824914782a15257df5a23f75 --- /dev/null +++ b/detection/TEST/1684.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc0ec6abdabe070a8e98749360809fc8cca196e21661f93a038d75b45e13b18d +size 34789 diff --git a/detection/TEST/1684.xml b/detection/TEST/1684.xml new file mode 100644 index 0000000000000000000000000000000000000000..6bb25a7904855d17525da2d3906e3dc5a0058f16 --- /dev/null +++ b/detection/TEST/1684.xml @@ -0,0 +1,74 @@ + + tomato leaf + 1684.jpg + /home/sohamp/Desktop/done/ tomato leaf /1684.jpg + + Unknown + + + 563 + 631 + 3 + + 0 + + Tomato leaf + Unspecified + 0 + 0 + + 325 + 141 + 544 + 403 + + + + Tomato leaf + Unspecified + 1 + 0 + + 159 + 1 + 348 + 325 + + + + Tomato leaf + Unspecified + 0 + 0 + + 29 + 252 + 312 + 427 + + + + Tomato leaf + Unspecified + 0 + 0 + + 5 + 469 + 300 + 602 + + + + Tomato leaf + Unspecified + 0 + 0 + + 322 + 469 + 553 + 606 + + + diff --git a/detection/TEST/17fc47.jpg b/detection/TEST/17fc47.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f3ed0ac17d71feedc6714a0573a4d58dc2c78e4 --- /dev/null +++ b/detection/TEST/17fc47.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e75892c6833fde9fddcf03d8d0529863c2827c91f971ac18b92d8dc2546a769d +size 228890 diff --git a/detection/TEST/17fc47.xml b/detection/TEST/17fc47.xml new file mode 100644 index 0000000000000000000000000000000000000000..ed8b27ca80635e74d41ee17dc59a804fe65c1180 --- /dev/null +++ b/detection/TEST/17fc47.xml @@ -0,0 +1,88 @@ + + tomato leaf yellow virus + 17fc47.jpg + + 768 + 1024 + 3 + + 0 + + Tomato leaf yellow virus + Unspecified + 0 + 0 + 0 + + 509 + 56 + 768 + 179 + + + + Tomato leaf yellow virus + Unspecified + 0 + 0 + 0 + + 341 + 102 + 465 + 205 + + + + Tomato leaf yellow virus + Unspecified + 0 + 0 + 0 + + 510 + 221 + 655 + 470 + + + + Tomato leaf yellow virus + Unspecified + 0 + 0 + 0 + + 174 + 374 + 341 + 606 + + + + Tomato leaf yellow virus + Unspecified + 0 + 0 + 0 + + 273 + 300 + 454 + 547 + + + + Tomato leaf yellow virus + Unspecified + 0 + 0 + 0 + + 418 + 265 + 554 + 534 + + + \ No newline at end of file diff --git a/detection/TEST/185161-004-EAF28842.jpg b/detection/TEST/185161-004-EAF28842.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d81a9f42920bbf1bd63899b21ad51c0458972c48 --- /dev/null +++ b/detection/TEST/185161-004-EAF28842.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93337329613ae06077f080ee91254267039c1fb27e04eb090e6c81f99a90fda2 +size 44053 diff --git a/detection/TEST/185161-004-EAF28842.xml b/detection/TEST/185161-004-EAF28842.xml new file mode 100644 index 0000000000000000000000000000000000000000..a66201010bea2a7d000d49e9b547e64fd2517ed3 --- /dev/null +++ b/detection/TEST/185161-004-EAF28842.xml @@ -0,0 +1,26 @@ + + apple rust leaf + 185161-004-EAF28842.jpg + /home/davinder/ISDf/ apple rust leaf /185161-004-EAF28842.jpg + + Unknown + + + 424 + 450 + 3 + + 0 + + Apple rust leaf + Unspecified + 1 + 0 + + 1 + 1 + 422 + 448 + + + diff --git a/detection/TEST/18c.jpg b/detection/TEST/18c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e591e9e344a69c378a33dcf43bc571fb37de87d --- /dev/null +++ b/detection/TEST/18c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a33cccc63bbb630a1c07cc04a1caa2ee0bbfb8f855529328076b3e725950afc +size 22562 diff --git a/detection/TEST/18c.xml b/detection/TEST/18c.xml new file mode 100644 index 0000000000000000000000000000000000000000..588129ea50ba6d801b594370232c20e2b817657f --- /dev/null +++ b/detection/TEST/18c.xml @@ -0,0 +1,23 @@ + + tomato leaf late blight + 18c.jpg + + 350 + 255 + 3 + + 0 + + Tomato leaf late blight + Unspecified + 0 + 0 + 0 + + 15 + 14 + 322 + 245 + + + \ No newline at end of file diff --git a/detection/TEST/1b321015-6e33-4f18-aade-888f4383fe92.jpeg.jpg b/detection/TEST/1b321015-6e33-4f18-aade-888f4383fe92.jpeg.jpg new file mode 100644 index 0000000000000000000000000000000000000000..03750adf128184545f93e356639b3dc846e5d848 --- /dev/null +++ b/detection/TEST/1b321015-6e33-4f18-aade-888f4383fe92.jpeg.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7af1a2678a7114632f0274947888e29794321fc9e5edc25dd78d16d42017d685 +size 100303 diff --git a/detection/TEST/1b321015-6e33-4f18-aade-888f4383fe92.jpeg.xml b/detection/TEST/1b321015-6e33-4f18-aade-888f4383fe92.jpeg.xml new file mode 100644 index 0000000000000000000000000000000000000000..e17600386ab1dafdda4446ac65c7b85d4f019260 --- /dev/null +++ b/detection/TEST/1b321015-6e33-4f18-aade-888f4383fe92.jpeg.xml @@ -0,0 +1,26 @@ + + Apple Scab Leaf + 1b321015-6e33-4f18-aade-888f4383fe92.jpeg.jpg + /home/davinder/ISDf/ Apple Scab Leaf /1b321015-6e33-4f18-aade-888f4383fe92.jpeg.jpg + + Unknown + + + 768 + 514 + 3 + + 0 + + Apple Scab Leaf + Unspecified + 0 + 0 + + 208 + 93 + 651 + 439 + + + diff --git a/detection/TEST/20090710-lateblight.jpg b/detection/TEST/20090710-lateblight.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b440d34711afa0527dac1ab61bb59d2e2f223ede --- /dev/null +++ b/detection/TEST/20090710-lateblight.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f6afbd158df153a151b3b0e543d24268b902c541520c1c4fb0ee0b34fce0cce +size 69917 diff --git a/detection/TEST/20090710-lateblight.xml b/detection/TEST/20090710-lateblight.xml new file mode 100644 index 0000000000000000000000000000000000000000..cab0bc5e06438fa7808e04239e52ce190898c121 --- /dev/null +++ b/detection/TEST/20090710-lateblight.xml @@ -0,0 +1,26 @@ + + Potato leaf late blight + 20090710-lateblight.jpg + /media/master/Data/Sem6/ISDl/Pratik/ Potato leaf late blight /20090710-lateblight.jpg + + Unknown + + + 500 + 364 + 3 + + 0 + + Potato leaf late blight + Unspecified + 1 + 0 + + 32 + 1 + 488 + 351 + + + diff --git a/detection/TEST/2011-011.jpg b/detection/TEST/2011-011.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a620ff4897ee18112c12d6470794b5e835e32190 --- /dev/null +++ b/detection/TEST/2011-011.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0902a4df3831c69d0580f0b746a8ea277d317e358dcd05d5304c13ac539996e7 +size 12608 diff --git a/detection/TEST/2011-011.xml b/detection/TEST/2011-011.xml new file mode 100644 index 0000000000000000000000000000000000000000..3bf5f9da6f016e8452200ac91f7429f19072303a --- /dev/null +++ b/detection/TEST/2011-011.xml @@ -0,0 +1,26 @@ + + apple rust leaf + 2011-011.jpg + /home/davinder/ISDf/ apple rust leaf /2011-011.jpg + + Unknown + + + 500 + 375 + 3 + + 0 + + Apple rust leaf + Unspecified + 1 + 0 + + 63 + 7 + 455 + 375 + + + diff --git a/detection/TEST/2013-08-20-06.jpg b/detection/TEST/2013-08-20-06.jpg new file mode 100644 index 0000000000000000000000000000000000000000..51f662a5e2c819f080061211115ac1bbe17fb1e9 --- /dev/null +++ b/detection/TEST/2013-08-20-06.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f462b769606f79703c44a2c595f57269924bb41ea335b94cbff099bc5c2525a2 +size 250402 diff --git a/detection/TEST/2013-08-20-06.xml b/detection/TEST/2013-08-20-06.xml new file mode 100644 index 0000000000000000000000000000000000000000..a0a98860931fb46e63ed3be96a6dad681fbfebb8 --- /dev/null +++ b/detection/TEST/2013-08-20-06.xml @@ -0,0 +1,50 @@ + + tomato leaf + 2013-08-20-06.jpg + /home/sohamp/Desktop/done/ tomato leaf /2013-08-20-06.jpg + + Unknown + + + 1600 + 1200 + 3 + + 0 + + Tomato leaf + Unspecified + 0 + 0 + + 851 + 690 + 1485 + 1079 + + + + Tomato leaf + Unspecified + 0 + 0 + + 406 + 251 + 660 + 781 + + + + Tomato leaf + Unspecified + 0 + 0 + + 1024 + 300 + 1485 + 554 + + + diff --git a/detection/TEST/20130519cedarapplerust.jpg b/detection/TEST/20130519cedarapplerust.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3cf0a88cf86b165c2f0dfcd36463316e5555c797 --- /dev/null +++ b/detection/TEST/20130519cedarapplerust.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20adb414a8162e2dfd875b16ab9ba78b80713e62242d2a57497d1cbf22f621c1 +size 253998 diff --git a/detection/TEST/20130519cedarapplerust.xml b/detection/TEST/20130519cedarapplerust.xml new file mode 100644 index 0000000000000000000000000000000000000000..d2ab6bc07caa80f2640cae0b689fda5d5462508c --- /dev/null +++ b/detection/TEST/20130519cedarapplerust.xml @@ -0,0 +1,26 @@ + + apple rust leaf + 20130519cedarapplerust.jpg + /home/davinder/ISDf/ apple rust leaf /20130519cedarapplerust.jpg + + Unknown + + + 575 + 431 + 3 + + 0 + + Apple rust leaf + Unspecified + 1 + 0 + + 1 + 3 + 541 + 424 + + + diff --git a/detection/TEST/20130610_110514.jpg b/detection/TEST/20130610_110514.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6afe68c3f740e3fb01c1090551d2cf658a3ec4a9 --- /dev/null +++ b/detection/TEST/20130610_110514.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:326ddb5fd0ec65489a154a583d968dc63177c9e244f82f12a55f42c2eada807f +size 1575194 diff --git a/detection/TEST/20130610_110514.xml b/detection/TEST/20130610_110514.xml new file mode 100644 index 0000000000000000000000000000000000000000..9308d890587ee3081678a011147468df15c17498 --- /dev/null +++ b/detection/TEST/20130610_110514.xml @@ -0,0 +1,26 @@ + + apple rust leaf + 20130610_110514.jpg + /home/davinder/ISDf/ apple rust leaf /20130610_110514.jpg + + Unknown + + + 3264 + 2448 + 3 + + 0 + + Apple rust leaf + Unspecified + 0 + 0 + + 331 + 290 + 2988 + 2244 + + + diff --git a/detection/TEST/20130802_111632.jpg b/detection/TEST/20130802_111632.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5f3442267ca92ba187f07572028809e1097a703d --- /dev/null +++ b/detection/TEST/20130802_111632.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b383d0ba58fbd71926956fe38016ef2cb1de8dd1cf09534c289b6d00b9a1e6bb +size 1938294 diff --git a/detection/TEST/20130802_111632.xml b/detection/TEST/20130802_111632.xml new file mode 100644 index 0000000000000000000000000000000000000000..99874c860f1c0906df89a0f85ebf0f8e9a5ae0a5 --- /dev/null +++ b/detection/TEST/20130802_111632.xml @@ -0,0 +1,26 @@ + + apple rust leaf + 20130802_111632.jpg + /home/davinder/ISDf/ apple rust leaf /20130802_111632.jpg + + Unknown + + + 3264 + 2448 + 3 + + 0 + + Apple rust leaf + Unspecified + 1 + 0 + + 82 + 94 + 3264 + 2281 + + + diff --git a/detection/TEST/2013Corn_GrayLeafSpot_0815_0003.JPG.jpg b/detection/TEST/2013Corn_GrayLeafSpot_0815_0003.JPG.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02d808f113524f4480b84145330753a350e5d9f1 --- /dev/null +++ b/detection/TEST/2013Corn_GrayLeafSpot_0815_0003.JPG.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:366cac0649df317e9cdfbc64ec11c8b3da8e15aa7db164a9bf84db5c6236dfa3 +size 389397 diff --git a/detection/TEST/2013Corn_GrayLeafSpot_0815_0003.JPG.xml b/detection/TEST/2013Corn_GrayLeafSpot_0815_0003.JPG.xml new file mode 100644 index 0000000000000000000000000000000000000000..c51d733e12620b83fa8b83b01f4f7ced3da20096 --- /dev/null +++ b/detection/TEST/2013Corn_GrayLeafSpot_0815_0003.JPG.xml @@ -0,0 +1,26 @@ + + leaf blight of corn + 2013Corn_GrayLeafSpot_0815_0003.JPG.jpg + /home/pranjali/Desktop/sem6/ML_Project/latestDataset/ leaf blight of corn /2013Corn_GrayLeafSpot_0815_0003.JPG.jpg + + Unknown + + + 1600 + 1200 + 3 + + 0 + + Corn leaf blight + Unspecified + 1 + 0 + + 326 + 1 + 1350 + 1196 + + + diff --git a/detection/TEST/2015070295153021.jpg b/detection/TEST/2015070295153021.jpg new file mode 100644 index 0000000000000000000000000000000000000000..152534a2bc25265d011fd5c14f70dc9b5c0a0ffa --- /dev/null +++ b/detection/TEST/2015070295153021.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e777d1b6829140e66573f918c0f1681ca4cd2979859c37435c84977153ec223 +size 225240 diff --git a/detection/TEST/2015070295153021.xml b/detection/TEST/2015070295153021.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a4a8e1edf505d006a402971f74d64892a3926e0 --- /dev/null +++ b/detection/TEST/2015070295153021.xml @@ -0,0 +1,26 @@ + + leaf blight of corn + 2015070295153021.jpg + /home/pranjali/Desktop/sem6/ML_Project/latestDataset/ leaf blight of corn /2015070295153021.jpg + + Unknown + + + 1224 + 1632 + 3 + + 0 + + Corn leaf blight + Unspecified + 1 + 0 + + 346 + 5 + 1212 + 1632 + + + diff --git a/detection/TEST/20180511_090912-14gtw8a-e1526047952754.jpg b/detection/TEST/20180511_090912-14gtw8a-e1526047952754.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d6c2917500e463ceca8738c128a9fc989c400b5 --- /dev/null +++ b/detection/TEST/20180511_090912-14gtw8a-e1526047952754.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93eaedfb1c29ec24e347500fa9e1e5556ba94af539254caac79c8b471d11b8df +size 1872287 diff --git a/detection/TEST/20180511_090912-14gtw8a-e1526047952754.xml b/detection/TEST/20180511_090912-14gtw8a-e1526047952754.xml new file mode 100644 index 0000000000000000000000000000000000000000..2e8590a207a1511cdcbcbcb06628e530f542b8cf --- /dev/null +++ b/detection/TEST/20180511_090912-14gtw8a-e1526047952754.xml @@ -0,0 +1,38 @@ + + apple leaf + 20180511_090912-14gtw8a-e1526047952754.jpg + /home/davinder/ISDf/ apple leaf /20180511_090912-14gtw8a-e1526047952754.jpg + + Unknown + + + 2988 + 5312 + 3 + + 0 + + Apple leaf + Unspecified + 0 + 0 + + 32 + 1289 + 2304 + 3655 + + + + Apple leaf + Unspecified + 0 + 0 + + 349 + 361 + 1704 + 1128 + + + diff --git a/detection/TEST/20180511_091133-24l1vhg-e1526047988236.jpg b/detection/TEST/20180511_091133-24l1vhg-e1526047988236.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ae63fe045f35fa500836d9a9573e7afa19b600b6 --- /dev/null +++ b/detection/TEST/20180511_091133-24l1vhg-e1526047988236.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:646de55f7314f6994e453a8b5306fdf63e7b8f66a28b29fa9274be3b4d763883 +size 1722834 diff --git a/detection/TEST/20180511_091133-24l1vhg-e1526047988236.xml b/detection/TEST/20180511_091133-24l1vhg-e1526047988236.xml new file mode 100644 index 0000000000000000000000000000000000000000..e8c33819a46f08c8a5a6848c1e5ed1d823f5e2ab --- /dev/null +++ b/detection/TEST/20180511_091133-24l1vhg-e1526047988236.xml @@ -0,0 +1,26 @@ + + apple leaf + 20180511_091133-24l1vhg-e1526047988236.jpg + /home/davinder/ISDf/ apple leaf /20180511_091133-24l1vhg-e1526047988236.jpg + + Unknown + + + 2988 + 5312 + 3 + + 0 + + Apple leaf + Unspecified + 0 + 0 + + 149 + 1411 + 2410 + 4317 + + + diff --git a/detection/TEST/20180511_091252-1gy5xf5-e1526048000596.jpg b/detection/TEST/20180511_091252-1gy5xf5-e1526048000596.jpg new file mode 100644 index 0000000000000000000000000000000000000000..598aa28b5eb6deb983b656fcb40accb62480952c --- /dev/null +++ b/detection/TEST/20180511_091252-1gy5xf5-e1526048000596.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa297cdf285ef4fd70ef7561b0f80f212d169a075ab01e6ea15a39b49788d4bb +size 1813672 diff --git a/detection/TEST/20180511_091252-1gy5xf5-e1526048000596.xml b/detection/TEST/20180511_091252-1gy5xf5-e1526048000596.xml new file mode 100644 index 0000000000000000000000000000000000000000..eff6d831f678d15f02c5b69177cdd5bf7529638a --- /dev/null +++ b/detection/TEST/20180511_091252-1gy5xf5-e1526048000596.xml @@ -0,0 +1,26 @@ + + apple leaf + 20180511_091252-1gy5xf5-e1526048000596.jpg + /home/davinder/ISDf/ apple leaf /20180511_091252-1gy5xf5-e1526048000596.jpg + + Unknown + + + 2988 + 5312 + 3 + + 0 + + Apple leaf + Unspecified + 0 + 0 + + 15 + 1422 + 2221 + 4144 + + + diff --git a/detection/TEST/2256-body-1501555581-1.jpg b/detection/TEST/2256-body-1501555581-1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0fafc1edc1dcfc5a2a82c87f372cddf8a55e7b5a --- /dev/null +++ b/detection/TEST/2256-body-1501555581-1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:851941010e7f34ff324b3891139d55c9615272153e26a570732b81cd5f8b4930 +size 468393 diff --git a/detection/TEST/2256-body-1501555581-1.xml b/detection/TEST/2256-body-1501555581-1.xml new file mode 100644 index 0000000000000000000000000000000000000000..b626ee1d238fa3e514413dd4ab971b2102e8e1ce --- /dev/null +++ b/detection/TEST/2256-body-1501555581-1.xml @@ -0,0 +1,26 @@ + + corn rust leaf + 2256-body-1501555581-1.jpg + /home/davinder/ISDf/ corn rust leaf /2256-body-1501555581-1.jpg + + Unknown + + + 3264 + 2448 + 3 + + 0 + + Corn rust leaf + Unspecified + 0 + 0 + + 3 + 8 + 3239 + 2416 + + + \ No newline at end of file diff --git a/detection/TEST/2540_600.jpg b/detection/TEST/2540_600.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e32f28b5afb46e4df4fb82410e1abfbd2c1aa41 --- /dev/null +++ b/detection/TEST/2540_600.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64f8a9c1c9ca88b4f82e655a9c7ac2eb7f5f34ce9916d244cc9fb21c5d5e8407 +size 29235 diff --git a/detection/TEST/2540_600.xml b/detection/TEST/2540_600.xml new file mode 100644 index 0000000000000000000000000000000000000000..1198cd7252ae1d49173e5c78cc268df1cb3e8597 --- /dev/null +++ b/detection/TEST/2540_600.xml @@ -0,0 +1,26 @@ + + Potato leaf late blight + 2540_600.jpg + /media/master/Data/Sem6/ISDl/Pratik/ Potato leaf late blight /2540_600.jpg + + Unknown + + + 400 + 473 + 3 + + 0 + + Potato leaf late blight + Unspecified + 0 + 0 + + 81 + 15 + 361 + 424 + + + diff --git a/detection/TEST/28-500x375.jpg b/detection/TEST/28-500x375.jpg new file mode 100644 index 0000000000000000000000000000000000000000..70ef8c2dbfbd6dac64887aa0913a62389110b626 --- /dev/null +++ b/detection/TEST/28-500x375.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb95aeef21638c09143a6f15c39c65eb7be22e7c752730c648ed7b60c6d50d8 +size 25490 diff --git a/detection/TEST/28-500x375.xml b/detection/TEST/28-500x375.xml new file mode 100644 index 0000000000000000000000000000000000000000..33ad6a6ced5748aff85e74f791b03281db3ad09f --- /dev/null +++ b/detection/TEST/28-500x375.xml @@ -0,0 +1,38 @@ + + Apple Scab Leaf + 28-500x375.jpg + /home/davinder/ISDf/ Apple Scab Leaf /28-500x375.jpg + + Unknown + + + 500 + 375 + 3 + + 0 + + Apple Scab Leaf + Unspecified + 0 + 0 + + 149 + 37 + 460 + 323 + + + + Apple Scab Leaf + Unspecified + 0 + 0 + + 51 + 167 + 191 + 316 + + + diff --git a/detection/TEST/2STEM.jpg b/detection/TEST/2STEM.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0ace8c02e12ec5101528226c1d16d0703920c1cb --- /dev/null +++ b/detection/TEST/2STEM.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8844aed418d61e8db0e2ef68c9da1ede9c0e3800e0756b6fbf02e0247ad1b7c +size 200887 diff --git a/detection/TEST/2STEM.xml b/detection/TEST/2STEM.xml new file mode 100644 index 0000000000000000000000000000000000000000..09cda8e83faa43f802e70575ea1674fb5086873a --- /dev/null +++ b/detection/TEST/2STEM.xml @@ -0,0 +1,23 @@ + + Tomato Septoria leaf spot + 2STEM.jpg + + 367 + 640 + 3 + + 0 + + Tomato Septoria leaf spot + Unspecified + 0 + 0 + 0 + + 41 + 9 + 332 + 625 + + + \ No newline at end of file diff --git a/detection/TEST/2septoria-tomato.jpg b/detection/TEST/2septoria-tomato.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7393a8cf6c548949c980683b3b661971e851aeab --- /dev/null +++ b/detection/TEST/2septoria-tomato.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3404b141d9bda7cea19fa8dff6cef38da2a6e3f0a38fb6778713118578c13fc +size 34536 diff --git a/detection/TEST/2septoria-tomato.xml b/detection/TEST/2septoria-tomato.xml new file mode 100644 index 0000000000000000000000000000000000000000..cb94df368330f26386b6c05e31c9b7bbde6ffda2 --- /dev/null +++ b/detection/TEST/2septoria-tomato.xml @@ -0,0 +1,36 @@ + + Tomato Septoria leaf spot + 2septoria-tomato.jpg + + 430 + 290 + 3 + + 0 + + Tomato Septoria leaf spot + Unspecified + 0 + 0 + 0 + + 27 + 14 + 315 + 268 + + + + Tomato Septoria leaf spot + Unspecified + 0 + 0 + 0 + + 198 + 104 + 403 + 281 + + + \ No newline at end of file diff --git a/detection/TEST/3023.jpg b/detection/TEST/3023.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bff41cec774a1c5b0ef912d12273fa9638742e37 --- /dev/null +++ b/detection/TEST/3023.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e8b82493c841d55dc0c3d43ae6dde79e03beaaf5cb1f425acaa44cffd8f1c99 +size 131200 diff --git a/detection/TEST/3023.xml b/detection/TEST/3023.xml new file mode 100644 index 0000000000000000000000000000000000000000..6dac4284794b662f81432fc5991fe388ac8b7d4c --- /dev/null +++ b/detection/TEST/3023.xml @@ -0,0 +1,86 @@ + + Potato leaf early blight + 3023.jpg + /media/master/Data/Sem6/ISDl/Pratik/ Potato leaf early blight /3023.jpg + + Unknown + + + 1024 + 768 + 3 + + 0 + + Potato leaf early blight + Unspecified + 0 + 0 + + 397 + 320 + 681 + 495 + + + + Potato leaf early blight + Unspecified + 0 + 0 + + 213 + 176 + 378 + 456 + + + + Potato leaf early blight + Unspecified + 0 + 0 + + 517 + 532 + 686 + 736 + + + + Potato leaf early blight + Unspecified + 0 + 0 + + 594 + 59 + 812 + 230 + + + + Potato leaf early blight + Unspecified + 0 + 0 + + 433 + 149 + 506 + 236 + + + + Potato leaf early blight + Unspecified + 0 + 0 + + 64 + 394 + 246 + 484 + + + diff --git a/detection/TEST/35589125035_662dd5b258_b.jpg b/detection/TEST/35589125035_662dd5b258_b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d0c55c23daac3361ace675697d2d32820c97b340 --- /dev/null +++ b/detection/TEST/35589125035_662dd5b258_b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d20cc643fdfbb07db3616a50de0a2280383e134fa8f06ca5522e07c0cfc25aa9 +size 147502 diff --git a/detection/TEST/35589125035_662dd5b258_b.xml b/detection/TEST/35589125035_662dd5b258_b.xml new file mode 100644 index 0000000000000000000000000000000000000000..843bb915cd480f27135374e04c10ccb5154f8d78 --- /dev/null +++ b/detection/TEST/35589125035_662dd5b258_b.xml @@ -0,0 +1,26 @@ + + grape leaf black rot + 35589125035_662dd5b258_b.jpg + /home/pranjali/Desktop/sem6/ML_Project/latestDataset/ grape leaf black rot /35589125035_662dd5b258_b.jpg + + Unknown + + + 574 + 765 + 3 + + 0 + + grape leaf black rot + Unspecified + 0 + 0 + + 77 + 80 + 568 + 688 + + + diff --git a/detection/TEST/393.jpg b/detection/TEST/393.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7fdcda4ee9b3ee34c92f6aa4d0ecb64d5efe5338 --- /dev/null +++ b/detection/TEST/393.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35371942d3914e29adc6ce0247d6e9aff2c04820d58f2168ea42c515a33e32a6 +size 35155 diff --git a/detection/TEST/393.xml b/detection/TEST/393.xml new file mode 100644 index 0000000000000000000000000000000000000000..e836c3fd8ffc655b0e493a30a422a9c617e04cf6 --- /dev/null +++ b/detection/TEST/393.xml @@ -0,0 +1,26 @@ + + corn rust leaf + 393.jpg + /home/davinder/ISDf/ corn rust leaf /393.jpg + + Unknown + + + 590 + 393 + 3 + + 0 + + Corn rust leaf + Unspecified + 1 + 0 + + 72 + 1 + 554 + 393 + + + \ No newline at end of file diff --git a/detection/TEST/4-apple-rust2_19011_matt-bertone.jpg b/detection/TEST/4-apple-rust2_19011_matt-bertone.jpg new file mode 100644 index 0000000000000000000000000000000000000000..60b9528fb133fc6390eb038b40852a0e5272982e --- /dev/null +++ b/detection/TEST/4-apple-rust2_19011_matt-bertone.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea6f3c7dfbba1e7089ccb48ca2421249c9b8c96405668369963c723f8a136011 +size 28477 diff --git a/detection/TEST/4-apple-rust2_19011_matt-bertone.xml b/detection/TEST/4-apple-rust2_19011_matt-bertone.xml new file mode 100644 index 0000000000000000000000000000000000000000..0d3c3be5982dd4a1b25b32808759bf7760524430 --- /dev/null +++ b/detection/TEST/4-apple-rust2_19011_matt-bertone.xml @@ -0,0 +1,26 @@ + + apple rust leaf + 4-apple-rust2_19011_matt-bertone.jpg + /home/davinder/ISDf/ apple rust leaf /4-apple-rust2_19011_matt-bertone.jpg + + Unknown + + + 600 + 400 + 3 + + 0 + + Apple rust leaf + Unspecified + 1 + 0 + + 41 + 46 + 600 + 337 + + + diff --git a/detection/TEST/4120978-single-green-leaf-of-apple-tree.jpg b/detection/TEST/4120978-single-green-leaf-of-apple-tree.jpg new file mode 100644 index 0000000000000000000000000000000000000000..698b7c5876e932bd0a090e3defd71febb1d03aa8 --- /dev/null +++ b/detection/TEST/4120978-single-green-leaf-of-apple-tree.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86ae7cf7e63818282f1e6c217a50ddd0bc2399c677d29268c5603bc0869f8192 +size 74215 diff --git a/detection/TEST/4120978-single-green-leaf-of-apple-tree.xml b/detection/TEST/4120978-single-green-leaf-of-apple-tree.xml new file mode 100644 index 0000000000000000000000000000000000000000..29c6e1bfead46933f9f79a0be98febf5cdeaa455 --- /dev/null +++ b/detection/TEST/4120978-single-green-leaf-of-apple-tree.xml @@ -0,0 +1,26 @@ + + apple leaf + 4120978-single-green-leaf-of-apple-tree.jpg + /home/davinder/ISDf/ apple leaf /4120978-single-green-leaf-of-apple-tree.jpg + + Unknown + + + 800 + 594 + 3 + + 0 + + Apple leaf + Unspecified + 0 + 0 + + 75 + 82 + 751 + 551 + + + diff --git a/detection/TEST/4825902504_5fa80b65b8_z.jpg b/detection/TEST/4825902504_5fa80b65b8_z.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8d20f4aa668bf4e030aef23a34d1494532bfa25e --- /dev/null +++ b/detection/TEST/4825902504_5fa80b65b8_z.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31bf779ab58fdb35b249d94105c47a57f372302b7158f9c26bbfb2d3c1e580de +size 126854 diff --git a/detection/TEST/4825902504_5fa80b65b8_z.xml b/detection/TEST/4825902504_5fa80b65b8_z.xml new file mode 100644 index 0000000000000000000000000000000000000000..ebcbb3cc527f1901746a74e77a4a743d94793e84 --- /dev/null +++ b/detection/TEST/4825902504_5fa80b65b8_z.xml @@ -0,0 +1,26 @@ + + bell pepper leaf + 4825902504_5fa80b65b8_z.jpg + /media/master/Data/Sem6/ISDl/Pratik/ bell pepper leaf /4825902504_5fa80b65b8_z.jpg + + Unknown + + + 640 + 434 + 3 + + 0 + + Bell_pepper leaf + Unspecified + 0 + 0 + + 73 + 68 + 573 + 404 + + + diff --git a/detection/TEST/49%20Leafmold%20Bottom.jpg b/detection/TEST/49%20Leafmold%20Bottom.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6ee3ec8fc190c3af06504d0ee3783936b1f307b --- /dev/null +++ b/detection/TEST/49%20Leafmold%20Bottom.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c831e06fae662ff4a0351be082f516545b537c4df5fad003eeb1c623fd160d1 +size 15861 diff --git a/detection/TEST/49%20Leafmold%20Bottom.xml b/detection/TEST/49%20Leafmold%20Bottom.xml new file mode 100644 index 0000000000000000000000000000000000000000..d60bba3fdfe233f04185c74e108c2608b9a1b70a --- /dev/null +++ b/detection/TEST/49%20Leafmold%20Bottom.xml @@ -0,0 +1,23 @@ + + tomato mold leaf + 49%20Leafmold%20Bottom.jpg + + 252 + 137 + 3 + + 0 + + Tomato mold leaf + Unspecified + 0 + 0 + 0 + + 3 + 20 + 241 + 124 + + + \ No newline at end of file diff --git a/detection/TEST/5-29black-rot-chardRR.jpg b/detection/TEST/5-29black-rot-chardRR.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e5c2728845777f27ab504ac3fafa5097bfbae37 --- /dev/null +++ b/detection/TEST/5-29black-rot-chardRR.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:404fd83fecf8cb839ab7c76ac90e2a9e1906d2c4a62acf86568b3ef037b88f41 +size 44255 diff --git a/detection/TEST/5-29black-rot-chardRR.xml b/detection/TEST/5-29black-rot-chardRR.xml new file mode 100644 index 0000000000000000000000000000000000000000..bf179e828a70d0e78416c68e2202cca5b6e9d676 --- /dev/null +++ b/detection/TEST/5-29black-rot-chardRR.xml @@ -0,0 +1,26 @@ + + grape leaf black rot + 5-29black-rot-chardRR.jpg + /home/pranjali/Desktop/sem6/ML_Project/latestDataset/ grape leaf black rot /5-29black-rot-chardRR.jpg + + Unknown + + + 450 + 302 + 3 + + 0 + + grape leaf black rot + Unspecified + 1 + 0 + + 16 + 3 + 429 + 302 + + + diff --git a/detection/TEST/50%20Leafmold%20Top.jpg b/detection/TEST/50%20Leafmold%20Top.jpg new file mode 100644 index 0000000000000000000000000000000000000000..efe25e61133c78ba9eee3d3efb74c0b6d19a81b0 --- /dev/null +++ b/detection/TEST/50%20Leafmold%20Top.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:038898eee33130b1e02ecee95413923d4c51b9f81bd0277c29381a479bf53f2c +size 15242 diff --git a/detection/TEST/50%20Leafmold%20Top.xml b/detection/TEST/50%20Leafmold%20Top.xml new file mode 100644 index 0000000000000000000000000000000000000000..92efc3fcb3ade4176ca075829c0bcca0869fc762 --- /dev/null +++ b/detection/TEST/50%20Leafmold%20Top.xml @@ -0,0 +1,23 @@ + + tomato mold leaf + 50%20Leafmold%20Top.jpg + + 252 + 162 + 3 + + 0 + + Tomato mold leaf + Unspecified + 0 + 0 + 0 + + 20 + 9 + 231 + 152 + + + \ No newline at end of file diff --git a/detection/TEST/5496239405_d95bdb97d1_z.jpg b/detection/TEST/5496239405_d95bdb97d1_z.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2040348d8d21547fd6c196c305e7935030b14e08 --- /dev/null +++ b/detection/TEST/5496239405_d95bdb97d1_z.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1236a199431c6c7b4798310cfb847faa4c4b9047b62149de91674989b1ed76b9 +size 177428 diff --git a/detection/TEST/5496239405_d95bdb97d1_z.xml b/detection/TEST/5496239405_d95bdb97d1_z.xml new file mode 100644 index 0000000000000000000000000000000000000000..712be84daaa562b11f9cd00b570c132ff975c4fa --- /dev/null +++ b/detection/TEST/5496239405_d95bdb97d1_z.xml @@ -0,0 +1,26 @@ + + corn rust leaf + 5496239405_d95bdb97d1_z.jpg + /home/davinder/ISDf/ corn rust leaf /5496239405_d95bdb97d1_z.jpg + + Unknown + + + 640 + 480 + 3 + + 0 + + Corn rust leaf + Unspecified + 1 + 0 + + 11 + 32 + 639 + 480 + + + \ No newline at end of file diff --git a/detection/TEST/55830b60a7cf2.image.jpg b/detection/TEST/55830b60a7cf2.image.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6bbf7b124487d7a96879c576782888ffc169cb81 --- /dev/null +++ b/detection/TEST/55830b60a7cf2.image.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dbcc935858b4fcc4b4f6c895c48045735b1f577959e995f2941bf761e42390a +size 279542 diff --git a/detection/TEST/55830b60a7cf2.image.xml b/detection/TEST/55830b60a7cf2.image.xml new file mode 100644 index 0000000000000000000000000000000000000000..839ccba6caac01a66fff5a5f63cfa01e1163ec02 --- /dev/null +++ b/detection/TEST/55830b60a7cf2.image.xml @@ -0,0 +1,49 @@ + + Tomato Septoria leaf spot + 55830b60a7cf2.image.jpg + + 1173 + 1766 + 3 + + 0 + + Tomato Septoria leaf spot + Unspecified + 0 + 0 + 0 + + 142 + 200 + 615 + 531 + + + + Tomato Septoria leaf spot + Unspecified + 0 + 0 + 0 + + 665 + 212 + 1171 + 671 + + + + Tomato Septoria leaf spot + Unspecified + 0 + 0 + 0 + + 188 + 499 + 650 + 1419 + + + \ No newline at end of file diff --git a/detection/TEST/5816740026_d42ef24413_Phytophthora-Infestans.jpg b/detection/TEST/5816740026_d42ef24413_Phytophthora-Infestans.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b296f31fe93b618d3cb374aca21793ead4ced683 --- /dev/null +++ b/detection/TEST/5816740026_d42ef24413_Phytophthora-Infestans.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a981ee59e5e1dcafd0d225f74369a05969200352c17743318c31987083ab6f4c +size 98347 diff --git a/detection/TEST/5816740026_d42ef24413_Phytophthora-Infestans.xml b/detection/TEST/5816740026_d42ef24413_Phytophthora-Infestans.xml new file mode 100644 index 0000000000000000000000000000000000000000..019d8ddb592d586dbf9dbaf21cbfaea89dc2ae5a --- /dev/null +++ b/detection/TEST/5816740026_d42ef24413_Phytophthora-Infestans.xml @@ -0,0 +1,26 @@ + + Potato leaf late blight + 5816740026_d42ef24413_Phytophthora-Infestans.jpg + /media/master/Data/Sem6/ISDl/Pratik/ Potato leaf late blight /5816740026_d42ef24413_Phytophthora-Infestans.jpg + + Unknown + + + 333 + 500 + 3 + + 0 + + Potato leaf late blight + Unspecified + 0 + 0 + + 79 + 111 + 250 + 457 + + + diff --git a/detection/TEST/6134794031202304.jpeg.jpg b/detection/TEST/6134794031202304.jpeg.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b4cfda4e1851fd1b5d1c3b364615687d838b3413 --- /dev/null +++ b/detection/TEST/6134794031202304.jpeg.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fc6710f54773260cd3d3f1444e1a3aa29a9b55c64065ab8eb12851bd4b9b9c5 +size 163932 diff --git a/detection/TEST/6134794031202304.jpeg.xml b/detection/TEST/6134794031202304.jpeg.xml new file mode 100644 index 0000000000000000000000000000000000000000..9f4e75fe7e6285e1a00c88fe588daa14e08bf40a --- /dev/null +++ b/detection/TEST/6134794031202304.jpeg.xml @@ -0,0 +1,23 @@ + + Tomato Septoria leaf spot + 6134794031202304.jpeg.jpg + + 600 + 800 + 3 + + 0 + + Tomato Septoria leaf spot + Unspecified + 0 + 0 + 0 + + 61 + 203 + 370 + 668 + + + \ No newline at end of file diff --git a/detection/TEST/636227737977191231-septoria-leaf-spot-VT.jpg b/detection/TEST/636227737977191231-septoria-leaf-spot-VT.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e9a365bec9238a2e5fe31c05b8be43dd31cbb500 --- /dev/null +++ b/detection/TEST/636227737977191231-septoria-leaf-spot-VT.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:519210b5c98e67f1ec0a0705b12ed0b28625e2e514b472c86d8d3d1ba7256365 +size 49149 diff --git a/detection/TEST/636227737977191231-septoria-leaf-spot-VT.xml b/detection/TEST/636227737977191231-septoria-leaf-spot-VT.xml new file mode 100644 index 0000000000000000000000000000000000000000..dff5850db3dbed3558a08d1948cc276c541fe359 --- /dev/null +++ b/detection/TEST/636227737977191231-septoria-leaf-spot-VT.xml @@ -0,0 +1,62 @@ + + Tomato Septoria leaf spot + 636227737977191231-septoria-leaf-spot-VT.jpg + + 534 + 401 + 3 + + 0 + + Tomato Septoria leaf spot + Unspecified + 0 + 0 + 0 + + 47 + 301 + 206 + 399 + + + + Tomato Septoria leaf spot + Unspecified + 0 + 0 + 0 + + 30 + 142 + 140 + 358 + + + + Tomato Septoria leaf spot + Unspecified + 0 + 0 + 0 + + 337 + 88 + 515 + 363 + + + + Tomato Septoria leaf spot + Unspecified + 0 + 0 + 0 + + 137 + 92 + 275 + 228 + + + \ No newline at end of file diff --git a/detection/TEST/636368370164094909-late-blight-15-.jpg b/detection/TEST/636368370164094909-late-blight-15-.jpg new file mode 100644 index 0000000000000000000000000000000000000000..21fb9ff295e3699cb010f54e4e914dfc5e2674f6 --- /dev/null +++ b/detection/TEST/636368370164094909-late-blight-15-.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d306bef21e5a4d9ddd57401a7b047a74a260f92096f443c786986cebf0402159 +size 34334 diff --git a/detection/TEST/636368370164094909-late-blight-15-.xml b/detection/TEST/636368370164094909-late-blight-15-.xml new file mode 100644 index 0000000000000000000000000000000000000000..2e5656a0befe3cdb0e1c1001615632527001cefa --- /dev/null +++ b/detection/TEST/636368370164094909-late-blight-15-.xml @@ -0,0 +1,23 @@ + + tomato leaf late blight + 636368370164094909-late-blight-15-.jpg + + 540 + 405 + 3 + + 0 + + Tomato leaf late blight + Unspecified + 0 + 0 + 0 + + 125 + 82 + 508 + 302 + + + \ No newline at end of file diff --git a/detection/TEST/6447731_orig.jpg b/detection/TEST/6447731_orig.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c991319b1599709fd9c611373a8c7a971bae4308 --- /dev/null +++ b/detection/TEST/6447731_orig.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d87a16ce8325e687e246afc29a9b6468cddc7841d113ac7d4948b0fefee6197 +size 39540 diff --git a/detection/TEST/6447731_orig.xml b/detection/TEST/6447731_orig.xml new file mode 100644 index 0000000000000000000000000000000000000000..9476849cfb6536b465f322429b0aeab51ee55f94 --- /dev/null +++ b/detection/TEST/6447731_orig.xml @@ -0,0 +1,23 @@ + + tomato leaf bacterial spot + 6447731_orig.jpg + + 500 + 332 + 3 + + 0 + + Tomato Septoria leaf spot + Unspecified + 0 + 0 + 0 + + 8 + 4 + 467 + 298 + + + \ No newline at end of file diff --git a/detection/TEST/7-17-Photo3_Septoria-MARY.jpg b/detection/TEST/7-17-Photo3_Septoria-MARY.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d17cc342e40cbe1d055e028ff29f98151f52d3b1 --- /dev/null +++ b/detection/TEST/7-17-Photo3_Septoria-MARY.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80add2c370abf75ee50396e7dec72b686732c7474df5bbba02343ae504751c9 +size 58149 diff --git a/detection/TEST/7-17-Photo3_Septoria-MARY.xml b/detection/TEST/7-17-Photo3_Septoria-MARY.xml new file mode 100644 index 0000000000000000000000000000000000000000..06d4c16ea74256d61fe1c20a927ecb6414903546 --- /dev/null +++ b/detection/TEST/7-17-Photo3_Septoria-MARY.xml @@ -0,0 +1,62 @@ + + Tomato Septoria leaf spot + 7-17-Photo3_Septoria-MARY.jpg + + 450 + 359 + 3 + + 0 + + Tomato Septoria leaf spot + Unspecified + 0 + 0 + 0 + + 400 + 229 + 450 + 348 + + + + Tomato Septoria leaf spot + Unspecified + 0 + 0 + 0 + + 1 + 3 + 92 + 281 + + + + Tomato Septoria leaf spot + Unspecified + 0 + 0 + 0 + + 119 + 157 + 179 + 312 + + + + Tomato Septoria leaf spot + Unspecified + 0 + 0 + 0 + + 202 + 5 + 411 + 313 + + + \ No newline at end of file diff --git a/detection/TEST/70.jpg b/detection/TEST/70.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a02e68c041ff1e09f718ec08a95111bc47341d11 --- /dev/null +++ b/detection/TEST/70.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26eb8199defc993cacb48533b22628d8eb5cfd092b5dbc10b8d9db509aad848a +size 34575 diff --git a/detection/TEST/70.xml b/detection/TEST/70.xml new file mode 100644 index 0000000000000000000000000000000000000000..4f33ec02bdfb6b4fda132d0150b05638dbcfc76a --- /dev/null +++ b/detection/TEST/70.xml @@ -0,0 +1,23 @@ + + tomato leaf late blight + 70.jpg + + 490 + 492 + 3 + + 0 + + Tomato leaf late blight + Unspecified + 0 + 0 + 0 + + 110 + 5 + 361 + 490 + + + \ No newline at end of file diff --git a/detection/TEST/7190f27ead55c0f6e3ff8b982972810a5446a9713a49d_1260x1260.jpg b/detection/TEST/7190f27ead55c0f6e3ff8b982972810a5446a9713a49d_1260x1260.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6e6d1885376ee1d58bcc809786eff75adcaf8cfa --- /dev/null +++ b/detection/TEST/7190f27ead55c0f6e3ff8b982972810a5446a9713a49d_1260x1260.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b42bfdb7b7422f0229cf8049232f8f38acf1e3df5070ef79b343ed1515c5ed1 +size 117335 diff --git a/detection/TEST/7190f27ead55c0f6e3ff8b982972810a5446a9713a49d_1260x1260.xml b/detection/TEST/7190f27ead55c0f6e3ff8b982972810a5446a9713a49d_1260x1260.xml new file mode 100644 index 0000000000000000000000000000000000000000..1cef7d55923f4acddbf97e2e94a9d0de0c60996b --- /dev/null +++ b/detection/TEST/7190f27ead55c0f6e3ff8b982972810a5446a9713a49d_1260x1260.xml @@ -0,0 +1,26 @@ + + peach leaf + 7190f27ead55c0f6e3ff8b982972810a5446a9713a49d_1260x1260.jpg + /home/pranjali/Desktop/sem6/ML_Project/latestDataset/ peach leaf /7190f27ead55c0f6e3ff8b982972810a5446a9713a49d_1260x1260.jpg + + Unknown + + + 1056 + 1260 + 3 + + 0 + + Peach leaf + Unspecified + 0 + 0 + + 401 + 32 + 700 + 1237 + + + diff --git a/detection/TEST/730-grape-leaf-2560x1600-nature-wallpaper.jpg b/detection/TEST/730-grape-leaf-2560x1600-nature-wallpaper.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1cc0d493c64f4283404b903620fff17d9e4937b5 --- /dev/null +++ b/detection/TEST/730-grape-leaf-2560x1600-nature-wallpaper.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:468f656f6c89d8f241f07246300acb790a11f3e288e9c3750dac1b4da9405577 +size 1237175 diff --git a/detection/TEST/730-grape-leaf-2560x1600-nature-wallpaper.xml b/detection/TEST/730-grape-leaf-2560x1600-nature-wallpaper.xml new file mode 100644 index 0000000000000000000000000000000000000000..83f5eabee9da4ac1e06432bfde191997d1d41700 --- /dev/null +++ b/detection/TEST/730-grape-leaf-2560x1600-nature-wallpaper.xml @@ -0,0 +1,26 @@ + + grape leaf + 730-grape-leaf-2560x1600-nature-wallpaper.jpg + /home/pranjali/Desktop/sem6/ML_Project/latestDataset/ grape leaf /730-grape-leaf-2560x1600-nature-wallpaper.jpg + + Unknown + + + 2560 + 1600 + 3 + + 0 + + grape leaf + Unspecified + 0 + 0 + + 623 + 23 + 2180 + 1558 + + + diff --git a/detection/TEST/80104747.jpg b/detection/TEST/80104747.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea2ca2b83a5d7ca1d2746a054c62d79fbaa6e898 --- /dev/null +++ b/detection/TEST/80104747.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10e15f1c88ceda5b126d25f64ca4ec09229e2359b58ed8b0d39381df3dffd883 +size 278872 diff --git a/detection/TEST/80104747.xml b/detection/TEST/80104747.xml new file mode 100644 index 0000000000000000000000000000000000000000..539758ced48364532eeb1f4feff1d9e95149cfa6 --- /dev/null +++ b/detection/TEST/80104747.xml @@ -0,0 +1,26 @@ + + corn rust leaf + 80104747.jpg + /home/davinder/ISDf/ corn rust leaf /80104747.jpg + + Unknown + + + 613 + 700 + 3 + + 0 + + Corn rust leaf + Unspecified + 1 + 0 + + 7 + 1 + 613 + 700 + + + \ No newline at end of file diff --git a/detection/TEST/816.jpg b/detection/TEST/816.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b2fd17c89c44e9c91de24618df7043cfc4c9a08 --- /dev/null +++ b/detection/TEST/816.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffc0df6903deff23117a8517a8365d729b073b272d3e6dfb97d414b1f736ddf5 +size 9044 diff --git a/detection/TEST/816.xml b/detection/TEST/816.xml new file mode 100644 index 0000000000000000000000000000000000000000..3f16a69e8209c9175547d5c6c051714e72548af3 --- /dev/null +++ b/detection/TEST/816.xml @@ -0,0 +1,38 @@ + + Apple Scab Leaf + 816.jpg + /home/davinder/ISDf/ Apple Scab Leaf /816.jpg + + Unknown + + + 330 + 275 + 3 + + 0 + + Apple Scab Leaf + Unspecified + 0 + 0 + + 54 + 11 + 166 + 202 + + + + Apple Scab Leaf + Unspecified + 0 + 0 + + 175 + 13 + 278 + 201 + + + diff --git a/detection/TEST/8226402877_9abf151b5b_b.jpg b/detection/TEST/8226402877_9abf151b5b_b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c810e4064332ba76249df6f240a259775b36e0dd --- /dev/null +++ b/detection/TEST/8226402877_9abf151b5b_b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f9a9d33fdcdd8e091a878416ddf9360148a7c9b7a28293339c83402b480b1e0 +size 229422 diff --git a/detection/TEST/8226402877_9abf151b5b_b.xml b/detection/TEST/8226402877_9abf151b5b_b.xml new file mode 100644 index 0000000000000000000000000000000000000000..5991cd8692f90fbf379a16b5d10ff6dd59c82c2b --- /dev/null +++ b/detection/TEST/8226402877_9abf151b5b_b.xml @@ -0,0 +1,75 @@ + + tomato leaf yellow virus + 8226402877_9abf151b5b_b.jpg + + 1024 + 683 + 3 + + 0 + + Tomato leaf yellow virus + Unspecified + 0 + 0 + 0 + + 481 + 475 + 620 + 638 + + + + Tomato leaf yellow virus + Unspecified + 0 + 0 + 0 + + 394 + 134 + 569 + 220 + + + + Tomato leaf yellow virus + Unspecified + 0 + 0 + 0 + + 793 + 100 + 990 + 270 + + + + Tomato leaf yellow virus + Unspecified + 0 + 0 + 0 + + 218 + 239 + 452 + 404 + + + + Tomato leaf yellow virus + Unspecified + 0 + 0 + 0 + + 603 + 260 + 755 + 445 + + + \ No newline at end of file diff --git a/detection/TEST/90e2c0.jpg b/detection/TEST/90e2c0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..23972e9f51f0eb04fb045a9bc5b071b0038abcc7 --- /dev/null +++ b/detection/TEST/90e2c0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e990d6c955434857b52b7904fdcc48893ff0b0cebcbc839db143bc301ec7b191 +size 152951 diff --git a/detection/TEST/90e2c0.xml b/detection/TEST/90e2c0.xml new file mode 100644 index 0000000000000000000000000000000000000000..8ced1c7d8918b70452282550356243df80ebc4c4 --- /dev/null +++ b/detection/TEST/90e2c0.xml @@ -0,0 +1,26 @@ + + tomato leaf + 90e2c0.jpg + /home/sohamp/Desktop/done/ tomato leaf /90e2c0.jpg + + Unknown + + + 1000 + 1333 + 3 + + 0 + + Tomato leaf + Unspecified + 0 + 0 + + 234 + 41 + 813 + 1080 + + + diff --git a/detection/TEST/9343310-small.jpg b/detection/TEST/9343310-small.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b41824ba9af132c7069129caa24017702d4ff6c5 --- /dev/null +++ b/detection/TEST/9343310-small.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1572c5a942ed6485bcf2d41c2b8aaa6d6a42041fc19b0f5e9f212ff8f10210c +size 9997 diff --git a/detection/TEST/9343310-small.xml b/detection/TEST/9343310-small.xml new file mode 100644 index 0000000000000000000000000000000000000000..38fc4fd1f94f8ab620ac0316cbabd4ab026f0c31 --- /dev/null +++ b/detection/TEST/9343310-small.xml @@ -0,0 +1,26 @@ + + apple rust leaf + 9343310-small.jpg + /home/davinder/ISDf/ apple rust leaf /9343310-small.jpg + + Unknown + + + 155 + 206 + 3 + + 0 + + Apple rust leaf + Unspecified + 0 + 0 + + 35 + 40 + 137 + 167 + + + diff --git a/detection/TEST/9511.img.jpg b/detection/TEST/9511.img.jpg new file mode 100644 index 0000000000000000000000000000000000000000..53c38ce405601b03f9b6588176ecc46012703b44 --- /dev/null +++ b/detection/TEST/9511.img.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:114ad00502e682078ccbed196422c3092e017a3d11078ebd439f9825a57e1fa2 +size 49474 diff --git a/detection/TEST/9511.img.xml b/detection/TEST/9511.img.xml new file mode 100644 index 0000000000000000000000000000000000000000..33e539408da6ec9c368017aa40cae3d00bb25fd3 --- /dev/null +++ b/detection/TEST/9511.img.xml @@ -0,0 +1,166 @@ + + tomato leaf mosaic virus + 9511.img.jpg + + 540 + 400 + 3 + + 0 + + Tomato leaf mosaic virus + Unspecified + 0 + 0 + 0 + + 53 + 276 + 120 + 388 + + + + Tomato leaf mosaic virus + Unspecified + 0 + 0 + 0 + + 107 + 78 + 167 + 118 + + + + Tomato leaf mosaic virus + Unspecified + 0 + 0 + 0 + + 178 + 97 + 228 + 164 + + + + Tomato leaf mosaic virus + Unspecified + 0 + 0 + 0 + + 467 + 245 + 523 + 362 + + + + Tomato leaf mosaic virus + Unspecified + 0 + 0 + 0 + + 65 + 157 + 134 + 200 + + + + Tomato leaf mosaic virus + Unspecified + 0 + 0 + 0 + + 66 + 75 + 103 + 132 + + + + Tomato leaf mosaic virus + Unspecified + 0 + 0 + 0 + + 159 + 160 + 231 + 196 + + + + Tomato leaf mosaic virus + Unspecified + 0 + 0 + 0 + + 119 + 208 + 199 + 261 + + + + Tomato leaf mosaic virus + Unspecified + 0 + 0 + 0 + + 374 + 92 + 455 + 147 + + + + Tomato leaf mosaic virus + Unspecified + 0 + 0 + 0 + + 409 + 137 + 490 + 192 + + + + Tomato leaf mosaic virus + Unspecified + 0 + 0 + 0 + + 289 + 179 + 358 + 300 + + + + Tomato leaf mosaic virus + Unspecified + 0 + 0 + 0 + + 314 + 194 + 415 + 299 + + + \ No newline at end of file diff --git a/detection/TEST/99e886623c2080c22f6519b0e708c531.jpg b/detection/TEST/99e886623c2080c22f6519b0e708c531.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e1f5fa033ce1e91f6d5a905a7f12d305a9cfd237 --- /dev/null +++ b/detection/TEST/99e886623c2080c22f6519b0e708c531.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33d5438707e6c733eef23f55d2ca20c455a847cbdaa6055e986c7601b0cd8d23 +size 18208 diff --git a/detection/TEST/99e886623c2080c22f6519b0e708c531.xml b/detection/TEST/99e886623c2080c22f6519b0e708c531.xml new file mode 100644 index 0000000000000000000000000000000000000000..5f2e3da8624556562da95c7e5ffb88eebea04d7f --- /dev/null +++ b/detection/TEST/99e886623c2080c22f6519b0e708c531.xml @@ -0,0 +1,38 @@ + + apple rust leaf + 99e886623c2080c22f6519b0e708c531.jpg + /home/davinder/ISDf/ apple rust leaf /99e886623c2080c22f6519b0e708c531.jpg + + Unknown + + + 425 + 284 + 3 + + 0 + + Apple rust leaf + Unspecified + 1 + 0 + + 88 + 51 + 243 + 284 + + + + Apple rust leaf + Unspecified + 0 + 0 + + 218 + 2 + 358 + 180 + + + diff --git a/detection/TEST/Apple-Leaf-Wallpaper-17.jpg b/detection/TEST/Apple-Leaf-Wallpaper-17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..60211247cd9a5b821fa56945ecc28cf66d5932a8 --- /dev/null +++ b/detection/TEST/Apple-Leaf-Wallpaper-17.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:632220da09aa65fcd78c805f778511125c99639b3894170f4d9c8a94f7f32ddb +size 2008264 diff --git a/detection/TEST/Apple-Leaf-Wallpaper-17.xml b/detection/TEST/Apple-Leaf-Wallpaper-17.xml new file mode 100644 index 0000000000000000000000000000000000000000..2dc990770b464c3ee874f43375538a0dde79a6b2 --- /dev/null +++ b/detection/TEST/Apple-Leaf-Wallpaper-17.xml @@ -0,0 +1,26 @@ + + apple leaf + Apple-Leaf-Wallpaper-17.jpg + /home/davinder/ISDf/ apple leaf /Apple-Leaf-Wallpaper-17.jpg + + Unknown + + + 3840 + 2160 + 3 + + 0 + + Apple leaf + Unspecified + 1 + 0 + + 1122 + 124 + 2991 + 2160 + + + diff --git a/detection/TEST/B2750109-Late_blight_on_a_potato_plant-SPL.jpg b/detection/TEST/B2750109-Late_blight_on_a_potato_plant-SPL.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f659cd2c4b4e7c744ce9bf0f69706eabbcc11a07 --- /dev/null +++ b/detection/TEST/B2750109-Late_blight_on_a_potato_plant-SPL.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1bd41ada257040720bf59326a146b777fb1d495cd76a91325e84840ebafa48c +size 106256 diff --git a/detection/TEST/B2750109-Late_blight_on_a_potato_plant-SPL.xml b/detection/TEST/B2750109-Late_blight_on_a_potato_plant-SPL.xml new file mode 100644 index 0000000000000000000000000000000000000000..da63fa09fd265ede0c1dc02a047b393cbe502b57 --- /dev/null +++ b/detection/TEST/B2750109-Late_blight_on_a_potato_plant-SPL.xml @@ -0,0 +1,26 @@ + + Potato leaf late blight + B2750109-Late_blight_on_a_potato_plant-SPL.jpg + /media/master/Data/Sem6/ISDl/Pratik/ Potato leaf late blight /B2750109-Late_blight_on_a_potato_plant-SPL.jpg + + Unknown + + + 539 + 800 + 3 + + 0 + + Potato leaf late blight + Unspecified + 0 + 0 + + 70 + 178 + 357 + 614 + + + diff --git a/detection/TEST/BIGSD.jpg b/detection/TEST/BIGSD.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aae4da03607b953f52918746f18a1c7570ba0904 --- /dev/null +++ b/detection/TEST/BIGSD.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d61613d92bdb576e294d12be4e4c8a78fd92c683eed9cdaf8f43b2eaa9bdad5 +size 24071 diff --git a/detection/TEST/BIGSD.xml b/detection/TEST/BIGSD.xml new file mode 100644 index 0000000000000000000000000000000000000000..7c91db541d533058b7d26aa6126689e7594a33c9 --- /dev/null +++ b/detection/TEST/BIGSD.xml @@ -0,0 +1,88 @@ + + tomato mold leaf + BIGSD.jpg + + 450 + 253 + 3 + + 0 + + Tomato mold leaf + Unspecified + 0 + 0 + 0 + + 396 + 63 + 436 + 119 + + + + Tomato mold leaf + Unspecified + 0 + 0 + 0 + + 350 + 28 + 393 + 56 + + + + Tomato mold leaf + Unspecified + 0 + 0 + 0 + + 300 + 36 + 343 + 64 + + + + Tomato mold leaf + Unspecified + 0 + 0 + 0 + + 310 + 69 + 338 + 96 + + + + Tomato mold leaf + Unspecified + 0 + 0 + 0 + + 355 + 70 + 399 + 97 + + + + Tomato mold leaf + Unspecified + 0 + 0 + 0 + + 340 + 105 + 370 + 155 + + + \ No newline at end of file diff --git a/detection/TEST/Bacterial-spot-pepper2.jpg b/detection/TEST/Bacterial-spot-pepper2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4f1a38e378a1db93cde626547a304290c76064cc --- /dev/null +++ b/detection/TEST/Bacterial-spot-pepper2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f17a668a59155565f613ffc6352a4de92be0153e90ed86d48a4443c2492c5128 +size 6508 diff --git a/detection/TEST/Bacterial-spot-pepper2.xml b/detection/TEST/Bacterial-spot-pepper2.xml new file mode 100644 index 0000000000000000000000000000000000000000..5c43ed57c5fe0c0817623eaec44e40280b24dad3 --- /dev/null +++ b/detection/TEST/Bacterial-spot-pepper2.xml @@ -0,0 +1,26 @@ + + bell pepper leaf spot + Bacterial-spot-pepper2.jpg + /home/pranjali/Desktop/sem6/ML_Project/latestDataset/ bell pepper leaf spot /Bacterial-spot-pepper2.jpg + + Unknown + + + 221 + 166 + 3 + + 0 + + Bell_pepper leaf spot + Unspecified + 1 + 0 + + 1 + 2 + 213 + 144 + + + diff --git a/detection/TEST/Bacterial_spots563.jpg b/detection/TEST/Bacterial_spots563.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1db5c5d14acf057670f9afca739e907b43a347a0 --- /dev/null +++ b/detection/TEST/Bacterial_spots563.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8a309c930537862201f172a32c48db8558e0f3e119757ec85a5dc22d9e96e7f +size 59098 diff --git a/detection/TEST/Bacterial_spots563.xml b/detection/TEST/Bacterial_spots563.xml new file mode 100644 index 0000000000000000000000000000000000000000..805b083cd5a4d95bcfebdaf0c68453f520657b51 --- /dev/null +++ b/detection/TEST/Bacterial_spots563.xml @@ -0,0 +1,23 @@ + + tomato leaf bacterial spot + Bacterial_spots563.jpg + + 800 + 600 + 3 + + 0 + + Tomato leaf bacterial spot + Unspecified + 0 + 0 + 0 + + 153 + 27 + 800 + 552 + + + \ No newline at end of file diff --git a/detection/TEST/Black%20rot%20on%20foliage.jpg b/detection/TEST/Black%20rot%20on%20foliage.jpg new file mode 100644 index 0000000000000000000000000000000000000000..94761457d6dea39dd7558ee65be9eb812cbdb8bc --- /dev/null +++ b/detection/TEST/Black%20rot%20on%20foliage.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e64969c324e6981d478bfff5c9099da715e0bdd974b2ea7a7acd62fa8ee63af0 +size 219424 diff --git a/detection/TEST/Black%20rot%20on%20foliage.xml b/detection/TEST/Black%20rot%20on%20foliage.xml new file mode 100644 index 0000000000000000000000000000000000000000..dee6afd0850802b6dbd4189f21210ea2e24b59ed --- /dev/null +++ b/detection/TEST/Black%20rot%20on%20foliage.xml @@ -0,0 +1,26 @@ + + grape leaf black rot + Black%20rot%20on%20foliage.jpg + /home/pranjali/Desktop/sem6/ML_Project/latestDataset/ grape leaf black rot /Black%20rot%20on%20foliage.jpg + + Unknown + + + 1060 + 795 + 3 + + 0 + + grape leaf black rot + Unspecified + 1 + 0 + + 1 + 58 + 859 + 732 + + + diff --git a/detection/TEST/Black%20rot%20on%20foliage2.jpg b/detection/TEST/Black%20rot%20on%20foliage2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e23ddb5b21bb11d3c1ade0f9376412dae6874e47 --- /dev/null +++ b/detection/TEST/Black%20rot%20on%20foliage2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99c0a3a63c127e376a4120007fcc81797ec8248cf95a8020510e46f602590335 +size 268431 diff --git a/detection/TEST/Black%20rot%20on%20foliage2.xml b/detection/TEST/Black%20rot%20on%20foliage2.xml new file mode 100644 index 0000000000000000000000000000000000000000..194e70ef6aea2a39d029e0d3a02aee1c7f694ca9 --- /dev/null +++ b/detection/TEST/Black%20rot%20on%20foliage2.xml @@ -0,0 +1,26 @@ + + grape leaf black rot + Black%20rot%20on%20foliage2.jpg + /home/pranjali/Desktop/sem6/ML_Project/latestDataset/ grape leaf black rot /Black%20rot%20on%20foliage2.jpg + + Unknown + + + 1060 + 795 + 3 + + 0 + + grape leaf black rot + Unspecified + 0 + 0 + + 115 + 15 + 1033 + 755 + + + diff --git a/detection/TEST/CMVpepperLeafShock-copy-50QUALITY-1ge8umw.jpg b/detection/TEST/CMVpepperLeafShock-copy-50QUALITY-1ge8umw.jpg new file mode 100644 index 0000000000000000000000000000000000000000..54bebfa22c1f5193a863b67ade629a0e5061be63 --- /dev/null +++ b/detection/TEST/CMVpepperLeafShock-copy-50QUALITY-1ge8umw.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cda914f54adfddcc5bce2771d0aa908e9497602645a27281c30dacaca836905e +size 41429 diff --git a/detection/TEST/CMVpepperLeafShock-copy-50QUALITY-1ge8umw.xml b/detection/TEST/CMVpepperLeafShock-copy-50QUALITY-1ge8umw.xml new file mode 100644 index 0000000000000000000000000000000000000000..e39e0ec1b65bdf42acfce8913939acb6818b080f --- /dev/null +++ b/detection/TEST/CMVpepperLeafShock-copy-50QUALITY-1ge8umw.xml @@ -0,0 +1,26 @@ + + bell pepper leaf spot + CMVpepperLeafShock-copy-50QUALITY-1ge8umw.jpg + /home/pranjali/Desktop/sem6/ML_Project/latestDataset/ bell pepper leaf spot /CMVpepperLeafShock-copy-50QUALITY-1ge8umw.jpg + + Unknown + + + 667 + 500 + 3 + + 0 + + Bell_pepper leaf spot + Unspecified + 1 + 0 + + 179 + 97 + 410 + 500 + + + diff --git a/detection/TEST/Common%20Diseases%20Figure%201.JPG.jpg b/detection/TEST/Common%20Diseases%20Figure%201.JPG.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bb519ac0208d336fed794944169d3ba4f6e168fb --- /dev/null +++ b/detection/TEST/Common%20Diseases%20Figure%201.JPG.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:248c90ff324974883bc2a6547f5946f1fb26349186618d6f961e5cd1979e4abf +size 14451 diff --git a/detection/TEST/Common%20Diseases%20Figure%201.JPG.xml b/detection/TEST/Common%20Diseases%20Figure%201.JPG.xml new file mode 100644 index 0000000000000000000000000000000000000000..b18c405c77843313def37e90a3f1806e86218df3 --- /dev/null +++ b/detection/TEST/Common%20Diseases%20Figure%201.JPG.xml @@ -0,0 +1,26 @@ + + leaf blight of corn + Common%20Diseases%20Figure%201.JPG.jpg + /home/pranjali/Desktop/sem6/ML_Project/latestDataset/ leaf blight of corn /Common%20Diseases%20Figure%201.JPG.jpg + + Unknown + + + 188 + 317 + 3 + + 0 + + Corn leaf blight + Unspecified + 1 + 0 + + 12 + 1 + 182 + 317 + + + diff --git a/detection/TEST/Corn-SCLB-2017-1.jpg b/detection/TEST/Corn-SCLB-2017-1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d3549afcdfe6ce22d569a68f9ea863ca47e27d54 --- /dev/null +++ b/detection/TEST/Corn-SCLB-2017-1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:deef0c607d0a5decdae484b0d1d92633ba4fe0ab15595d33e36222f62313f58e +size 2256589 diff --git a/detection/TEST/Corn-SCLB-2017-1.xml b/detection/TEST/Corn-SCLB-2017-1.xml new file mode 100644 index 0000000000000000000000000000000000000000..9a5a417fe2f2bb26333307b5ddb8468948b70580 --- /dev/null +++ b/detection/TEST/Corn-SCLB-2017-1.xml @@ -0,0 +1,26 @@ + + leaf blight of corn + Corn-SCLB-2017-1.jpg + /home/pranjali/Desktop/sem6/ML_Project/latestDataset/ leaf blight of corn /Corn-SCLB-2017-1.jpg + + Unknown + + + 3456 + 5184 + 3 + + 0 + + Corn leaf blight + Unspecified + 0 + 0 + + 914 + 22 + 2764 + 5150 + + + diff --git a/detection/TEST/D%29AlfMov.jpg b/detection/TEST/D%29AlfMov.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fca8120dca11f087317a2b5ea3cc1b1166a744d8 --- /dev/null +++ b/detection/TEST/D%29AlfMov.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dd06a9e3bd48713bb445a8588d8c38dec7643435e5c8b0652f584ac4eff64c1 +size 15592 diff --git a/detection/TEST/D%29AlfMov.xml b/detection/TEST/D%29AlfMov.xml new file mode 100644 index 0000000000000000000000000000000000000000..443f8f49eb4e574fc24fe358f73c39a7803f0684 --- /dev/null +++ b/detection/TEST/D%29AlfMov.xml @@ -0,0 +1,49 @@ + + tomato leaf mosaic virus + D%29AlfMov.jpg + + 400 + 317 + 3 + + 0 + + Tomato leaf mosaic virus + Unspecified + 0 + 0 + 0 + + 14 + 13 + 129 + 290 + + + + Tomato leaf mosaic virus + Unspecified + 0 + 0 + 0 + + 146 + 33 + 280 + 296 + + + + Tomato leaf mosaic virus + Unspecified + 0 + 0 + 0 + + 308 + 61 + 384 + 260 + + + \ No newline at end of file diff --git a/detection/TEST/DSCN1015.JPG.jpg b/detection/TEST/DSCN1015.JPG.jpg new file mode 100644 index 0000000000000000000000000000000000000000..52015319a26ed292ee5e1195c06265eca2ee1da2 --- /dev/null +++ b/detection/TEST/DSCN1015.JPG.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66e581feb1714e0cfd3e2afdc8f90dcf0394b897886233aa515b7dea1390da1a +size 329457 diff --git a/detection/TEST/DSCN1015.JPG.xml b/detection/TEST/DSCN1015.JPG.xml new file mode 100644 index 0000000000000000000000000000000000000000..af52b6dc52f4964f2a3f7f5f3e25359dd999fd75 --- /dev/null +++ b/detection/TEST/DSCN1015.JPG.xml @@ -0,0 +1,50 @@ + + tomato leaf + DSCN1015.JPG.jpg + /home/sohamp/Desktop/done/ tomato leaf /DSCN1015.JPG.jpg + + Unknown + + + 1600 + 1200 + 3 + + 0 + + Tomato leaf + Unspecified + 0 + 0 + + 904 + 58 + 1575 + 509 + + + + Tomato leaf + Unspecified + 0 + 0 + + 585 + 302 + 989 + 783 + + + + Tomato leaf + Unspecified + 1 + 0 + + 1 + 30 + 521 + 460 + + + diff --git a/detection/TEST/DSCN7317.JPG.jpg b/detection/TEST/DSCN7317.JPG.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3508a587da8cc25189523b73be5cb8ded0da8adf --- /dev/null +++ b/detection/TEST/DSCN7317.JPG.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:650324392a33c2c1e1ca4a076176d6b060b86ae62fbe098756b052b5546d9240 +size 244843 diff --git a/detection/TEST/DSCN7317.JPG.xml b/detection/TEST/DSCN7317.JPG.xml new file mode 100644 index 0000000000000000000000000000000000000000..42e9a3b21866e72a02c16e5270b426f5aaca5e0f --- /dev/null +++ b/detection/TEST/DSCN7317.JPG.xml @@ -0,0 +1,26 @@ + + grape leaf + DSCN7317.JPG.jpg + /home/pranjali/Desktop/sem6/ML_Project/latestDataset/ grape leaf /DSCN7317.JPG.jpg + + Unknown + + + 1530 + 1600 + 3 + + 0 + + grape leaf + Unspecified + 0 + 0 + + 67 + 92 + 1410 + 1535 + + + diff --git a/detection/TEST/E%29Tomato-late-blight-foliar.jpg b/detection/TEST/E%29Tomato-late-blight-foliar.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cec2e5e41be3caf5a2a1e2ec21de056f0aa8a3fa --- /dev/null +++ b/detection/TEST/E%29Tomato-late-blight-foliar.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1146802ff74c97a511dedcb6bf204d3029e13734bb2d0fcc9a44bce50d2311f2 +size 17319 diff --git a/detection/TEST/E%29Tomato-late-blight-foliar.xml b/detection/TEST/E%29Tomato-late-blight-foliar.xml new file mode 100644 index 0000000000000000000000000000000000000000..caf7a816ba484d7af33c0e5ebb8ed7fd498f52c3 --- /dev/null +++ b/detection/TEST/E%29Tomato-late-blight-foliar.xml @@ -0,0 +1,49 @@ + + tomato leaf late blight + E%29Tomato-late-blight-foliar.jpg + + 400 + 300 + 3 + + 0 + + Tomato leaf late blight + Unspecified + 0 + 0 + 0 + + 325 + 46 + 400 + 295 + + + + Tomato leaf late blight + Unspecified + 0 + 0 + 0 + + 60 + 2 + 226 + 116 + + + + Tomato leaf late blight + Unspecified + 0 + 0 + 0 + + 132 + 22 + 290 + 296 + + + \ No newline at end of file diff --git a/detection/TEST/GREEN%20BELL%20PLANT%20YELLOW%20LEAF.JPG.jpg b/detection/TEST/GREEN%20BELL%20PLANT%20YELLOW%20LEAF.JPG.jpg new file mode 100644 index 0000000000000000000000000000000000000000..44d9981532267488fae317d02bcaa3445c13a9ba --- /dev/null +++ b/detection/TEST/GREEN%20BELL%20PLANT%20YELLOW%20LEAF.JPG.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d0741e7826cfcb6ee50a0c78215ab42a66128b2db342e0d6d104bfcff2c370f +size 108849 diff --git a/detection/TEST/GREEN%20BELL%20PLANT%20YELLOW%20LEAF.JPG.xml b/detection/TEST/GREEN%20BELL%20PLANT%20YELLOW%20LEAF.JPG.xml new file mode 100644 index 0000000000000000000000000000000000000000..05127d109bed22c1cc725e94c420d202d8bcdacd --- /dev/null +++ b/detection/TEST/GREEN%20BELL%20PLANT%20YELLOW%20LEAF.JPG.xml @@ -0,0 +1,26 @@ + + bell pepper leaf + GREEN%20BELL%20PLANT%20YELLOW%20LEAF.JPG.jpg + /media/master/Data/Sem6/ISDl/Pratik/ bell pepper leaf /GREEN%20BELL%20PLANT%20YELLOW%20LEAF.JPG.jpg + + Unknown + + + 800 + 600 + 3 + + 0 + + Bell_pepper leaf + Unspecified + 0 + 0 + + 193 + 49 + 642 + 590 + + + diff --git a/detection/TEST/H5w92.jpg b/detection/TEST/H5w92.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8b161c24340cc14e9eadb2c577bb35d27b5a3135 --- /dev/null +++ b/detection/TEST/H5w92.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea4730d34e5117cea5a252f952381393ccb22938680b33ae952a39f2a4771c68 +size 550998 diff --git a/detection/TEST/H5w92.xml b/detection/TEST/H5w92.xml new file mode 100644 index 0000000000000000000000000000000000000000..8a885051179f52af2abfbee12d0876abc37c5933 --- /dev/null +++ b/detection/TEST/H5w92.xml @@ -0,0 +1,26 @@ + + bell pepper leaf spot + H5w92.jpg + /home/pranjali/Desktop/sem6/ML_Project/latestDataset/ bell pepper leaf spot /H5w92.jpg + + Unknown + + + 2448 + 3264 + 3 + + 0 + + Bell_pepper leaf spot + Unspecified + 0 + 0 + + 201 + 223 + 2435 + 2937 + + + diff --git a/detection/TEST/IMG_1246.jpg b/detection/TEST/IMG_1246.jpg new file mode 100644 index 0000000000000000000000000000000000000000..511b80305196a4385efe22ef71772ce448267985 --- /dev/null +++ b/detection/TEST/IMG_1246.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d119deb0673b049551857318a686c6ecab5c2aa2607fc349ac25424d4ce636c2 +size 527789 diff --git a/detection/TEST/IMG_1246.xml b/detection/TEST/IMG_1246.xml new file mode 100644 index 0000000000000000000000000000000000000000..4b808bf29d93dc75b44881c61406ed65eac3151c --- /dev/null +++ b/detection/TEST/IMG_1246.xml @@ -0,0 +1,26 @@ + + tomato leaf + IMG_1246.jpg + /home/sohamp/Desktop/done/ tomato leaf /IMG_1246.jpg + + Unknown + + + 1600 + 1200 + 3 + + 0 + + Tomato leaf + Unspecified + 1 + 0 + + 1 + 193 + 1522 + 1068 + + + diff --git a/detection/TEST/IMG_1629.JPG?1507122477.jpg b/detection/TEST/IMG_1629.JPG?1507122477.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8db751b721f102e6dd633274bea1b9e097d7eabd --- /dev/null +++ b/detection/TEST/IMG_1629.JPG?1507122477.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ae7d000d7730a008e6bf53dfc78c207859c4569c2bad0eee22675129058256b +size 135678 diff --git a/detection/TEST/IMG_1629.JPG?1507122477.xml b/detection/TEST/IMG_1629.JPG?1507122477.xml new file mode 100644 index 0000000000000000000000000000000000000000..c80afeaa727818cc2f96dbd215f86943294f764e --- /dev/null +++ b/detection/TEST/IMG_1629.JPG?1507122477.xml @@ -0,0 +1,26 @@ + + bell pepper leaf + IMG_1629.JPG?1507122477.jpg + /media/master/Data/Sem6/ISDl/Pratik/ bell pepper leaf /IMG_1629.JPG?1507122477.jpg + + Unknown + + + 600 + 800 + 3 + + 0 + + Bell_pepper leaf + Unspecified + 1 + 0 + + 16 + 112 + 551 + 800 + + + diff --git a/detection/TEST/IMG_42231.jpg b/detection/TEST/IMG_42231.jpg new file mode 100644 index 0000000000000000000000000000000000000000..29c735c5f6792f7ab9916605d9a7651ae00cf67e --- /dev/null +++ b/detection/TEST/IMG_42231.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee3838e2249e671b7b4510b0d3831f30882e2bcbf20c9c8c42ee8f4e1b95fcce +size 1577792 diff --git a/detection/TEST/IMG_42231.xml b/detection/TEST/IMG_42231.xml new file mode 100644 index 0000000000000000000000000000000000000000..38ef0561ec4c7f389060c4ee7b39288c589457b5 --- /dev/null +++ b/detection/TEST/IMG_42231.xml @@ -0,0 +1,26 @@ + + Corn Gray leaf spot + IMG_42231.jpg + /home/davinder/ISDf/ Corn Gray leaf spot /IMG_42231.jpg + + Unknown + + + 3264 + 2448 + 3 + + 0 + + Corn Gray leaf spot + Unspecified + 1 + 0 + + 11 + 872 + 3264 + 2385 + + + \ No newline at end of file diff --git a/detection/TEST/IMG_5808.jpg b/detection/TEST/IMG_5808.jpg new file mode 100644 index 0000000000000000000000000000000000000000..771ec2f1cee68e38f061bce753d42c30a16d93e7 --- /dev/null +++ b/detection/TEST/IMG_5808.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f77f5a7245b8a2ff0e3640693e679ac52b036ab639bbfef405d7de4ed4768536 +size 1960797 diff --git a/detection/TEST/IMG_5808.xml b/detection/TEST/IMG_5808.xml new file mode 100644 index 0000000000000000000000000000000000000000..91c16ccde3ac9942e4aa9fed6d115cd46bc97baf --- /dev/null +++ b/detection/TEST/IMG_5808.xml @@ -0,0 +1,23 @@ + + tomato leaf late blight + IMG_5808.jpg + + 4000 + 3000 + 3 + + 0 + + Tomato leaf late blight + Unspecified + 0 + 0 + 0 + + 1381 + 99 + 3507 + 2555 + + + \ No newline at end of file diff --git a/detection/TEST/LateBlight04.jpg b/detection/TEST/LateBlight04.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1e3b32be2079116ce1d63adc47b47e2f2f43fc55 --- /dev/null +++ b/detection/TEST/LateBlight04.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce65c731160136a6f3c4c90b8de8ce50780ada4fe63a14184afba62c78e047fa +size 35773 diff --git a/detection/TEST/LateBlight04.xml b/detection/TEST/LateBlight04.xml new file mode 100644 index 0000000000000000000000000000000000000000..bd781b693a07e4f0bc752538ab55e3c3268969be --- /dev/null +++ b/detection/TEST/LateBlight04.xml @@ -0,0 +1,50 @@ + + Potato leaf late blight + LateBlight04.jpg + /media/master/Data/Sem6/ISDl/Pratik/ Potato leaf late blight /LateBlight04.jpg + + Unknown + + + 350 + 233 + 3 + + 0 + + Potato leaf late blight + Unspecified + 0 + 0 + + 187 + 81 + 316 + 173 + + + + Potato leaf late blight + Unspecified + 1 + 0 + + 311 + 51 + 350 + 168 + + + + Potato leaf late blight + Unspecified + 0 + 0 + + 215 + 157 + 316 + 202 + + + diff --git a/detection/TEST/LateBlt09_06.jpg b/detection/TEST/LateBlt09_06.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a9480f2b96fa44cd93059573cea350056a2c380d --- /dev/null +++ b/detection/TEST/LateBlt09_06.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69526a0f4413d8f8e786650a8264e460496e41e0a794747b8358c7d4074dfee6 +size 15801 diff --git a/detection/TEST/LateBlt09_06.xml b/detection/TEST/LateBlt09_06.xml new file mode 100644 index 0000000000000000000000000000000000000000..5cc1a790bb6e5a646a0ea40b7599aee4814adc78 --- /dev/null +++ b/detection/TEST/LateBlt09_06.xml @@ -0,0 +1,23 @@ + + tomato leaf late blight + LateBlt09_06.jpg + + 400 + 268 + 3 + + 0 + + Tomato leaf late blight + Unspecified + 0 + 0 + 0 + + 110 + 49 + 262 + 268 + + + \ No newline at end of file diff --git a/detection/TEST/P1130286.jpg b/detection/TEST/P1130286.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2107544be346bcb5e1c6c620600a6ed6e89bdd88 --- /dev/null +++ b/detection/TEST/P1130286.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:499dc9edb0c55b3c4344111aa83a4e49023a78cbde05e0092c86f3e0e5168366 +size 413214 diff --git a/detection/TEST/P1130286.xml b/detection/TEST/P1130286.xml new file mode 100644 index 0000000000000000000000000000000000000000..8df720b8954f0a235fbf9c01b8b392620be6d2de --- /dev/null +++ b/detection/TEST/P1130286.xml @@ -0,0 +1,26 @@ + + grape leaf + P1130286.jpg + /home/pranjali/Desktop/sem6/ML_Project/latestDataset/ grape leaf /P1130286.jpg + + Unknown + + + 1536 + 2048 + 3 + + 0 + + grape leaf + Unspecified + 0 + 0 + + 364 + 339 + 1432 + 1759 + + + diff --git a/detection/TEST/P1200665+Vaccinium+alaskaense+vs+ovalifolium+leaf+and++twig+cr.jpg b/detection/TEST/P1200665+Vaccinium+alaskaense+vs+ovalifolium+leaf+and++twig+cr.jpg new file mode 100644 index 0000000000000000000000000000000000000000..04875e9a15284da98d467b692747b8589739253a --- /dev/null +++ b/detection/TEST/P1200665+Vaccinium+alaskaense+vs+ovalifolium+leaf+and++twig+cr.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f16930fbfab4042fbabc2966fb8a7f9cfe00c1029b7f768e3afdf322c98f09e2 +size 185310 diff --git a/detection/TEST/P1200665+Vaccinium+alaskaense+vs+ovalifolium+leaf+and++twig+cr.xml b/detection/TEST/P1200665+Vaccinium+alaskaense+vs+ovalifolium+leaf+and++twig+cr.xml new file mode 100644 index 0000000000000000000000000000000000000000..053d103da5cb89f5ba953897f42faca2bb8e4ba1 --- /dev/null +++ b/detection/TEST/P1200665+Vaccinium+alaskaense+vs+ovalifolium+leaf+and++twig+cr.xml @@ -0,0 +1,38 @@ + + blueberry leaf + P1200665+Vaccinium+alaskaense+vs+ovalifolium+leaf+and++twig+cr.jpg + /home/davinder/ISDf/ blueberry leaf /P1200665+Vaccinium+alaskaense+vs+ovalifolium+leaf+and++twig+cr.jpg + + Unknown + + + 1600 + 1148 + 3 + + 0 + + Blueberry leaf + Unspecified + 0 + 0 + + 365 + 163 + 754 + 1019 + + + + Blueberry leaf + Unspecified + 0 + 0 + + 840 + 216 + 1239 + 948 + + + diff --git a/detection/TEST/P1200701+Vaccinium+ovalifolium+Oval-leaf+Blueberry+leaf+margin+Heather+Meadows+cr.jpg b/detection/TEST/P1200701+Vaccinium+ovalifolium+Oval-leaf+Blueberry+leaf+margin+Heather+Meadows+cr.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d3edf198dd34b844b7e7cfb030d8bf98bb5fe6e7 --- /dev/null +++ b/detection/TEST/P1200701+Vaccinium+ovalifolium+Oval-leaf+Blueberry+leaf+margin+Heather+Meadows+cr.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59c1b790426d06c2b119456b682f898453c9dcc3aac7d77627455d6b4c6c0cf2 +size 797763 diff --git a/detection/TEST/P1200701+Vaccinium+ovalifolium+Oval-leaf+Blueberry+leaf+margin+Heather+Meadows+cr.xml b/detection/TEST/P1200701+Vaccinium+ovalifolium+Oval-leaf+Blueberry+leaf+margin+Heather+Meadows+cr.xml new file mode 100644 index 0000000000000000000000000000000000000000..1375c3ebb2c0d83d485200fa7f76e8500ccffbea --- /dev/null +++ b/detection/TEST/P1200701+Vaccinium+ovalifolium+Oval-leaf+Blueberry+leaf+margin+Heather+Meadows+cr.xml @@ -0,0 +1,26 @@ + + blueberry leaf + P1200701+Vaccinium+ovalifolium+Oval-leaf+Blueberry+leaf+margin+Heather+Meadows+cr.jpg + /home/davinder/ISDf/ blueberry leaf /P1200701+Vaccinium+ovalifolium+Oval-leaf+Blueberry+leaf+margin+Heather+Meadows+cr.jpg + + Unknown + + + 1012 + 1376 + 3 + + 0 + + Blueberry leaf + Unspecified + 0 + 0 + + 130 + 14 + 958 + 1221 + + + diff --git a/detection/TEST/Powdery-Mildew-on-squash.jpg b/detection/TEST/Powdery-Mildew-on-squash.jpg new file mode 100644 index 0000000000000000000000000000000000000000..168f6ab4dfe4a9591360c74e1e796a36c36eea99 --- /dev/null +++ b/detection/TEST/Powdery-Mildew-on-squash.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0439b496676027f8849c588c6bc5422196ff322b7e8c5748a09a456c0c0f257d +size 101996 diff --git a/detection/TEST/Powdery-Mildew-on-squash.xml b/detection/TEST/Powdery-Mildew-on-squash.xml new file mode 100644 index 0000000000000000000000000000000000000000..0a4ac5f57dd348aa7ed8ab27387a646068136dfe --- /dev/null +++ b/detection/TEST/Powdery-Mildew-on-squash.xml @@ -0,0 +1,26 @@ + + Squash Powdery mildew leaf + Powdery-Mildew-on-squash.jpg + /media/master/Data/Sem6/ISDl/Pratik/ Squash Powdery mildew leaf /Powdery-Mildew-on-squash.jpg + + Unknown + + + 800 + 598 + 3 + + 0 + + Squash Powdery mildew leaf + Unspecified + 1 + 0 + + 8 + 34 + 800 + 535 + + + diff --git a/detection/TEST/RARZ4.jpg b/detection/TEST/RARZ4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c2325cf5136cd49797b06894e55da81170c04e6 --- /dev/null +++ b/detection/TEST/RARZ4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2005cb2706dc299ac16e5be8b42e705da41d4aae2d6fe17f24e87466a6a856fa +size 651323 diff --git a/detection/TEST/RARZ4.xml b/detection/TEST/RARZ4.xml new file mode 100644 index 0000000000000000000000000000000000000000..4f74b7b9f3dbaeea5e12705f607222fd47328414 --- /dev/null +++ b/detection/TEST/RARZ4.xml @@ -0,0 +1,49 @@ + + Tomato Septoria leaf spot + RARZ4.jpg + + 6000 + 4000 + 3 + + 0 + + Tomato Septoria leaf spot + Unspecified + 0 + 0 + 0 + + 3072 + 1243 + 4206 + 1900 + + + + Tomato Septoria leaf spot + Unspecified + 0 + 0 + 0 + + 3663 + 1637 + 5779 + 2529 + + + + Tomato Septoria leaf spot + Unspecified + 0 + 0 + 0 + + 74 + 995 + 2548 + 2551 + + + \ No newline at end of file diff --git a/detection/TEST/Raspberry-leaf.jpg b/detection/TEST/Raspberry-leaf.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a74ecb48b632ade36bdf7844ad20ad373a5e2edd --- /dev/null +++ b/detection/TEST/Raspberry-leaf.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145fa84daca79846d3703b5c4992a4f24555067750e7ef2a329500f77e72dc3c +size 119671 diff --git a/detection/TEST/Raspberry-leaf.xml b/detection/TEST/Raspberry-leaf.xml new file mode 100644 index 0000000000000000000000000000000000000000..4809c7779ba1cc1747789e1de7be346c41ebb0e1 --- /dev/null +++ b/detection/TEST/Raspberry-leaf.xml @@ -0,0 +1,26 @@ + + raspberry leaf + Raspberry-leaf.jpg + /media/master/Data/Sem6/ISDl/Pratik/ raspberry leaf /Raspberry-leaf.jpg + + Unknown + + + 1200 + 801 + 3 + + 0 + + Raspberry leaf + Unspecified + 0 + 0 + + 55 + 42 + 1094 + 696 + + + diff --git a/detection/TEST/RnGnC.jpg b/detection/TEST/RnGnC.jpg new file mode 100644 index 0000000000000000000000000000000000000000..856b2cbf21541fc09395af95c0641f8ffafd9d3f --- /dev/null +++ b/detection/TEST/RnGnC.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13b8b10d2b5ac884239a21da79d04911ea3128094aed4ee22a52b7a85c05e893 +size 414381 diff --git a/detection/TEST/RnGnC.xml b/detection/TEST/RnGnC.xml new file mode 100644 index 0000000000000000000000000000000000000000..1ab8380535c1cc9c3ca8d1376990e8a3e5430af1 --- /dev/null +++ b/detection/TEST/RnGnC.xml @@ -0,0 +1,50 @@ + + bell pepper leaf + RnGnC.jpg + /media/master/Data/Sem6/ISDl/Pratik/ bell pepper leaf /RnGnC.jpg + + Unknown + + + 2147 + 1432 + 3 + + 0 + + Bell_pepper leaf + Unspecified + 0 + 0 + + 15 + 113 + 1509 + 1297 + + + + Bell_pepper leaf + Unspecified + 0 + 0 + + 1294 + 70 + 1937 + 591 + + + + Bell_pepper leaf + Unspecified + 1 + 0 + + 1651 + 673 + 2147 + 976 + + + diff --git a/detection/TEST/Shoemaker_7068.JPG.jpg b/detection/TEST/Shoemaker_7068.JPG.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cb2b9717a2a1dcf52cb7dedbe110be2e19f85619 --- /dev/null +++ b/detection/TEST/Shoemaker_7068.JPG.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7885910ac8d584a706d6448390c24f77e4e36ada4a75ae58b354a5642d0448b4 +size 50718 diff --git a/detection/TEST/Shoemaker_7068.JPG.xml b/detection/TEST/Shoemaker_7068.JPG.xml new file mode 100644 index 0000000000000000000000000000000000000000..60f3d4f2cadd7a5feba206153f9251868eea6442 --- /dev/null +++ b/detection/TEST/Shoemaker_7068.JPG.xml @@ -0,0 +1,26 @@ + + Tomato Early blight leaf + Shoemaker_7068.JPG.jpg + /home/sohamp/Desktop/done/ Tomato Early blight leaf /Shoemaker_7068.JPG.jpg + + Unknown + + + 600 + 450 + 3 + + 0 + + Tomato Early blight leaf + Unspecified + 0 + 0 + + 12 + 105 + 564 + 395 + + + diff --git a/detection/TEST/Soybean%20edamame%20leaf1.JPG.jpg b/detection/TEST/Soybean%20edamame%20leaf1.JPG.jpg new file mode 100644 index 0000000000000000000000000000000000000000..da151e7469acb1109019501e324fa8c03022b9be --- /dev/null +++ b/detection/TEST/Soybean%20edamame%20leaf1.JPG.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80beb9f77638e075ef045dd0235d0b5c6beb7093bb3cb065b655901035cf1a21 +size 1590895 diff --git a/detection/TEST/Soybean%20edamame%20leaf1.JPG.xml b/detection/TEST/Soybean%20edamame%20leaf1.JPG.xml new file mode 100644 index 0000000000000000000000000000000000000000..e10afe282551d38d758bba564fad605edeb663a4 --- /dev/null +++ b/detection/TEST/Soybean%20edamame%20leaf1.JPG.xml @@ -0,0 +1,50 @@ + + soyabean leaf + Soybean%20edamame%20leaf1.JPG.jpg + /media/master/Data/Sem6/ISDl/Pratik/ soyabean leaf /Soybean%20edamame%20leaf1.JPG.jpg + + Unknown + + + 4048 + 3040 + 3 + + 0 + + Soyabean leaf + Unspecified + 1 + 0 + + 1344 + 1 + 2655 + 1749 + + + + Soyabean leaf + Unspecified + 0 + 0 + + 1826 + 1670 + 3344 + 2733 + + + + Soyabean leaf + Unspecified + 0 + 0 + + 187 + 1424 + 1744 + 2509 + + + diff --git a/detection/TEST/Tom_Bact3.jpg b/detection/TEST/Tom_Bact3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f91ffccc2f9ca2bd071ab55640567858566f4194 --- /dev/null +++ b/detection/TEST/Tom_Bact3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abe1259ccd33542f7cd9c14ecef8a995b601272c0808b52daade7f153fdc5b66 +size 14838 diff --git a/detection/TEST/Tom_Bact3.xml b/detection/TEST/Tom_Bact3.xml new file mode 100644 index 0000000000000000000000000000000000000000..53997df77d633cd6d4a1b97529536fb138d7e860 --- /dev/null +++ b/detection/TEST/Tom_Bact3.xml @@ -0,0 +1,23 @@ + + tomato leaf bacterial spot + Tom_Bact3.jpg + + 400 + 230 + 3 + + 0 + + Tomato leaf bacterial spot + Unspecified + 0 + 0 + 0 + + 46 + 8 + 157 + 227 + + + \ No newline at end of file diff --git a/detection/TEST/Tom_Bact7.jpg b/detection/TEST/Tom_Bact7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..32e052fb3248a8d56513b25e423dd10f7e7a1017 --- /dev/null +++ b/detection/TEST/Tom_Bact7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07d8f5a4a18746daf367d85b9254364ace2824ce5c31dfacefb0d00b89d99ac8 +size 29211 diff --git a/detection/TEST/Tom_Bact7.xml b/detection/TEST/Tom_Bact7.xml new file mode 100644 index 0000000000000000000000000000000000000000..737511e7545d71a6a1458f6905da58d7c676f425 --- /dev/null +++ b/detection/TEST/Tom_Bact7.xml @@ -0,0 +1,75 @@ + + tomato leaf bacterial spot + Tom_Bact7.jpg + + 400 + 268 + 3 + + 0 + + Tomato leaf bacterial spot + Unspecified + 0 + 0 + 0 + + 60 + 152 + 115 + 214 + + + + Tomato leaf bacterial spot + Unspecified + 0 + 0 + 0 + + 121 + 157 + 242 + 265 + + + + Tomato leaf bacterial spot + Unspecified + 0 + 0 + 0 + + 175 + 85 + 367 + 191 + + + + Tomato leaf bacterial spot + Unspecified + 0 + 0 + 0 + + 146 + 60 + 298 + 124 + + + + Tomato leaf bacterial spot + Unspecified + 0 + 0 + 0 + + 64 + 5 + 216 + 118 + + + \ No newline at end of file diff --git a/detection/TEST/Tomato%2BBacterial%2BSpot%2Bon%2BLeaves.jpg b/detection/TEST/Tomato%2BBacterial%2BSpot%2Bon%2BLeaves.jpg new file mode 100644 index 0000000000000000000000000000000000000000..db7b92203d98bce7e44b532feb481666195b1694 --- /dev/null +++ b/detection/TEST/Tomato%2BBacterial%2BSpot%2Bon%2BLeaves.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98d1b4229761f914476b63c2b7c70a4bd5a23681bf9b4622b642c3dc09cac8ce +size 45487 diff --git a/detection/TEST/Tomato%2BBacterial%2BSpot%2Bon%2BLeaves.xml b/detection/TEST/Tomato%2BBacterial%2BSpot%2Bon%2BLeaves.xml new file mode 100644 index 0000000000000000000000000000000000000000..8e2221542eaa6a374f9ccea1cae94ed5841b3cb0 --- /dev/null +++ b/detection/TEST/Tomato%2BBacterial%2BSpot%2Bon%2BLeaves.xml @@ -0,0 +1,23 @@ + + tomato leaf bacterial spot + Tomato%2BBacterial%2BSpot%2Bon%2BLeaves.jpg + + 500 + 263 + 3 + + 0 + + Tomato leaf bacterial spot + Unspecified + 0 + 0 + 0 + + 9 + 8 + 395 + 241 + + + \ No newline at end of file diff --git a/detection/TEST/Tomato-Mosaic-1wdr2jx-300x225.jpg b/detection/TEST/Tomato-Mosaic-1wdr2jx-300x225.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d9936dde978cde565809765deeefe654bf78d26a --- /dev/null +++ b/detection/TEST/Tomato-Mosaic-1wdr2jx-300x225.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e1e9dd3e151f41b1a610024c4ca401a7c052f970723faf8b137edce24102e41 +size 5281 diff --git a/detection/TEST/Tomato-Mosaic-1wdr2jx-300x225.xml b/detection/TEST/Tomato-Mosaic-1wdr2jx-300x225.xml new file mode 100644 index 0000000000000000000000000000000000000000..eb807c26e93d1a0372112724fc1895fbb05b6aa9 --- /dev/null +++ b/detection/TEST/Tomato-Mosaic-1wdr2jx-300x225.xml @@ -0,0 +1,23 @@ + + tomato leaf mosaic virus + Tomato-Mosaic-1wdr2jx-300x225.jpg + + 130 + 69 + 3 + + 0 + + Tomato leaf mosaic virus + Unspecified + 0 + 0 + 0 + + 2 + 2 + 129 + 68 + + + \ No newline at end of file diff --git a/detection/TEST/Tomato59.JPG.jpg b/detection/TEST/Tomato59.JPG.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cf9f6afd936afa710bc470926670ae260500b132 --- /dev/null +++ b/detection/TEST/Tomato59.JPG.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36d4cf67739d3d7b079eed20331535674781886f75abbf7f010999a45b00980f +size 293562 diff --git a/detection/TEST/Tomato59.JPG.xml b/detection/TEST/Tomato59.JPG.xml new file mode 100644 index 0000000000000000000000000000000000000000..2f3b48c19386cfb2c7df0835d2064303ad778114 --- /dev/null +++ b/detection/TEST/Tomato59.JPG.xml @@ -0,0 +1,134 @@ + + tomato leaf + Tomato59.JPG.jpg + /home/sohamp/Desktop/done/ tomato leaf /Tomato59.JPG.jpg + + Unknown + + + 1600 + 1205 + 3 + + 0 + + Tomato leaf + Unspecified + 0 + 0 + + 932 + 190 + 1151 + 515 + + + + Tomato leaf + Unspecified + 0 + 0 + + 151 + 290 + 598 + 534 + + + + Tomato leaf + Unspecified + 0 + 0 + + 1160 + 172 + 1404 + 458 + + + + Tomato leaf + Unspecified + 0 + 0 + + 513 + 162 + 628 + 330 + + + + Tomato leaf + Unspecified + 0 + 0 + + 381 + 202 + 566 + 328 + + + + Tomato leaf + Unspecified + 0 + 0 + + 1166 + 939 + 1468 + 1194 + + + + Tomato leaf + Unspecified + 0 + 0 + + 1006 + 861 + 1211 + 1202 + + + + Tomato leaf + Unspecified + 0 + 0 + + 224 + 679 + 492 + 781 + + + + Tomato leaf + Unspecified + 0 + 0 + + 479 + 790 + 805 + 928 + + + + Tomato leaf + Unspecified + 0 + 0 + + 624 + 938 + 909 + 1173 + + + diff --git a/detection/TEST/Tomato_leaf.jpg b/detection/TEST/Tomato_leaf.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aaea87dbe4f7621f24986aaa8e22de7e4edb9668 --- /dev/null +++ b/detection/TEST/Tomato_leaf.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cffe92d5f898fa2bb96e78f63ef46059b710a0f2d97054f1e534a5619778b13 +size 1708931 diff --git a/detection/TEST/Tomato_leaf.xml b/detection/TEST/Tomato_leaf.xml new file mode 100644 index 0000000000000000000000000000000000000000..fec293552940f236ee6b7a1444feb3cae35424c3 --- /dev/null +++ b/detection/TEST/Tomato_leaf.xml @@ -0,0 +1,26 @@ + + tomato leaf + Tomato_leaf.jpg + /home/sohamp/Desktop/done/ tomato leaf /Tomato_leaf.jpg + + Unknown + + + 2144 + 2143 + 3 + + 0 + + Tomato leaf + Unspecified + 0 + 0 + + 34 + 31 + 2118 + 2128 + + + diff --git a/detection/TEST/apple%20scab%20leaf.jpg b/detection/TEST/apple%20scab%20leaf.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1378860f0bf58309b5b1268b702d20217e499a7e --- /dev/null +++ b/detection/TEST/apple%20scab%20leaf.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fc6c998582e99696112bc79e2ce2f20f023641323d2642489b772f43073f3cf +size 74044 diff --git a/detection/TEST/apple%20scab%20leaf.xml b/detection/TEST/apple%20scab%20leaf.xml new file mode 100644 index 0000000000000000000000000000000000000000..9d5663fd063021f112d4766fdfc01ca0e103353b --- /dev/null +++ b/detection/TEST/apple%20scab%20leaf.xml @@ -0,0 +1,26 @@ + + Apple Scab Leaf + apple%20scab%20leaf.jpg + /home/davinder/ISDf/ Apple Scab Leaf /apple%20scab%20leaf.jpg + + Unknown + + + 239 + 398 + 3 + + 0 + + Apple Scab Leaf + Unspecified + 1 + 0 + + 1 + 1 + 239 + 397 + + + diff --git a/detection/TEST/apple%20scabnew.jpg b/detection/TEST/apple%20scabnew.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4bd9bdfeddcf90321d219e3b8fda560f8fc3d7d --- /dev/null +++ b/detection/TEST/apple%20scabnew.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6caf2ad458a695a73f9d890934f38628ad47e1fc395e5219ce0ee1caf57242d8 +size 286420 diff --git a/detection/TEST/apple%20scabnew.xml b/detection/TEST/apple%20scabnew.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a75a83c7fb85847d05c687fff82da07018f72f8 --- /dev/null +++ b/detection/TEST/apple%20scabnew.xml @@ -0,0 +1,26 @@ + + Apple Scab Leaf + apple%20scabnew.jpg + /home/davinder/ISDf/ Apple Scab Leaf /apple%20scabnew.jpg + + Unknown + + + 490 + 392 + 3 + + 0 + + Apple Scab Leaf + Unspecified + 0 + 0 + + 60 + 110 + 409 + 323 + + + diff --git a/detection/TEST/apple-leaf-14319997.jpg b/detection/TEST/apple-leaf-14319997.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e627525febe0164c7654e68ee661202f8eefafee --- /dev/null +++ b/detection/TEST/apple-leaf-14319997.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee31497d152703df4f9581a32796cc272181cc0b2bd7be22d5e10ee0f40cac9d +size 173644 diff --git a/detection/TEST/apple-leaf-14319997.xml b/detection/TEST/apple-leaf-14319997.xml new file mode 100644 index 0000000000000000000000000000000000000000..11b20a78331ef10c94a85899dd3e4119dfde5517 --- /dev/null +++ b/detection/TEST/apple-leaf-14319997.xml @@ -0,0 +1,26 @@ + + apple leaf + apple-leaf-14319997.jpg + /home/davinder/ISDf/ apple leaf /apple-leaf-14319997.jpg + + Unknown + + + 1300 + 1174 + 3 + + 0 + + Apple leaf + Unspecified + 0 + 0 + + 85 + 102 + 1298 + 974 + + + diff --git a/detection/TEST/apple-leaf-9834637.jpg b/detection/TEST/apple-leaf-9834637.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4da090f95ad9c04fe79d8c9542190edc52244932 --- /dev/null +++ b/detection/TEST/apple-leaf-9834637.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56a414ce3976cfbd137ebabac52ca2faba093d9a865368d129eae5bae0ac14e8 +size 111435 diff --git a/detection/TEST/apple-leaf-9834637.xml b/detection/TEST/apple-leaf-9834637.xml new file mode 100644 index 0000000000000000000000000000000000000000..f5c4860679bdae3324a48e0a789bbccb517a7e17 --- /dev/null +++ b/detection/TEST/apple-leaf-9834637.xml @@ -0,0 +1,26 @@ + + apple leaf + apple-leaf-9834637.jpg + /home/davinder/ISDf/ apple leaf /apple-leaf-9834637.jpg + + Unknown + + + 1300 + 957 + 3 + + 0 + + Apple leaf + Unspecified + 0 + 0 + + 98 + 157 + 1204 + 729 + + + diff --git a/detection/TEST/apple-leaf-closeup-37636177.jpg b/detection/TEST/apple-leaf-closeup-37636177.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7f4c7bbd7cb020612638f5c792b5ae298456c0d4 --- /dev/null +++ b/detection/TEST/apple-leaf-closeup-37636177.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d345ef55e8b6b13407264385e8076101c8f3711b908c6c2f8eb32a16ae78864 +size 172274 diff --git a/detection/TEST/apple-leaf-closeup-37636177.xml b/detection/TEST/apple-leaf-closeup-37636177.xml new file mode 100644 index 0000000000000000000000000000000000000000..9984001f81154024295c54a2cdcd31a586aa8bfb --- /dev/null +++ b/detection/TEST/apple-leaf-closeup-37636177.xml @@ -0,0 +1,26 @@ + + apple leaf + apple-leaf-closeup-37636177.jpg + /home/davinder/ISDf/ apple leaf /apple-leaf-closeup-37636177.jpg + + Unknown + + + 1300 + 957 + 3 + + 0 + + Apple leaf + Unspecified + 0 + 0 + + 131 + 52 + 1047 + 852 + + + diff --git a/detection/TEST/apple-leaf-isolated-white-background-56631026.jpg b/detection/TEST/apple-leaf-isolated-white-background-56631026.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2df7e6903f705416ab10c6d5ee769836a5130ea4 --- /dev/null +++ b/detection/TEST/apple-leaf-isolated-white-background-56631026.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4742bf7d38d0b0d9042cb3430d6f703d9877fc1bc5703977da24d48fb001df82 +size 101601 diff --git a/detection/TEST/apple-leaf-isolated-white-background-56631026.xml b/detection/TEST/apple-leaf-isolated-white-background-56631026.xml new file mode 100644 index 0000000000000000000000000000000000000000..b6f188136f6947934f1fa736029b931f93c6662a --- /dev/null +++ b/detection/TEST/apple-leaf-isolated-white-background-56631026.xml @@ -0,0 +1,26 @@ + + apple leaf + apple-leaf-isolated-white-background-56631026.jpg + /home/davinder/ISDf/ apple leaf /apple-leaf-isolated-white-background-56631026.jpg + + Unknown + + + 800 + 692 + 3 + + 0 + + Apple leaf + Unspecified + 0 + 0 + + 124 + 72 + 661 + 637 + + +