├── LICENSE ├── README.md ├── docs ├── acc-err.md ├── flops.md ├── fps.md ├── index.md ├── map │ ├── index.md │ ├── 代码解析-如何计算Precision和Recall.md │ └── 代码解析-如何计算TP和FP.md └── params.md ├── mkdocs.yml ├── py ├── .gitignore ├── input │ ├── detection-results │ │ ├── cucumber_1.txt │ │ ├── cucumber_10.txt │ │ ├── cucumber_11.txt │ │ ├── cucumber_12.txt │ │ ├── cucumber_13.txt │ │ ├── cucumber_14.txt │ │ ├── cucumber_15.txt │ │ ├── cucumber_16.txt │ │ ├── cucumber_17.txt │ │ ├── cucumber_18.txt │ │ ├── cucumber_19.txt │ │ ├── cucumber_2.txt │ │ ├── cucumber_20.txt │ │ ├── cucumber_21.txt │ │ ├── cucumber_22.txt │ │ ├── cucumber_23.txt │ │ ├── cucumber_24.txt │ │ ├── cucumber_25.txt │ │ ├── cucumber_26.txt │ │ ├── cucumber_27.txt │ │ ├── cucumber_28.txt │ │ ├── cucumber_29.txt │ │ ├── cucumber_3.txt │ │ ├── cucumber_30.txt │ │ ├── cucumber_31.txt │ │ ├── cucumber_32.txt │ │ ├── cucumber_33.txt │ │ ├── cucumber_34.txt │ │ ├── cucumber_35.txt │ │ ├── cucumber_36.txt │ │ ├── cucumber_37.txt │ │ ├── cucumber_38.txt │ │ ├── cucumber_39.txt │ │ ├── cucumber_4.txt │ │ ├── cucumber_40.txt │ │ ├── cucumber_41.txt │ │ ├── cucumber_42.txt │ │ ├── cucumber_43.txt │ │ ├── cucumber_44.txt │ │ ├── cucumber_45.txt │ │ ├── cucumber_46.txt │ │ ├── cucumber_47.txt │ │ ├── cucumber_48.txt │ │ ├── cucumber_49.txt │ │ ├── cucumber_5.txt │ │ ├── cucumber_50.txt │ │ ├── cucumber_51.txt │ │ ├── cucumber_52.txt │ │ ├── cucumber_53.txt │ │ ├── cucumber_54.txt │ │ ├── cucumber_55.txt │ │ ├── cucumber_56.txt │ │ ├── cucumber_57.txt │ │ ├── cucumber_58.txt │ │ ├── cucumber_59.txt │ │ ├── cucumber_6.txt │ │ ├── cucumber_60.txt │ │ ├── cucumber_61.txt │ │ ├── cucumber_62.txt │ │ ├── cucumber_63.txt │ │ ├── cucumber_7.txt │ │ ├── cucumber_8.txt │ │ ├── cucumber_9.txt │ │ ├── eggplant_1.txt │ │ ├── eggplant_10.txt │ │ ├── eggplant_11.txt │ │ ├── eggplant_12.txt │ │ ├── eggplant_13.txt │ │ ├── eggplant_14.txt │ │ ├── eggplant_15.txt │ │ ├── eggplant_16.txt │ │ ├── eggplant_17.txt │ │ ├── eggplant_18.txt │ │ ├── eggplant_19.txt │ │ ├── eggplant_2.txt │ │ ├── eggplant_20.txt │ │ ├── eggplant_21.txt │ │ ├── eggplant_22.txt │ │ ├── eggplant_23.txt │ │ ├── eggplant_24.txt │ │ ├── eggplant_25.txt │ │ ├── eggplant_26.txt │ │ ├── eggplant_27.txt │ │ ├── eggplant_28.txt │ │ ├── eggplant_29.txt │ │ ├── eggplant_3.txt │ │ ├── eggplant_30.txt │ │ ├── eggplant_31.txt │ │ ├── eggplant_32.txt │ │ ├── eggplant_33.txt │ │ ├── eggplant_34.txt │ │ ├── eggplant_35.txt │ │ ├── eggplant_36.txt │ │ ├── eggplant_37.txt │ │ ├── eggplant_38.txt │ │ ├── eggplant_39.txt │ │ ├── eggplant_4.txt │ │ ├── eggplant_40.txt │ │ ├── eggplant_41.txt │ │ ├── eggplant_42.txt │ │ ├── eggplant_43.txt │ │ ├── eggplant_44.txt │ │ ├── eggplant_45.txt │ │ ├── eggplant_46.txt │ │ ├── eggplant_47.txt │ │ ├── eggplant_48.txt │ │ ├── eggplant_49.txt │ │ ├── eggplant_5.txt │ │ ├── eggplant_50.txt │ │ ├── eggplant_51.txt │ │ ├── eggplant_52.txt │ │ ├── eggplant_53.txt │ │ ├── eggplant_54.txt │ │ ├── eggplant_55.txt │ │ ├── eggplant_56.txt │ │ ├── eggplant_57.txt │ │ ├── eggplant_58.txt │ │ ├── eggplant_59.txt │ │ ├── eggplant_6.txt │ │ ├── eggplant_60.txt │ │ ├── eggplant_61.txt │ │ ├── eggplant_62.txt │ │ ├── eggplant_7.txt │ │ ├── eggplant_8.txt │ │ ├── eggplant_9.txt │ │ ├── mushroom_1.txt │ │ ├── mushroom_10.txt │ │ ├── mushroom_11.txt │ │ ├── mushroom_12.txt │ │ ├── mushroom_13.txt │ │ ├── mushroom_14.txt │ │ ├── mushroom_15.txt │ │ ├── mushroom_16.txt │ │ ├── mushroom_17.txt │ │ ├── mushroom_18.txt │ │ ├── mushroom_19.txt │ │ ├── mushroom_2.txt │ │ ├── mushroom_20.txt │ │ ├── mushroom_21.txt │ │ ├── mushroom_22.txt │ │ ├── mushroom_23.txt │ │ ├── mushroom_24.txt │ │ ├── mushroom_25.txt │ │ ├── mushroom_26.txt │ │ ├── mushroom_27.txt │ │ ├── mushroom_28.txt │ │ ├── mushroom_29.txt │ │ ├── mushroom_3.txt │ │ ├── mushroom_30.txt │ │ ├── mushroom_31.txt │ │ ├── mushroom_32.txt │ │ ├── mushroom_33.txt │ │ ├── mushroom_34.txt │ │ ├── mushroom_35.txt │ │ ├── mushroom_36.txt │ │ ├── mushroom_37.txt │ │ ├── mushroom_38.txt │ │ ├── mushroom_39.txt │ │ ├── mushroom_4.txt │ │ ├── mushroom_40.txt │ │ ├── mushroom_41.txt │ │ ├── mushroom_42.txt │ │ ├── mushroom_43.txt │ │ ├── mushroom_44.txt │ │ ├── mushroom_45.txt │ │ ├── mushroom_46.txt │ │ ├── mushroom_47.txt │ │ ├── mushroom_48.txt │ │ ├── mushroom_49.txt │ │ ├── mushroom_5.txt │ │ ├── mushroom_50.txt │ │ ├── mushroom_51.txt │ │ ├── mushroom_52.txt │ │ ├── mushroom_53.txt │ │ ├── mushroom_54.txt │ │ ├── mushroom_55.txt │ │ ├── mushroom_56.txt │ │ ├── mushroom_57.txt │ │ ├── mushroom_58.txt │ │ ├── mushroom_59.txt │ │ ├── mushroom_6.txt │ │ ├── mushroom_60.txt │ │ ├── mushroom_61.txt │ │ ├── mushroom_7.txt │ │ ├── mushroom_8.txt │ │ └── mushroom_9.txt │ ├── dt.json │ ├── ground-truth │ │ ├── cucumber_1.txt │ │ ├── cucumber_10.txt │ │ ├── cucumber_11.txt │ │ ├── cucumber_12.txt │ │ ├── cucumber_13.txt │ │ ├── cucumber_14.txt │ │ ├── cucumber_15.txt │ │ ├── cucumber_16.txt │ │ ├── cucumber_17.txt │ │ ├── cucumber_18.txt │ │ ├── cucumber_19.txt │ │ ├── cucumber_2.txt │ │ ├── cucumber_20.txt │ │ ├── cucumber_21.txt │ │ ├── cucumber_22.txt │ │ ├── cucumber_23.txt │ │ ├── cucumber_24.txt │ │ ├── cucumber_25.txt │ │ ├── cucumber_26.txt │ │ ├── cucumber_27.txt │ │ ├── cucumber_28.txt │ │ ├── cucumber_29.txt │ │ ├── cucumber_3.txt │ │ ├── cucumber_30.txt │ │ ├── cucumber_31.txt │ │ ├── cucumber_32.txt │ │ ├── cucumber_33.txt │ │ ├── cucumber_34.txt │ │ ├── cucumber_35.txt │ │ ├── cucumber_36.txt │ │ ├── cucumber_37.txt │ │ ├── cucumber_38.txt │ │ ├── cucumber_39.txt │ │ ├── cucumber_4.txt │ │ ├── cucumber_40.txt │ │ ├── cucumber_41.txt │ │ ├── cucumber_42.txt │ │ ├── cucumber_43.txt │ │ ├── cucumber_44.txt │ │ ├── cucumber_45.txt │ │ ├── cucumber_46.txt │ │ ├── cucumber_47.txt │ │ ├── cucumber_48.txt │ │ ├── cucumber_49.txt │ │ ├── cucumber_5.txt │ │ ├── cucumber_50.txt │ │ ├── cucumber_51.txt │ │ ├── cucumber_52.txt │ │ ├── cucumber_53.txt │ │ ├── cucumber_54.txt │ │ ├── cucumber_55.txt │ │ ├── cucumber_56.txt │ │ ├── cucumber_57.txt │ │ ├── cucumber_58.txt │ │ ├── cucumber_59.txt │ │ ├── cucumber_6.txt │ │ ├── cucumber_60.txt │ │ ├── cucumber_61.txt │ │ ├── cucumber_62.txt │ │ ├── cucumber_63.txt │ │ ├── cucumber_7.txt │ │ ├── cucumber_8.txt │ │ ├── cucumber_9.txt │ │ ├── eggplant_1.txt │ │ ├── eggplant_10.txt │ │ ├── eggplant_11.txt │ │ ├── eggplant_12.txt │ │ ├── eggplant_13.txt │ │ ├── eggplant_14.txt │ │ ├── eggplant_15.txt │ │ ├── eggplant_16.txt │ │ ├── eggplant_17.txt │ │ ├── eggplant_18.txt │ │ ├── eggplant_19.txt │ │ ├── eggplant_2.txt │ │ ├── eggplant_20.txt │ │ ├── eggplant_21.txt │ │ ├── eggplant_22.txt │ │ ├── eggplant_23.txt │ │ ├── eggplant_24.txt │ │ ├── eggplant_25.txt │ │ ├── eggplant_26.txt │ │ ├── eggplant_27.txt │ │ ├── eggplant_28.txt │ │ ├── eggplant_29.txt │ │ ├── eggplant_3.txt │ │ ├── eggplant_30.txt │ │ ├── eggplant_31.txt │ │ ├── eggplant_32.txt │ │ ├── eggplant_33.txt │ │ ├── eggplant_34.txt │ │ ├── eggplant_35.txt │ │ ├── eggplant_36.txt │ │ ├── eggplant_37.txt │ │ ├── eggplant_38.txt │ │ ├── eggplant_39.txt │ │ ├── eggplant_4.txt │ │ ├── eggplant_40.txt │ │ ├── eggplant_41.txt │ │ ├── eggplant_42.txt │ │ ├── eggplant_43.txt │ │ ├── eggplant_44.txt │ │ ├── eggplant_45.txt │ │ ├── eggplant_46.txt │ │ ├── eggplant_47.txt │ │ ├── eggplant_48.txt │ │ ├── eggplant_49.txt │ │ ├── eggplant_5.txt │ │ ├── eggplant_50.txt │ │ ├── eggplant_51.txt │ │ ├── eggplant_52.txt │ │ ├── eggplant_53.txt │ │ ├── eggplant_54.txt │ │ ├── eggplant_55.txt │ │ ├── eggplant_56.txt │ │ ├── eggplant_57.txt │ │ ├── eggplant_58.txt │ │ ├── eggplant_59.txt │ │ ├── eggplant_6.txt │ │ ├── eggplant_60.txt │ │ ├── eggplant_61.txt │ │ ├── eggplant_62.txt │ │ ├── eggplant_7.txt │ │ ├── eggplant_8.txt │ │ ├── eggplant_9.txt │ │ ├── mushroom_1.txt │ │ ├── mushroom_10.txt │ │ ├── mushroom_11.txt │ │ ├── mushroom_12.txt │ │ ├── mushroom_13.txt │ │ ├── mushroom_14.txt │ │ ├── mushroom_15.txt │ │ ├── mushroom_16.txt │ │ ├── mushroom_17.txt │ │ ├── mushroom_18.txt │ │ ├── mushroom_19.txt │ │ ├── mushroom_2.txt │ │ ├── mushroom_20.txt │ │ ├── mushroom_21.txt │ │ ├── mushroom_22.txt │ │ ├── mushroom_23.txt │ │ ├── mushroom_24.txt │ │ ├── mushroom_25.txt │ │ ├── mushroom_26.txt │ │ ├── mushroom_27.txt │ │ ├── mushroom_28.txt │ │ ├── mushroom_29.txt │ │ ├── mushroom_3.txt │ │ ├── mushroom_30.txt │ │ ├── mushroom_31.txt │ │ ├── mushroom_32.txt │ │ ├── mushroom_33.txt │ │ ├── mushroom_34.txt │ │ ├── mushroom_35.txt │ │ ├── mushroom_36.txt │ │ ├── mushroom_37.txt │ │ ├── mushroom_38.txt │ │ ├── mushroom_39.txt │ │ ├── mushroom_4.txt │ │ ├── mushroom_40.txt │ │ ├── mushroom_41.txt │ │ ├── mushroom_42.txt │ │ ├── mushroom_43.txt │ │ ├── mushroom_44.txt │ │ ├── mushroom_45.txt │ │ ├── mushroom_46.txt │ │ ├── mushroom_47.txt │ │ ├── mushroom_48.txt │ │ ├── mushroom_49.txt │ │ ├── mushroom_5.txt │ │ ├── mushroom_50.txt │ │ ├── mushroom_51.txt │ │ ├── mushroom_52.txt │ │ ├── mushroom_53.txt │ │ ├── mushroom_54.txt │ │ ├── mushroom_55.txt │ │ ├── mushroom_56.txt │ │ ├── mushroom_57.txt │ │ ├── mushroom_58.txt │ │ ├── mushroom_59.txt │ │ ├── mushroom_6.txt │ │ ├── mushroom_60.txt │ │ ├── mushroom_61.txt │ │ ├── mushroom_7.txt │ │ ├── mushroom_8.txt │ │ └── mushroom_9.txt │ └── gt.json ├── metrics │ ├── __init__.py │ ├── acc.py │ ├── coco │ │ ├── __init__.py │ │ ├── build.py │ │ ├── coco_map.py │ │ └── misc.py │ ├── map │ │ ├── __init__.py │ │ ├── build.py │ │ ├── misc.py │ │ └── voc_map.py │ └── model.py ├── requirements.txt ├── test_acc_err.py ├── test_coco.py ├── test_fps.py ├── test_map_coco.py ├── test_map_voc.py ├── test_params_flops.py └── voc2coco │ ├── labels.txt │ ├── misc.py │ ├── voc2coco.py │ └── voc2coco_json.sh └── requirements.txt /docs/flops.md: -------------------------------------------------------------------------------- 1 | 2 | # 如何衡量模型计算能力 3 | 4 | ## 定义 5 | 6 | 使用`Flops`可以衡量模型算法能力。`Flops(Floating Point Of Operations)`表示浮点运算次数,由于目前模型计算能力巨大,所以通常使用`GFlops`来衡量算法性能,其表示十亿(`=10^9`)次的浮点运算 7 | 8 | ### Flops vs Macs 9 | 10 | 参考:[What is the relationship between GMACs and GFLOPs? #16](https://github.com/sovrasov/flops-counter.pytorch/issues/16) 11 | 12 | `Mac`表示一次乘加操作(`Multiply–accumulate operation`),通常在硬件架构中使用其计算张量操作,所以`Mac = 2Flops -> Flops = 2Mac` 13 | 14 | ### 额外阅读 15 | 16 | * [有关FLOPS的定义与计算](https://www.jianshu.com/p/e61eeae2d338) 17 | * [分享一个FLOPs计算神器](https://www.jianshu.com/p/b1ceaa7effa8):里面介绍了另外一个计算`Flops`的仓库 18 | 19 | ## 实现 20 | 21 | 使用了一个工具[Lyken17/pytorch-OpCounter](https://github.com/Lyken17/pytorch-OpCounter)完成`Macs`和参数数目的计算 22 | 23 | ### 安装 24 | 25 | ``` 26 | pip install --upgrade git+https://github.com/Lyken17/pytorch-OpCounter.git 27 | ``` 28 | 29 | ### 使用 30 | 31 | * 实现文件:`metrics/model.py` 32 | * 测试文件:`test_params_flops.py` -------------------------------------------------------------------------------- /docs/fps.md: -------------------------------------------------------------------------------- 1 | 2 | # 如何衡量模型/算法计算时间 3 | 4 | ## 定义 5 | 6 | 使用`Flops`能够估算出模型的计算能力,不过对于具体平台下的模型计算时间,还需要使用`fps`衡量。`fps(Frames Per Second)`值得是每秒能够处理的图像数目 7 | 8 | 可分为两部分,一部分是如何计算模型的单次运行时间;另一部分是计算整个算法的单次运行时间 9 | 10 | ## 实现 11 | 12 | * 实现文件:`metrics/model.py` 13 | * 测试文件:`test_fps.py` -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | # Evaluation-Metrics 2 | 3 | 小结目标检测和分类领域常用的评价指标,方便之后算法的评估和代码移植 4 | 5 | * [params](params.md) 6 | * [Flops](flops.md) 7 | * [fps](fps.md) 8 | * [accuracy/error-rate](acc-err.md) 9 | * [mAP](map/index.md) 10 | 11 | ## 相关阅读 12 | 13 | * [模型性能测试](https://blog.zhujian.life/posts/4bc9fe45.html) -------------------------------------------------------------------------------- /docs/map/index.md: -------------------------------------------------------------------------------- 1 | 2 | # mAP 3 | 4 | `mAP(mean Average Precision,即各类别AP的平均值)`是目标检测任务中最常用的评价标准 5 | 6 | 当前普遍使用两个数据集提供的`mAP`计算 7 | 8 | 1. `PASCAL VOC` 9 | 2. `COCO` 10 | 11 | `PASCAL VOC`最开始系统化提出`mAP`的计算方式,而`COCO`的`mAP`计算更加复杂,也更加能够评估检测器性能 12 | 13 | 下面首先学习并实现`VOC mAP`的计算方式,然后学习`COCO`提供的工具包`cocoapi` 14 | 15 | ## VOC mAP 16 | 17 | * 完整实现代码:`py/metrics/map/` 18 | * 测试代码:`py/test_map_voc.py` 19 | 20 | ### 操作步骤 21 | 22 | 1. 放置标注文件到`input/ground-truth`文件夹 23 | 2. 放置对应的预测结果到`input/detection-results`文件夹 24 | 3. 执行`python voc_map.py` 25 | 26 | 标注文件中每行表示一个标注边界框,其格式为 27 | 28 | * `class-name xmin ymin xmax ymax` 29 | 30 | 预测文件中每行表示一个预测边界框,其格式为 31 | 32 | * `class-name confidence xmin ymin xmax ymax` 33 | 34 | ### 相关阅读 35 | 36 | * [[目标检测][PASCAL VOC]mAP](https://blog.zhujian.life/posts/d817618d.html) 37 | 38 | ## COCO mAP 39 | 40 | * [[数据集]COCO简介](https://blog.zhujian.life/posts/ef73a2c1.html) 41 | * [ [数据集][COCO]目标检测任务](https://blog.zhujian.life/posts/46b5955b.html) 42 | * [[数据集]voc2coco及cocoapi使用](https://blog.zhujian.life/posts/7bae9c2d.html) 43 | * [[数据集][COCO]目标检测任务评估](https://blog.zhujian.life/posts/d77724ad.html) -------------------------------------------------------------------------------- /docs/map/代码解析-如何计算Precision和Recall.md: -------------------------------------------------------------------------------- 1 | 2 | # [代码解析]如何计算Precision和Recall 3 | 4 | 相关文件:`py/metrics/map/voc_map.py` 5 | 6 | ## 前提条件 7 | 8 | * 每类的真值边界框个数 9 | * `TP/FP`列表 10 | 11 | ## Precision/Recall 12 | 13 | 小于置信度阈值下的边界框将不参与计算(过滤掉了)。之前已对按置信度排序的边界框进行了`TP/FP`的判断,所以可以计算出指定置信度阈值下的`TP/FP`个数 14 | 15 | 比如置信度阈值为`0.5`,刚好等同于列表中第`9`个边界框的置信度,那么之后的边界框将被过滤,仅需统计前`10`个边界框对应的`TP/FP`个数。示例如下: 16 | 17 | ``` 18 | tp = np.sum(TP[:10]) 19 | fp = np.sum(FP[:10]) 20 | ``` 21 | 22 | 然后就可以计算对应阈值下的`Precision/Recall`了 23 | 24 | ``` 25 | Precision = tp / (tp + fp) 26 | Recall = tp / num_ground_truth 27 | ``` -------------------------------------------------------------------------------- /docs/map/代码解析-如何计算TP和FP.md: -------------------------------------------------------------------------------- 1 | 2 | # [代码解析]如何计算TP和FP 3 | 4 | 相关文件:`py/metrics/map/voc_map.py` 5 | 6 | ## 前提条件 7 | 8 | * 获取所有的预测边界框信息(`{"confidence": "0.999", "file_id": "cucumber_61", "bbox": [16, 42, 225, 163]}`) 9 | * 按置信度从大到小排序:`value.sort(key=lambda x: float(x['confidence']), reverse=True)` 10 | 11 | ## TP/FP 12 | 13 | 下面计算每个预测边界框对应的是`TP`还是`FP` 14 | 15 | * 首先创建列表`tp`和`fp`,其长度等同于边界框个数,默认为`0` 16 | * 遍历每一个边界框(*在之前已按置信度从大到小排序*) 17 | * 计算该预测边界框与对应文件中的标注文件框的`IoU` 18 | * 判断其最大`IoU`是否超过`IoU`阈值(*默认为`0.5`*) 19 | * 若超过 20 | * 判断对应的真值边界框是否已被使用(在它之前是否存在符合`IoU>=Thresh_IoU`的情况) 21 | * 若未被使用,则设置为`TP, tp[idx]=1` 22 | * 若已被使用,则设置为`FP, fp[idx]=1` 23 | * 若未超过,则设置为`FP, fp[idx]=1` -------------------------------------------------------------------------------- /docs/params.md: -------------------------------------------------------------------------------- 1 | 2 | # 如何计算模型大小 3 | 4 | ## 定义 5 | 6 | 通过计算模型参数数目,有助于衡量模型所需内存。利用参数数目计算模型大小 7 | 8 | $$ 9 | Size = \frac {Num \times 4.0}{1024\times 1024} 10 | $$ 11 | 12 | * 模型大小的单位是`MB` 13 | * 通常使用`32`位浮点数作为数据类型 14 | 15 | ## 实现 16 | 17 | * 实现文件:`metrics/model.py` 18 | * 测试文件:`test_params_flops.py` -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- 1 | # 站点名称 2 | site_name: 'Evaluation-Metrics' 3 | # 仓库链接 4 | repo_url: https://github.com/zjZSTU/Evaluation-Metrics.git 5 | # 作者 6 | site_author: 'zhujian' 7 | # 版权信息 8 | copyright: '2020, zhujian' 9 | # 源文件目录 10 | docs_dir: 'docs' 11 | # 生成静态文件目录 12 | site_dir: 'site' 13 | # 额外信息 14 | extra: 15 | # 版本号 16 | version: 0.1.0 17 | # 主题 18 | theme: 19 | # name: 'readthedocs' 20 | # name: 'mkdocs' 21 | name: 'material' 22 | # markdown扩展 23 | markdown_extensions: 24 | - toc: 25 | permalink: true 26 | - pymdownx.arithmatex 27 | 28 | extra_javascript: 29 | - 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML' 30 | # 导航 31 | nav: 32 | - Home: index.md 33 | - 如何计算模型大小: params.md 34 | - 如何衡量模型计算能力: flops.md 35 | - 如何衡量模型/算法计算时间: fps.md 36 | - 准确度和错误率: acc-err.md 37 | - mAP: 38 | - 引言: './map/index.md' 39 | - '[代码解析]如何计算TP和FP': './map/代码解析-如何计算TP和FP.md' 40 | - '[代码解析]如何计算Precision和Recall': './map/代码解析-如何计算Precision和Recall.md' -------------------------------------------------------------------------------- /py/.gitignore: -------------------------------------------------------------------------------- 1 | voc2coco/outputs 2 | 3 | data/ 4 | 5 | __pycache__/ 6 | 7 | .idea/ 8 | 9 | .temp_files/ 10 | 11 | output/ 12 | 13 | .tmp_files/ 14 | -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_1.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.004 0 0 80 90 2 | cucumber 0.006 3 0 97 71 3 | mushroom 0.003 19 0 140 74 4 | eggplant 0.004 69 0 163 79 5 | eggplant 0.005 78 0 219 86 6 | mushroom 0.004 128 0 227 72 7 | cucumber 0.004 147 0 227 60 8 | cucumber 0.005 0 0 60 96 9 | mushroom 0.004 0 0 112 103 10 | eggplant 0.004 23 0 137 122 11 | mushroom 0.005 61 0 160 105 12 | mushroom 0.006 98 0 196 100 13 | cucumber 0.003 122 2 227 91 14 | eggplant 0.004 150 2 227 92 15 | eggplant 0.004 0 32 74 129 16 | cucumber 0.003 0 15 107 140 17 | eggplant 0.004 24 29 135 138 18 | eggplant 0.007 29 32 217 155 19 | eggplant 0.042 69 32 197 159 20 | mushroom 0.005 112 37 227 120 21 | eggplant 0.003 160 27 227 135 22 | cucumber 0.005 0 55 54 175 23 | eggplant 0.007 26 24 84 227 24 | eggplant 0.010 23 45 116 166 25 | cucumber 0.986 18 36 214 204 26 | cucumber 0.047 58 51 227 191 27 | mushroom 0.007 145 57 196 195 28 | eggplant 0.003 154 76 227 159 29 | eggplant 0.004 0 58 71 220 30 | eggplant 0.004 0 96 107 200 31 | mushroom 0.002 0 53 203 212 32 | cucumber 0.001 30 79 186 182 33 | mushroom 0.013 89 72 176 195 34 | cucumber 0.003 116 87 227 208 35 | eggplant 0.005 140 81 227 212 36 | cucumber 0.006 0 121 92 227 37 | cucumber 0.003 0 115 111 227 38 | cucumber 0.003 14 125 149 227 39 | mushroom 0.005 42 128 186 221 40 | cucumber 0.005 103 116 187 227 41 | cucumber 0.004 135 102 224 227 42 | cucumber 0.004 149 112 227 227 43 | cucumber 0.005 0 137 68 227 44 | mushroom 0.004 0 147 100 227 45 | cucumber 0.003 22 155 133 227 46 | cucumber 0.004 65 152 168 227 47 | eggplant 0.003 90 142 196 227 48 | eggplant 0.003 115 168 227 227 49 | cucumber 0.005 160 148 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_10.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.005 0 0 78 85 2 | cucumber 0.008 0 0 98 64 3 | mushroom 0.004 24 0 137 72 4 | eggplant 0.005 67 0 164 78 5 | eggplant 0.006 78 0 216 80 6 | cucumber 0.005 127 0 227 67 7 | mushroom 0.004 139 0 227 84 8 | cucumber 0.005 0 0 80 107 9 | mushroom 0.005 0 0 112 107 10 | eggplant 0.006 26 0 131 120 11 | mushroom 0.006 58 0 166 103 12 | mushroom 0.006 90 0 201 109 13 | eggplant 0.005 121 4 227 92 14 | mushroom 0.005 156 0 227 106 15 | eggplant 0.006 0 36 71 125 16 | cucumber 0.004 0 16 105 149 17 | eggplant 0.005 23 24 130 143 18 | eggplant 0.016 32 39 211 148 19 | eggplant 0.015 99 18 195 142 20 | mushroom 0.006 115 39 227 125 21 | eggplant 0.005 163 21 227 138 22 | cucumber 0.006 0 64 56 169 23 | eggplant 0.009 20 49 95 189 24 | eggplant 0.004 26 42 119 169 25 | cucumber 0.992 23 68 213 158 26 | cucumber 0.011 72 7 206 186 27 | mushroom 0.008 146 66 198 187 28 | eggplant 0.004 156 44 227 186 29 | eggplant 0.006 0 86 65 202 30 | eggplant 0.004 0 91 101 207 31 | eggplant 0.004 0 53 203 212 32 | cucumber 0.002 39 73 203 195 33 | mushroom 0.018 92 67 174 200 34 | cucumber 0.004 126 91 219 199 35 | eggplant 0.006 139 90 227 203 36 | cucumber 0.006 0 126 91 227 37 | cucumber 0.004 0 115 110 227 38 | eggplant 0.004 13 121 147 227 39 | mushroom 0.006 44 127 188 222 40 | mushroom 0.007 100 117 188 225 41 | mushroom 0.005 136 128 218 227 42 | cucumber 0.005 150 112 227 227 43 | cucumber 0.005 0 135 66 227 44 | mushroom 0.005 0 152 100 227 45 | eggplant 0.004 21 155 138 227 46 | mushroom 0.005 61 150 171 227 47 | eggplant 0.005 82 139 210 227 48 | eggplant 0.004 119 161 227 227 49 | cucumber 0.005 157 153 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_11.txt: -------------------------------------------------------------------------------- 1 | cucumber 0.003 0 0 80 88 2 | cucumber 0.005 3 0 97 70 3 | mushroom 0.002 23 0 135 75 4 | eggplant 0.003 70 0 162 78 5 | eggplant 0.004 83 0 215 86 6 | cucumber 0.003 128 0 226 71 7 | cucumber 0.003 153 0 227 65 8 | cucumber 0.004 0 0 63 96 9 | mushroom 0.003 0 0 105 101 10 | eggplant 0.003 10 0 153 113 11 | mushroom 0.003 62 0 158 110 12 | mushroom 0.005 100 0 195 106 13 | cucumber 0.003 125 4 225 92 14 | eggplant 0.003 145 1 227 93 15 | eggplant 0.003 0 24 71 133 16 | cucumber 0.002 0 16 109 140 17 | eggplant 0.003 24 29 133 137 18 | eggplant 0.003 26 29 218 157 19 | eggplant 0.042 71 33 194 158 20 | mushroom 0.004 113 36 227 121 21 | eggplant 0.003 162 30 227 131 22 | cucumber 0.004 0 51 55 178 23 | eggplant 0.006 27 48 90 189 24 | eggplant 0.008 21 46 116 165 25 | cucumber 0.947 15 37 216 211 26 | cucumber 0.156 50 55 227 197 27 | mushroom 0.006 154 45 193 209 28 | eggplant 0.003 151 73 227 160 29 | eggplant 0.003 0 95 72 189 30 | eggplant 0.003 0 97 102 199 31 | mushroom 0.002 0 54 204 211 32 | cucumber 0.007 23 59 191 201 33 | mushroom 0.009 89 70 176 196 34 | cucumber 0.002 116 87 227 209 35 | eggplant 0.003 142 79 227 214 36 | cucumber 0.004 0 123 89 227 37 | cucumber 0.002 0 116 112 227 38 | cucumber 0.002 46 114 116 227 39 | mushroom 0.003 39 128 189 220 40 | cucumber 0.004 103 120 187 225 41 | cucumber 0.003 137 101 219 227 42 | cucumber 0.003 152 111 227 227 43 | cucumber 0.003 0 135 70 227 44 | mushroom 0.003 0 149 102 227 45 | cucumber 0.003 34 159 129 227 46 | mushroom 0.003 62 153 171 227 47 | eggplant 0.003 88 140 195 227 48 | eggplant 0.002 116 165 227 227 49 | cucumber 0.004 161 148 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_12.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.004 0 0 83 89 2 | cucumber 0.006 8 0 93 69 3 | cucumber 0.003 20 0 141 72 4 | eggplant 0.005 67 0 166 79 5 | eggplant 0.006 76 0 222 85 6 | mushroom 0.004 127 0 227 65 7 | cucumber 0.004 141 0 227 81 8 | cucumber 0.005 0 0 56 94 9 | mushroom 0.004 0 0 113 107 10 | eggplant 0.005 23 0 137 122 11 | mushroom 0.006 59 0 163 104 12 | mushroom 0.006 92 0 200 106 13 | eggplant 0.004 122 1 227 92 14 | mushroom 0.004 148 8 227 87 15 | eggplant 0.004 0 36 72 128 16 | cucumber 0.003 0 12 99 149 17 | eggplant 0.004 25 26 129 143 18 | eggplant 0.008 23 39 192 151 19 | eggplant 0.025 67 26 199 164 20 | mushroom 0.005 115 40 227 122 21 | eggplant 0.004 159 26 227 134 22 | cucumber 0.006 0 58 54 171 23 | eggplant 0.008 27 23 83 227 24 | eggplant 0.009 25 44 112 171 25 | cucumber 0.988 25 68 217 151 26 | cucumber 0.011 63 4 215 189 27 | mushroom 0.007 153 46 197 207 28 | cucumber 0.003 152 74 227 162 29 | eggplant 0.004 0 89 68 199 30 | eggplant 0.004 0 93 106 204 31 | mushroom 0.002 0 52 204 212 32 | cucumber 0.001 39 74 196 189 33 | mushroom 0.011 91 72 173 193 34 | cucumber 0.003 118 84 227 210 35 | eggplant 0.004 160 81 227 206 36 | cucumber 0.005 0 125 90 227 37 | cucumber 0.003 0 117 111 227 38 | eggplant 0.003 14 124 148 227 39 | mushroom 0.006 41 129 186 219 40 | cucumber 0.005 100 117 187 225 41 | cucumber 0.004 136 127 217 227 42 | cucumber 0.005 148 112 227 227 43 | cucumber 0.005 0 133 69 227 44 | mushroom 0.004 0 150 97 227 45 | eggplant 0.004 24 156 133 227 46 | cucumber 0.004 64 155 168 227 47 | eggplant 0.003 88 143 200 227 48 | eggplant 0.003 113 170 227 227 49 | cucumber 0.004 156 149 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_13.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.002 0 0 85 89 2 | cucumber 0.003 6 0 95 64 3 | mushroom 0.002 23 0 139 70 4 | eggplant 0.001 73 0 160 77 5 | eggplant 0.002 71 0 225 83 6 | mushroom 0.002 125 0 227 62 7 | eggplant 0.001 138 0 227 90 8 | cucumber 0.002 0 0 80 102 9 | mushroom 0.002 0 0 119 108 10 | eggplant 0.003 26 0 134 120 11 | mushroom 0.002 62 4 163 96 12 | mushroom 0.002 98 0 196 106 13 | eggplant 0.002 115 5 227 89 14 | mushroom 0.002 150 16 227 80 15 | eggplant 0.002 0 40 71 121 16 | cucumber 0.001 0 15 101 151 17 | eggplant 0.002 21 25 130 143 18 | eggplant 0.017 30 41 217 148 19 | eggplant 0.006 96 14 197 143 20 | mushroom 0.002 125 15 226 136 21 | eggplant 0.002 167 16 227 142 22 | cucumber 0.002 0 68 51 167 23 | eggplant 0.004 26 49 94 192 24 | eggplant 0.002 30 40 110 167 25 | cucumber 0.992 17 58 219 148 26 | cucumber 0.003 62 4 215 190 27 | mushroom 0.003 153 72 187 183 28 | cucumber 0.002 163 47 227 183 29 | eggplant 0.002 0 84 60 204 30 | eggplant 0.001 0 92 109 206 31 | eggplant 0.001 0 51 207 211 32 | mushroom 0.000 46 58 202 205 33 | mushroom 0.007 95 60 168 203 34 | cucumber 0.001 121 81 227 210 35 | eggplant 0.002 164 71 227 215 36 | cucumber 0.002 0 125 98 227 37 | cucumber 0.001 1 110 103 227 38 | eggplant 0.001 2 118 155 227 39 | mushroom 0.002 46 128 186 219 40 | mushroom 0.003 101 119 188 223 41 | cucumber 0.002 142 131 215 227 42 | mushroom 0.002 143 109 227 227 43 | cucumber 0.002 0 131 60 227 44 | mushroom 0.002 0 144 97 227 45 | eggplant 0.001 17 158 139 227 46 | mushroom 0.002 69 148 165 227 47 | mushroom 0.002 82 138 210 227 48 | eggplant 0.001 117 164 227 227 49 | cucumber 0.002 151 151 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_14.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.003 0 0 83 84 2 | cucumber 0.004 0 0 103 67 3 | cucumber 0.003 16 0 146 66 4 | eggplant 0.003 61 0 171 74 5 | eggplant 0.006 75 0 222 77 6 | cucumber 0.004 125 0 227 61 7 | cucumber 0.003 140 0 227 80 8 | cucumber 0.004 0 0 80 111 9 | mushroom 0.003 0 0 114 109 10 | eggplant 0.004 28 0 132 123 11 | mushroom 0.004 63 0 161 110 12 | cucumber 0.004 87 0 205 107 13 | eggplant 0.004 125 2 227 93 14 | mushroom 0.004 144 6 227 90 15 | eggplant 0.004 0 30 68 131 16 | cucumber 0.003 0 15 101 146 17 | eggplant 0.004 23 22 128 149 18 | eggplant 0.003 14 40 193 149 19 | eggplant 0.013 99 17 195 142 20 | mushroom 0.003 117 41 227 122 21 | eggplant 0.005 163 21 227 136 22 | cucumber 0.004 0 57 54 173 23 | eggplant 0.009 28 42 90 196 24 | eggplant 0.003 23 40 114 174 25 | cucumber 0.978 30 84 210 145 26 | cucumber 0.005 66 9 214 185 27 | mushroom 0.008 154 49 197 202 28 | eggplant 0.002 148 73 227 160 29 | eggplant 0.004 0 88 68 199 30 | eggplant 0.004 0 95 100 202 31 | eggplant 0.004 0 55 205 208 32 | cucumber 0.026 48 80 201 197 33 | mushroom 0.011 91 75 174 190 34 | mushroom 0.002 125 94 221 197 35 | eggplant 0.003 162 84 227 204 36 | cucumber 0.004 0 132 88 227 37 | cucumber 0.003 0 112 108 227 38 | eggplant 0.003 48 119 118 227 39 | mushroom 0.005 42 131 187 220 40 | mushroom 0.004 89 123 194 218 41 | cucumber 0.004 134 129 220 227 42 | cucumber 0.004 147 110 227 227 43 | cucumber 0.004 0 138 71 227 44 | mushroom 0.004 0 152 95 227 45 | eggplant 0.003 24 159 138 227 46 | mushroom 0.003 59 153 175 227 47 | mushroom 0.003 92 136 201 227 48 | eggplant 0.003 125 142 227 227 49 | cucumber 0.003 152 152 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_15.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.003 0 0 77 71 2 | cucumber 0.004 0 0 107 73 3 | mushroom 0.003 34 0 134 67 4 | eggplant 0.003 71 0 164 63 5 | mushroom 0.003 80 0 209 79 6 | cucumber 0.003 119 0 227 91 7 | cucumber 0.003 158 0 227 68 8 | cucumber 0.003 0 0 60 110 9 | cucumber 0.003 0 0 105 103 10 | mushroom 0.003 18 0 140 107 11 | eggplant 0.003 55 0 178 107 12 | cucumber 0.003 73 11 219 88 13 | eggplant 0.004 132 0 219 100 14 | mushroom 0.004 170 0 227 103 15 | mushroom 0.005 0 15 63 147 16 | eggplant 0.003 0 17 86 137 17 | eggplant 0.004 27 16 124 146 18 | mushroom 0.002 51 51 179 130 19 | eggplant 0.013 110 21 191 144 20 | cucumber 0.004 127 48 222 118 21 | eggplant 0.003 157 40 227 125 22 | cucumber 0.003 0 55 54 174 23 | eggplant 0.016 33 36 85 194 24 | mushroom 0.003 21 39 125 169 25 | cucumber 0.021 35 69 180 185 26 | cucumber 0.007 71 9 202 185 27 | mushroom 0.010 157 46 194 201 28 | eggplant 0.003 149 53 227 177 29 | eggplant 0.004 0 95 71 189 30 | eggplant 0.004 0 105 92 184 31 | eggplant 0.040 0 71 200 195 32 | cucumber 0.966 34 88 219 227 33 | mushroom 0.022 85 70 181 199 34 | mushroom 0.002 130 95 215 202 35 | eggplant 0.003 169 85 227 211 36 | eggplant 0.003 0 114 77 227 37 | mushroom 0.004 0 125 116 224 38 | eggplant 0.003 44 113 123 227 39 | mushroom 0.005 57 128 185 227 40 | mushroom 0.003 76 132 211 213 41 | eggplant 0.004 128 143 220 212 42 | cucumber 0.003 162 137 227 223 43 | cucumber 0.004 0 137 70 227 44 | mushroom 0.003 1 149 102 227 45 | cucumber 0.003 20 159 144 227 46 | mushroom 0.003 51 151 182 227 47 | eggplant 0.004 78 156 215 227 48 | eggplant 0.004 113 158 227 227 49 | cucumber 0.003 158 153 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_16.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.004 0 0 77 87 2 | cucumber 0.007 2 0 97 68 3 | mushroom 0.004 26 0 136 77 4 | eggplant 0.005 71 0 160 76 5 | eggplant 0.006 82 0 212 81 6 | mushroom 0.005 126 0 227 71 7 | cucumber 0.005 150 0 227 64 8 | cucumber 0.006 0 0 63 99 9 | mushroom 0.006 0 0 106 104 10 | eggplant 0.006 11 0 150 108 11 | mushroom 0.005 59 0 163 104 12 | mushroom 0.008 99 0 195 107 13 | eggplant 0.005 125 4 227 93 14 | eggplant 0.005 146 3 227 94 15 | eggplant 0.005 0 29 72 130 16 | cucumber 0.004 0 9 96 152 17 | eggplant 0.005 23 31 134 135 18 | eggplant 0.013 32 36 189 153 19 | eggplant 0.038 70 34 197 155 20 | mushroom 0.006 113 38 227 121 21 | mushroom 0.004 164 30 227 133 22 | cucumber 0.006 0 57 58 173 23 | eggplant 0.010 22 50 92 186 24 | eggplant 0.011 23 52 118 160 25 | cucumber 0.953 10 48 210 200 26 | cucumber 0.097 62 58 223 189 27 | mushroom 0.010 142 55 198 197 28 | eggplant 0.004 145 66 227 165 29 | eggplant 0.005 0 90 69 195 30 | eggplant 0.005 0 97 100 200 31 | mushroom 0.004 0 55 201 212 32 | cucumber 0.007 16 53 204 207 33 | mushroom 0.017 90 71 177 198 34 | cucumber 0.004 117 86 227 210 35 | eggplant 0.006 141 85 227 207 36 | mushroom 0.006 0 120 91 227 37 | cucumber 0.004 0 115 110 227 38 | cucumber 0.004 19 122 145 227 39 | mushroom 0.005 43 117 186 227 40 | cucumber 0.006 104 120 187 227 41 | cucumber 0.005 135 107 221 227 42 | cucumber 0.006 163 128 227 227 43 | cucumber 0.005 0 136 72 227 44 | mushroom 0.005 0 149 107 227 45 | cucumber 0.004 31 158 132 227 46 | mushroom 0.005 61 152 171 227 47 | eggplant 0.005 87 139 199 227 48 | eggplant 0.003 117 162 227 227 49 | cucumber 0.006 158 152 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_17.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.002 0 0 78 83 2 | cucumber 0.004 0 0 104 68 3 | mushroom 0.002 20 0 141 78 4 | eggplant 0.003 76 0 158 72 5 | eggplant 0.003 85 0 207 79 6 | cucumber 0.003 124 0 227 70 7 | cucumber 0.002 152 0 227 65 8 | cucumber 0.003 0 0 82 107 9 | mushroom 0.002 0 0 110 109 10 | eggplant 0.003 30 0 126 122 11 | mushroom 0.003 55 0 165 106 12 | cucumber 0.004 90 0 200 105 13 | eggplant 0.002 118 7 227 90 14 | mushroom 0.003 145 3 227 94 15 | eggplant 0.004 0 28 67 130 16 | cucumber 0.002 0 15 95 147 17 | eggplant 0.003 26 20 131 146 18 | eggplant 0.003 33 47 211 141 19 | eggplant 0.009 104 18 191 144 20 | mushroom 0.003 115 44 227 119 21 | eggplant 0.003 164 25 227 135 22 | cucumber 0.003 0 64 52 170 23 | eggplant 0.007 27 43 90 193 24 | eggplant 0.002 25 39 118 171 25 | cucumber 0.987 16 79 202 169 26 | cucumber 0.007 72 7 206 187 27 | mushroom 0.005 154 48 197 205 28 | eggplant 0.002 155 44 227 186 29 | eggplant 0.003 0 91 68 194 30 | eggplant 0.002 5 91 91 205 31 | eggplant 0.006 0 56 204 208 32 | cucumber 0.038 29 71 209 198 33 | mushroom 0.010 91 71 173 195 34 | cucumber 0.002 125 97 220 196 35 | eggplant 0.002 164 75 227 215 36 | mushroom 0.003 0 127 91 227 37 | cucumber 0.002 0 122 116 227 38 | eggplant 0.002 43 114 122 227 39 | mushroom 0.003 50 132 186 221 40 | mushroom 0.003 96 123 191 218 41 | mushroom 0.003 137 136 216 226 42 | cucumber 0.003 154 109 227 227 43 | cucumber 0.003 0 131 74 227 44 | mushroom 0.003 0 149 99 227 45 | cucumber 0.003 20 155 140 227 46 | mushroom 0.003 60 152 176 227 47 | eggplant 0.003 89 138 201 227 48 | eggplant 0.002 119 161 227 227 49 | cucumber 0.003 151 150 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_18.txt: -------------------------------------------------------------------------------- 1 | cucumber 0.004 0 0 84 75 2 | cucumber 0.005 0 0 106 69 3 | mushroom 0.004 30 0 137 72 4 | eggplant 0.004 68 0 166 67 5 | eggplant 0.004 89 0 206 85 6 | cucumber 0.004 121 0 227 66 7 | cucumber 0.005 160 0 227 70 8 | cucumber 0.005 0 0 63 106 9 | mushroom 0.004 0 0 106 107 10 | mushroom 0.004 26 0 132 121 11 | eggplant 0.004 59 0 162 116 12 | cucumber 0.004 74 0 215 107 13 | cucumber 0.004 131 0 226 107 14 | mushroom 0.004 138 0 227 107 15 | mushroom 0.005 0 13 65 148 16 | eggplant 0.003 0 9 104 151 17 | eggplant 0.005 28 20 127 142 18 | eggplant 0.001 36 39 203 143 19 | eggplant 0.026 68 30 198 159 20 | cucumber 0.005 118 45 227 114 21 | eggplant 0.005 162 28 227 138 22 | cucumber 0.004 0 50 60 176 23 | eggplant 0.016 30 43 87 191 24 | eggplant 0.005 18 33 118 179 25 | cucumber 0.064 55 84 176 169 26 | cucumber 0.034 72 9 204 185 27 | mushroom 0.009 152 43 196 205 28 | eggplant 0.004 137 58 227 169 29 | eggplant 0.004 0 98 77 186 30 | eggplant 0.005 10 93 89 202 31 | eggplant 0.013 0 72 199 195 32 | cucumber 0.900 31 109 189 174 33 | mushroom 0.017 81 77 184 191 34 | mushroom 0.002 127 98 223 198 35 | mushroom 0.003 173 84 227 206 36 | eggplant 0.004 0 113 81 227 37 | mushroom 0.005 0 125 112 227 38 | eggplant 0.004 47 114 118 227 39 | mushroom 0.005 56 128 183 227 40 | cucumber 0.004 83 127 202 216 41 | cucumber 0.005 125 134 227 222 42 | cucumber 0.004 156 108 227 227 43 | cucumber 0.005 0 142 70 227 44 | mushroom 0.004 0 151 98 227 45 | cucumber 0.003 41 155 122 227 46 | mushroom 0.004 51 149 183 227 47 | eggplant 0.005 76 160 220 227 48 | eggplant 0.004 117 148 227 227 49 | cucumber 0.006 151 143 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_19.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.003 0 0 56 78 2 | eggplant 0.005 10 0 93 68 3 | cucumber 0.003 22 0 139 69 4 | eggplant 0.003 66 0 166 78 5 | eggplant 0.004 71 0 227 82 6 | mushroom 0.003 125 0 227 61 7 | mushroom 0.003 138 0 227 85 8 | cucumber 0.004 0 0 78 106 9 | mushroom 0.003 0 0 119 107 10 | eggplant 0.004 25 0 134 121 11 | mushroom 0.004 61 2 164 98 12 | mushroom 0.004 94 0 198 107 13 | eggplant 0.003 118 2 227 89 14 | mushroom 0.003 149 17 227 79 15 | eggplant 0.004 0 42 74 121 16 | cucumber 0.003 0 16 101 146 17 | eggplant 0.003 22 28 127 145 18 | eggplant 0.016 21 41 195 149 19 | eggplant 0.014 63 23 201 167 20 | mushroom 0.003 112 42 227 123 21 | eggplant 0.003 164 21 227 137 22 | cucumber 0.004 0 66 52 167 23 | eggplant 0.006 25 22 85 227 24 | eggplant 0.004 30 44 107 170 25 | cucumber 0.992 26 77 215 127 26 | cucumber 0.005 62 5 216 189 27 | mushroom 0.006 146 62 196 191 28 | cucumber 0.003 153 76 227 159 29 | eggplant 0.004 0 85 64 203 30 | eggplant 0.003 0 95 107 202 31 | mushroom 0.001 0 55 205 208 32 | mushroom 0.000 54 67 193 197 33 | mushroom 0.010 94 68 170 196 34 | cucumber 0.002 118 83 227 208 35 | eggplant 0.003 158 80 227 207 36 | cucumber 0.004 0 129 95 227 37 | cucumber 0.002 1 107 102 227 38 | eggplant 0.002 12 119 149 227 39 | mushroom 0.005 41 129 188 218 40 | mushroom 0.004 100 116 187 225 41 | cucumber 0.003 138 129 217 227 42 | cucumber 0.004 145 111 227 227 43 | cucumber 0.004 0 131 65 227 44 | mushroom 0.003 0 149 98 227 45 | eggplant 0.003 22 155 135 227 46 | eggplant 0.003 66 150 167 227 47 | mushroom 0.003 89 140 204 227 48 | eggplant 0.002 137 147 223 227 49 | cucumber 0.003 144 153 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_2.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.004 0 0 83 86 2 | cucumber 0.007 0 0 98 63 3 | mushroom 0.004 22 0 140 74 4 | eggplant 0.005 71 0 160 78 5 | eggplant 0.005 80 0 215 83 6 | cucumber 0.005 126 0 227 66 7 | cucumber 0.003 146 0 227 67 8 | cucumber 0.004 0 0 81 107 9 | mushroom 0.004 0 0 114 107 10 | eggplant 0.005 30 0 128 120 11 | mushroom 0.005 54 0 169 104 12 | cucumber 0.005 93 0 199 110 13 | eggplant 0.004 121 4 227 92 14 | mushroom 0.004 148 12 227 87 15 | eggplant 0.005 0 36 68 124 16 | cucumber 0.004 0 18 102 147 17 | eggplant 0.004 23 26 130 142 18 | eggplant 0.019 29 41 215 145 19 | eggplant 0.013 99 19 194 142 20 | mushroom 0.004 114 39 227 124 21 | eggplant 0.005 164 22 227 137 22 | cucumber 0.005 0 63 55 169 23 | eggplant 0.008 23 46 93 191 24 | eggplant 0.004 27 42 115 169 25 | cucumber 0.989 24 77 212 148 26 | cucumber 0.012 74 10 204 184 27 | mushroom 0.008 146 65 196 188 28 | eggplant 0.004 158 50 227 181 29 | eggplant 0.006 0 90 67 199 30 | eggplant 0.004 1 91 95 206 31 | eggplant 0.004 0 55 203 209 32 | cucumber 0.004 17 74 203 185 33 | mushroom 0.013 95 67 171 199 34 | cucumber 0.003 126 97 221 195 35 | eggplant 0.004 142 84 227 209 36 | cucumber 0.005 0 128 89 227 37 | cucumber 0.003 0 118 109 227 38 | eggplant 0.004 14 123 146 227 39 | mushroom 0.005 46 127 188 224 40 | mushroom 0.005 100 118 188 223 41 | cucumber 0.005 138 128 215 227 42 | cucumber 0.004 149 111 227 227 43 | cucumber 0.005 0 133 67 227 44 | mushroom 0.004 0 151 101 227 45 | eggplant 0.004 30 154 130 227 46 | mushroom 0.004 60 149 173 227 47 | eggplant 0.004 83 139 207 227 48 | eggplant 0.003 128 139 227 227 49 | cucumber 0.004 154 154 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_20.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.003 0 0 83 86 2 | cucumber 0.004 3 0 98 66 3 | mushroom 0.002 20 0 142 73 4 | eggplant 0.003 67 0 166 75 5 | eggplant 0.004 77 0 219 78 6 | cucumber 0.003 127 0 227 68 7 | cucumber 0.003 138 0 227 85 8 | cucumber 0.003 0 0 55 91 9 | mushroom 0.002 0 0 113 105 10 | eggplant 0.003 27 0 129 120 11 | mushroom 0.003 62 0 159 108 12 | mushroom 0.004 91 0 201 111 13 | eggplant 0.003 125 5 227 91 14 | mushroom 0.003 146 11 227 86 15 | eggplant 0.004 0 34 68 127 16 | cucumber 0.002 0 14 98 149 17 | eggplant 0.003 22 22 129 147 18 | eggplant 0.004 33 35 213 151 19 | eggplant 0.010 102 18 192 143 20 | mushroom 0.003 119 40 227 123 21 | eggplant 0.003 162 22 227 137 22 | cucumber 0.004 0 62 54 170 23 | eggplant 0.006 26 45 92 192 24 | eggplant 0.003 25 45 114 166 25 | cucumber 0.991 22 65 210 157 26 | cucumber 0.007 66 2 213 191 27 | mushroom 0.005 145 62 195 192 28 | eggplant 0.003 154 43 227 188 29 | eggplant 0.003 0 89 65 197 30 | eggplant 0.003 0 91 99 207 31 | eggplant 0.002 0 53 205 211 32 | cucumber 0.007 34 77 209 193 33 | mushroom 0.009 91 70 173 195 34 | mushroom 0.002 127 93 218 198 35 | eggplant 0.003 161 77 227 212 36 | mushroom 0.003 0 125 91 227 37 | cucumber 0.003 0 115 109 227 38 | eggplant 0.002 17 121 145 227 39 | mushroom 0.004 45 130 186 220 40 | mushroom 0.003 96 121 191 221 41 | mushroom 0.003 136 131 216 227 42 | cucumber 0.003 145 109 227 227 43 | cucumber 0.003 0 133 66 227 44 | mushroom 0.003 0 152 95 227 45 | eggplant 0.002 34 156 125 227 46 | mushroom 0.003 58 151 175 227 47 | eggplant 0.003 85 136 203 227 48 | eggplant 0.002 116 164 227 227 49 | cucumber 0.003 156 149 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_21.txt: -------------------------------------------------------------------------------- 1 | cucumber 0.003 0 0 78 85 2 | cucumber 0.005 0 0 107 69 3 | mushroom 0.003 17 0 143 78 4 | eggplant 0.004 74 0 157 71 5 | mushroom 0.004 89 0 204 80 6 | cucumber 0.003 121 0 227 70 7 | cucumber 0.003 154 0 227 66 8 | cucumber 0.003 0 0 82 106 9 | mushroom 0.003 0 0 100 112 10 | eggplant 0.003 32 0 126 122 11 | mushroom 0.004 54 0 166 109 12 | cucumber 0.004 91 0 199 108 13 | eggplant 0.003 121 7 227 92 14 | mushroom 0.004 142 2 227 97 15 | eggplant 0.005 0 23 67 135 16 | eggplant 0.003 0 14 94 145 17 | eggplant 0.004 24 21 135 143 18 | cucumber 0.003 33 48 207 139 19 | eggplant 0.013 108 17 188 145 20 | mushroom 0.004 116 46 227 117 21 | eggplant 0.003 159 30 227 134 22 | cucumber 0.003 0 63 55 171 23 | eggplant 0.009 27 44 91 191 24 | eggplant 0.002 25 42 122 169 25 | cucumber 0.921 15 89 204 164 26 | cucumber 0.021 76 11 199 183 27 | mushroom 0.006 155 49 195 202 28 | eggplant 0.003 152 43 227 186 29 | eggplant 0.004 0 97 72 189 30 | eggplant 0.003 8 93 88 202 31 | eggplant 0.007 0 59 202 206 32 | cucumber 0.176 25 78 211 193 33 | mushroom 0.015 89 76 176 193 34 | mushroom 0.002 129 94 216 201 35 | eggplant 0.003 165 77 227 214 36 | cucumber 0.003 0 127 87 227 37 | cucumber 0.003 0 123 119 227 38 | eggplant 0.003 44 115 120 227 39 | mushroom 0.004 48 134 188 219 40 | cucumber 0.004 96 126 190 215 41 | mushroom 0.004 133 135 218 225 42 | cucumber 0.003 156 110 227 227 43 | cucumber 0.004 0 132 74 227 44 | mushroom 0.003 0 151 100 227 45 | cucumber 0.003 24 155 139 227 46 | mushroom 0.003 57 152 178 227 47 | eggplant 0.003 92 137 197 227 48 | eggplant 0.002 121 157 227 227 49 | cucumber 0.004 154 149 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_22.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.004 0 0 63 91 2 | eggplant 0.005 0 0 99 70 3 | mushroom 0.004 32 0 128 73 4 | eggplant 0.004 72 0 157 81 5 | eggplant 0.003 73 0 208 82 6 | cucumber 0.004 132 0 223 62 7 | mushroom 0.003 135 0 227 73 8 | cucumber 0.004 0 0 69 102 9 | mushroom 0.004 0 0 107 101 10 | eggplant 0.004 9 0 144 96 11 | eggplant 0.002 68 0 160 105 12 | cucumber 0.004 97 0 202 112 13 | eggplant 0.003 131 5 227 98 14 | mushroom 0.003 159 0 227 107 15 | eggplant 0.003 0 29 64 124 16 | cucumber 0.003 0 24 101 138 17 | eggplant 0.003 27 25 132 139 18 | cucumber 0.825 31 22 206 169 19 | eggplant 0.025 57 37 207 154 20 | mushroom 0.003 130 11 227 141 21 | cucumber 0.003 148 22 227 138 22 | cucumber 0.004 0 67 56 166 23 | eggplant 0.006 26 42 88 190 24 | mushroom 0.075 25 43 121 166 25 | cucumber 0.057 19 29 202 211 26 | mushroom 0.139 77 36 227 185 27 | mushroom 0.014 167 60 186 193 28 | eggplant 0.003 152 57 227 175 29 | eggplant 0.006 0 94 70 192 30 | eggplant 0.003 4 109 87 184 31 | mushroom 0.015 0 64 203 199 32 | mushroom 0.004 14 46 195 216 33 | mushroom 0.048 90 55 176 213 34 | cucumber 0.003 122 87 227 205 35 | eggplant 0.006 149 86 227 203 36 | cucumber 0.004 0 112 86 227 37 | eggplant 0.005 0 120 114 227 38 | cucumber 0.004 41 118 121 227 39 | mushroom 0.003 42 120 191 227 40 | cucumber 0.004 91 115 202 227 41 | mushroom 0.003 118 112 227 227 42 | cucumber 0.004 160 131 227 227 43 | mushroom 0.005 0 144 69 227 44 | mushroom 0.004 0 143 121 227 45 | cucumber 0.003 22 163 146 227 46 | eggplant 0.004 55 141 181 227 47 | eggplant 0.004 67 168 220 227 48 | eggplant 0.003 118 156 227 227 49 | cucumber 0.004 151 156 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_23.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.004 0 0 82 88 2 | eggplant 0.006 4 0 96 65 3 | cucumber 0.003 20 0 142 72 4 | eggplant 0.003 70 0 162 78 5 | eggplant 0.005 74 0 222 82 6 | mushroom 0.003 126 0 227 65 7 | mushroom 0.003 144 0 227 61 8 | cucumber 0.004 0 0 51 91 9 | mushroom 0.003 0 0 114 108 10 | eggplant 0.005 27 0 133 122 11 | mushroom 0.005 59 0 163 100 12 | mushroom 0.004 94 0 198 108 13 | eggplant 0.003 119 3 227 92 14 | mushroom 0.004 149 14 227 81 15 | eggplant 0.004 0 37 73 124 16 | cucumber 0.003 0 16 101 148 17 | eggplant 0.004 23 25 131 144 18 | eggplant 0.010 31 39 215 148 19 | eggplant 0.012 96 16 197 143 20 | mushroom 0.004 114 39 227 126 21 | eggplant 0.004 161 20 227 139 22 | cucumber 0.004 0 63 54 170 23 | eggplant 0.006 23 48 94 190 24 | eggplant 0.003 26 43 114 168 25 | cucumber 0.995 22 72 215 145 26 | cucumber 0.007 66 5 212 188 27 | mushroom 0.006 148 66 195 187 28 | cucumber 0.003 159 45 227 185 29 | eggplant 0.004 0 89 65 199 30 | eggplant 0.003 0 92 101 205 31 | eggplant 0.002 0 53 205 211 32 | cucumber 0.001 45 68 199 196 33 | mushroom 0.011 96 68 169 197 34 | cucumber 0.002 126 95 220 195 35 | eggplant 0.004 164 78 227 209 36 | cucumber 0.004 0 127 94 227 37 | cucumber 0.003 0 113 107 227 38 | eggplant 0.003 11 121 148 227 39 | mushroom 0.005 43 127 188 222 40 | mushroom 0.005 100 116 187 224 41 | cucumber 0.004 136 128 219 227 42 | cucumber 0.004 149 110 227 227 43 | cucumber 0.004 0 133 65 227 44 | mushroom 0.004 0 149 98 227 45 | eggplant 0.003 23 156 137 227 46 | mushroom 0.003 63 151 170 227 47 | eggplant 0.003 87 138 205 227 48 | eggplant 0.002 113 163 227 227 49 | cucumber 0.003 147 152 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_24.txt: -------------------------------------------------------------------------------- 1 | cucumber 0.003 0 0 82 69 2 | cucumber 0.003 0 0 117 76 3 | mushroom 0.003 38 0 129 70 4 | eggplant 0.003 69 0 163 65 5 | eggplant 0.002 84 0 206 88 6 | cucumber 0.002 123 0 227 68 7 | cucumber 0.003 162 0 227 72 8 | cucumber 0.003 0 0 63 106 9 | mushroom 0.003 0 0 105 108 10 | mushroom 0.003 18 0 143 112 11 | eggplant 0.003 60 0 159 120 12 | cucumber 0.003 74 0 216 103 13 | cucumber 0.003 134 0 223 106 14 | mushroom 0.003 135 0 227 110 15 | mushroom 0.004 0 12 60 148 16 | eggplant 0.002 0 7 106 153 17 | eggplant 0.003 27 19 127 141 18 | cucumber 0.001 36 42 198 140 19 | eggplant 0.013 105 19 194 152 20 | cucumber 0.004 117 49 227 110 21 | eggplant 0.003 150 38 227 132 22 | cucumber 0.003 0 52 59 174 23 | eggplant 0.017 35 38 83 193 24 | mushroom 0.003 18 34 120 175 25 | cucumber 0.005 32 75 186 182 26 | cucumber 0.028 73 5 198 188 27 | mushroom 0.008 156 45 190 202 28 | eggplant 0.003 133 38 227 181 29 | eggplant 0.003 0 100 75 183 30 | eggplant 0.003 13 91 87 201 31 | mushroom 0.020 0 74 201 191 32 | cucumber 0.975 8 133 197 174 33 | mushroom 0.018 80 78 184 191 34 | eggplant 0.001 120 88 227 208 35 | eggplant 0.002 176 80 227 214 36 | eggplant 0.003 0 120 85 227 37 | mushroom 0.004 0 127 112 227 38 | eggplant 0.003 49 110 116 227 39 | mushroom 0.004 61 132 179 226 40 | cucumber 0.003 79 131 205 213 41 | cucumber 0.004 124 136 226 219 42 | cucumber 0.003 168 131 227 226 43 | cucumber 0.004 0 144 74 227 44 | mushroom 0.003 7 153 93 227 45 | cucumber 0.002 39 153 126 227 46 | mushroom 0.003 49 148 186 227 47 | eggplant 0.004 79 164 216 227 48 | eggplant 0.003 107 161 227 227 49 | cucumber 0.004 153 146 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_25.txt: -------------------------------------------------------------------------------- 1 | cucumber 0.003 0 0 73 77 2 | cucumber 0.003 0 0 114 67 3 | mushroom 0.002 34 0 136 69 4 | eggplant 0.004 82 0 152 65 5 | cucumber 0.003 86 0 200 86 6 | cucumber 0.002 119 0 227 69 7 | cucumber 0.003 160 0 227 77 8 | cucumber 0.003 0 0 63 109 9 | mushroom 0.002 0 0 103 103 10 | mushroom 0.003 16 0 141 109 11 | mushroom 0.002 58 0 165 117 12 | cucumber 0.003 94 0 199 112 13 | eggplant 0.003 131 0 225 103 14 | mushroom 0.003 170 0 227 102 15 | mushroom 0.004 0 8 65 149 16 | eggplant 0.003 1 14 84 136 17 | eggplant 0.003 31 24 129 138 18 | mushroom 0.003 30 54 202 130 19 | eggplant 0.014 112 21 188 146 20 | cucumber 0.004 118 49 227 116 21 | eggplant 0.002 152 42 227 125 22 | cucumber 0.002 0 52 55 176 23 | eggplant 0.011 35 38 83 190 24 | mushroom 0.002 28 42 125 164 25 | cucumber 0.011 9 73 206 185 26 | cucumber 0.058 65 62 219 191 27 | mushroom 0.010 155 47 191 201 28 | eggplant 0.002 154 44 227 183 29 | eggplant 0.003 0 103 74 181 30 | eggplant 0.003 0 113 91 175 31 | eggplant 0.021 0 68 200 200 32 | cucumber 0.983 12 83 218 186 33 | mushroom 0.019 82 76 183 196 34 | mushroom 0.001 117 86 227 216 35 | mushroom 0.003 172 81 227 216 36 | eggplant 0.003 0 118 77 227 37 | mushroom 0.003 0 121 120 227 38 | eggplant 0.003 47 106 115 227 39 | mushroom 0.004 53 132 185 223 40 | cucumber 0.002 88 133 199 209 41 | eggplant 0.004 127 138 220 218 42 | cucumber 0.003 169 138 227 222 43 | cucumber 0.004 0 134 73 227 44 | mushroom 0.002 0 149 101 227 45 | cucumber 0.002 23 153 139 227 46 | mushroom 0.002 53 150 180 227 47 | eggplant 0.004 83 165 210 227 48 | eggplant 0.002 109 140 227 227 49 | cucumber 0.004 169 151 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_26.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.004 0 0 81 87 2 | cucumber 0.006 2 0 99 67 3 | cucumber 0.003 21 0 141 65 4 | eggplant 0.004 65 0 168 76 5 | eggplant 0.006 73 0 224 79 6 | cucumber 0.004 124 0 227 61 7 | cucumber 0.003 136 0 227 84 8 | cucumber 0.005 0 0 80 109 9 | mushroom 0.004 0 0 116 109 10 | eggplant 0.005 25 0 134 124 11 | mushroom 0.005 61 0 164 103 12 | mushroom 0.005 90 0 202 107 13 | eggplant 0.004 121 1 227 91 14 | mushroom 0.004 149 13 227 83 15 | eggplant 0.005 0 39 72 123 16 | cucumber 0.003 0 13 107 143 17 | eggplant 0.004 22 25 128 146 18 | eggplant 0.012 16 40 195 149 19 | eggplant 0.014 95 15 198 143 20 | mushroom 0.004 115 40 227 125 21 | eggplant 0.005 163 21 227 136 22 | cucumber 0.005 0 63 51 169 23 | eggplant 0.008 25 22 84 227 24 | eggplant 0.004 28 43 110 171 25 | cucumber 0.992 28 77 215 134 26 | cucumber 0.005 68 7 212 187 27 | mushroom 0.007 156 51 199 202 28 | mushroom 0.003 159 46 227 186 29 | eggplant 0.005 0 84 66 205 30 | eggplant 0.004 0 94 102 204 31 | mushroom 0.002 0 55 205 209 32 | cucumber 0.001 51 70 196 199 33 | mushroom 0.012 95 70 170 195 34 | mushroom 0.003 124 92 221 197 35 | eggplant 0.004 159 82 227 207 36 | cucumber 0.005 0 129 93 227 37 | cucumber 0.003 0 110 103 227 38 | eggplant 0.004 45 119 121 227 39 | mushroom 0.006 41 128 189 221 40 | mushroom 0.005 97 116 189 226 41 | cucumber 0.005 135 129 220 227 42 | cucumber 0.005 147 112 227 227 43 | cucumber 0.005 0 133 67 227 44 | mushroom 0.004 0 150 97 227 45 | eggplant 0.004 22 159 137 227 46 | mushroom 0.004 66 152 169 227 47 | eggplant 0.004 85 139 208 227 48 | eggplant 0.003 133 144 226 227 49 | cucumber 0.004 148 154 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_27.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.009 0 0 73 82 2 | cucumber 0.010 0 0 100 64 3 | mushroom 0.007 27 0 131 74 4 | eggplant 0.010 68 0 159 77 5 | eggplant 0.009 81 0 212 79 6 | cucumber 0.010 126 0 227 65 7 | mushroom 0.008 144 0 227 69 8 | cucumber 0.009 0 0 80 102 9 | mushroom 0.008 0 0 109 106 10 | eggplant 0.011 34 0 123 118 11 | mushroom 0.009 57 0 167 99 12 | mushroom 0.010 86 0 208 105 13 | eggplant 0.007 124 0 227 98 14 | eggplant 0.009 148 3 227 94 15 | eggplant 0.012 0 25 70 132 16 | cucumber 0.007 0 16 109 146 17 | eggplant 0.009 21 29 137 137 18 | cucumber 0.059 33 40 202 144 19 | eggplant 0.033 103 19 194 139 20 | mushroom 0.009 125 15 227 141 21 | mushroom 0.009 162 22 227 139 22 | cucumber 0.010 0 62 58 170 23 | eggplant 0.013 23 27 87 220 24 | mushroom 0.004 32 41 127 165 25 | cucumber 0.910 28 49 210 182 26 | cucumber 0.076 96 76 220 164 27 | mushroom 0.019 156 58 197 192 28 | eggplant 0.007 156 48 227 182 29 | eggplant 0.010 0 84 67 206 30 | eggplant 0.008 0 93 97 207 31 | mushroom 0.008 0 60 197 208 32 | cucumber 0.012 26 65 203 196 33 | mushroom 0.033 90 69 179 203 34 | cucumber 0.006 118 89 227 207 35 | eggplant 0.010 142 89 227 205 36 | cucumber 0.009 0 127 84 227 37 | cucumber 0.008 0 116 111 227 38 | eggplant 0.008 15 120 146 227 39 | mushroom 0.009 44 123 191 225 40 | mushroom 0.010 100 118 192 225 41 | cucumber 0.007 135 129 221 227 42 | cucumber 0.010 159 128 227 227 43 | cucumber 0.011 0 143 68 227 44 | mushroom 0.011 0 153 105 227 45 | cucumber 0.008 28 154 135 227 46 | mushroom 0.007 59 142 173 227 47 | eggplant 0.009 89 137 201 227 48 | mushroom 0.007 124 158 227 227 49 | cucumber 0.009 163 153 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_28.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.003 0 0 75 82 2 | cucumber 0.004 0 0 106 73 3 | mushroom 0.003 22 0 139 78 4 | eggplant 0.004 78 0 155 71 5 | mushroom 0.003 82 0 209 76 6 | cucumber 0.004 122 0 227 68 7 | cucumber 0.003 145 0 227 84 8 | cucumber 0.003 0 0 81 105 9 | cucumber 0.003 0 0 112 109 10 | eggplant 0.004 31 0 128 117 11 | mushroom 0.004 56 1 164 102 12 | cucumber 0.005 93 0 200 103 13 | eggplant 0.003 121 4 227 93 14 | mushroom 0.003 147 0 227 99 15 | eggplant 0.005 0 27 69 131 16 | eggplant 0.003 0 18 97 146 17 | eggplant 0.004 27 23 131 143 18 | eggplant 0.004 37 51 203 136 19 | eggplant 0.011 104 18 193 143 20 | mushroom 0.004 118 41 227 124 21 | eggplant 0.003 169 23 227 139 22 | cucumber 0.004 0 64 53 171 23 | eggplant 0.009 27 43 90 192 24 | eggplant 0.002 29 41 122 167 25 | cucumber 0.976 16 60 198 186 26 | cucumber 0.008 72 10 205 183 27 | mushroom 0.007 155 51 197 200 28 | eggplant 0.004 156 43 227 187 29 | eggplant 0.004 0 60 72 218 30 | eggplant 0.003 2 91 93 203 31 | eggplant 0.012 0 58 202 207 32 | cucumber 0.029 35 64 209 209 33 | mushroom 0.013 91 67 174 201 34 | cucumber 0.002 124 97 221 195 35 | eggplant 0.003 165 75 227 214 36 | cucumber 0.003 0 126 91 227 37 | cucumber 0.003 0 121 113 227 38 | eggplant 0.003 42 113 123 227 39 | mushroom 0.004 52 131 185 222 40 | mushroom 0.004 93 122 194 222 41 | mushroom 0.004 135 137 217 223 42 | cucumber 0.004 161 134 227 227 43 | cucumber 0.004 0 132 77 227 44 | mushroom 0.003 0 143 100 227 45 | cucumber 0.003 16 155 143 227 46 | mushroom 0.003 63 151 171 227 47 | eggplant 0.003 87 133 203 227 48 | eggplant 0.003 122 157 227 227 49 | cucumber 0.004 157 155 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_29.txt: -------------------------------------------------------------------------------- 1 | cucumber 0.003 0 0 80 73 2 | cucumber 0.004 0 0 116 72 3 | mushroom 0.003 38 0 132 73 4 | eggplant 0.004 75 0 155 66 5 | cucumber 0.003 85 0 204 88 6 | cucumber 0.002 120 0 227 70 7 | cucumber 0.004 162 0 227 80 8 | cucumber 0.003 0 0 65 107 9 | mushroom 0.003 0 0 106 104 10 | mushroom 0.003 19 0 142 115 11 | mushroom 0.003 62 0 160 119 12 | cucumber 0.004 79 0 211 105 13 | eggplant 0.003 132 0 223 108 14 | mushroom 0.003 172 0 227 100 15 | mushroom 0.005 0 6 62 153 16 | eggplant 0.002 3 10 83 140 17 | eggplant 0.003 28 24 130 137 18 | cucumber 0.001 30 45 204 136 19 | eggplant 0.015 108 20 191 148 20 | cucumber 0.004 117 49 227 114 21 | eggplant 0.003 151 39 227 131 22 | cucumber 0.003 0 50 59 176 23 | eggplant 0.012 35 37 83 192 24 | mushroom 0.002 22 38 124 168 25 | cucumber 0.005 24 67 202 190 26 | cucumber 0.084 58 61 223 194 27 | mushroom 0.010 156 47 190 201 28 | eggplant 0.002 135 43 227 176 29 | eggplant 0.003 0 102 74 181 30 | eggplant 0.003 0 112 92 176 31 | eggplant 0.017 0 69 201 198 32 | cucumber 0.981 17 98 214 179 33 | mushroom 0.018 79 77 186 195 34 | eggplant 0.001 118 87 227 213 35 | mushroom 0.003 174 81 227 213 36 | eggplant 0.003 0 121 84 227 37 | mushroom 0.003 0 122 113 227 38 | eggplant 0.003 49 110 114 227 39 | mushroom 0.005 57 131 182 225 40 | cucumber 0.003 84 133 201 210 41 | cucumber 0.004 126 134 222 221 42 | cucumber 0.004 170 133 227 225 43 | cucumber 0.004 0 139 73 227 44 | mushroom 0.003 5 150 97 227 45 | cucumber 0.002 35 152 127 227 46 | mushroom 0.003 51 148 183 227 47 | eggplant 0.005 80 166 214 227 48 | eggplant 0.003 117 157 227 227 49 | cucumber 0.004 154 145 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_3.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.002 0 0 82 91 2 | cucumber 0.003 8 0 93 69 3 | mushroom 0.002 25 0 137 75 4 | eggplant 0.002 69 0 164 81 5 | eggplant 0.002 71 0 225 85 6 | mushroom 0.002 128 0 227 68 7 | eggplant 0.002 138 0 227 87 8 | cucumber 0.002 0 0 51 94 9 | mushroom 0.002 0 0 116 105 10 | eggplant 0.002 21 0 139 123 11 | mushroom 0.003 63 0 161 103 12 | mushroom 0.003 97 0 197 105 13 | eggplant 0.002 119 1 227 88 14 | eggplant 0.002 152 11 227 83 15 | eggplant 0.002 0 43 72 118 16 | cucumber 0.001 0 14 108 141 17 | eggplant 0.002 20 27 133 143 18 | eggplant 0.011 28 42 193 150 19 | eggplant 0.012 62 21 201 170 20 | mushroom 0.002 112 39 227 121 21 | eggplant 0.002 162 23 227 136 22 | cucumber 0.002 0 62 49 170 23 | eggplant 0.004 32 21 82 227 24 | eggplant 0.005 27 41 110 168 25 | cucumber 0.995 16 37 222 172 26 | cucumber 0.007 60 4 217 190 27 | mushroom 0.004 150 66 190 188 28 | cucumber 0.001 164 47 227 184 29 | eggplant 0.002 0 82 65 205 30 | eggplant 0.002 0 95 109 204 31 | mushroom 0.001 0 49 207 214 32 | mushroom 0.000 35 68 201 193 33 | mushroom 0.007 93 64 171 199 34 | cucumber 0.002 122 84 227 208 35 | eggplant 0.003 134 83 227 212 36 | cucumber 0.003 0 122 98 227 37 | cucumber 0.001 0 114 106 227 38 | eggplant 0.001 10 126 151 227 39 | mushroom 0.002 44 127 185 220 40 | cucumber 0.002 107 114 183 227 41 | cucumber 0.002 142 131 213 227 42 | cucumber 0.002 144 111 227 227 43 | cucumber 0.002 0 131 63 227 44 | mushroom 0.002 0 144 99 227 45 | eggplant 0.002 20 157 135 227 46 | cucumber 0.002 69 154 164 227 47 | eggplant 0.002 86 144 203 227 48 | eggplant 0.001 115 167 227 227 49 | cucumber 0.002 158 149 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_30.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.002 0 0 79 90 2 | cucumber 0.004 1 0 96 64 3 | mushroom 0.002 24 0 139 79 4 | eggplant 0.002 71 0 159 80 5 | eggplant 0.002 70 0 222 84 6 | mushroom 0.003 127 0 227 69 7 | eggplant 0.002 143 0 227 61 8 | cucumber 0.002 0 0 73 97 9 | mushroom 0.002 0 0 117 102 10 | eggplant 0.003 24 0 137 116 11 | mushroom 0.002 60 2 164 100 12 | cucumber 0.003 96 0 198 107 13 | eggplant 0.002 119 0 227 95 14 | eggplant 0.002 147 14 227 87 15 | eggplant 0.003 0 36 75 121 16 | cucumber 0.002 0 15 112 141 17 | eggplant 0.002 16 30 138 138 18 | eggplant 0.021 35 39 194 152 19 | eggplant 0.016 63 27 200 164 20 | mushroom 0.002 130 14 224 136 21 | eggplant 0.001 154 42 227 122 22 | cucumber 0.002 0 62 50 171 23 | eggplant 0.003 27 48 91 191 24 | eggplant 0.004 25 46 114 162 25 | cucumber 0.988 9 27 213 198 26 | cucumber 0.031 78 47 227 181 27 | mushroom 0.005 152 63 188 190 28 | cucumber 0.002 157 77 227 155 29 | eggplant 0.003 0 85 68 199 30 | cucumber 0.002 0 100 108 199 31 | mushroom 0.002 0 51 205 211 32 | mushroom 0.000 17 53 198 206 33 | mushroom 0.010 91 61 173 204 34 | cucumber 0.002 118 85 227 208 35 | eggplant 0.003 138 84 227 212 36 | cucumber 0.003 0 127 98 227 37 | cucumber 0.002 0 119 106 227 38 | cucumber 0.001 44 115 122 227 39 | mushroom 0.002 43 127 189 221 40 | cucumber 0.003 106 115 184 227 41 | cucumber 0.002 134 103 227 227 42 | cucumber 0.003 143 113 227 227 43 | cucumber 0.002 0 130 66 227 44 | mushroom 0.003 0 143 106 227 45 | eggplant 0.002 15 154 139 227 46 | eggplant 0.002 66 153 168 227 47 | eggplant 0.002 86 144 203 227 48 | eggplant 0.001 135 138 227 227 49 | cucumber 0.002 158 149 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_31.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.002 0 0 78 88 2 | cucumber 0.004 5 0 94 65 3 | mushroom 0.002 22 0 134 76 4 | eggplant 0.002 69 0 161 78 5 | eggplant 0.003 77 0 220 83 6 | mushroom 0.003 129 0 227 69 7 | eggplant 0.002 148 0 227 62 8 | cucumber 0.003 0 0 55 97 9 | mushroom 0.002 0 0 113 101 10 | eggplant 0.003 5 0 156 109 11 | mushroom 0.002 60 0 159 110 12 | mushroom 0.005 97 0 200 99 13 | cucumber 0.002 121 0 227 93 14 | eggplant 0.002 149 1 227 93 15 | eggplant 0.003 0 27 71 130 16 | cucumber 0.002 0 10 112 145 17 | eggplant 0.003 17 31 141 135 18 | eggplant 0.005 27 33 217 155 19 | eggplant 0.046 71 31 193 160 20 | mushroom 0.003 111 33 227 123 21 | mushroom 0.002 164 30 227 130 22 | cucumber 0.003 0 55 54 178 23 | eggplant 0.004 30 24 83 227 24 | eggplant 0.004 26 44 115 162 25 | cucumber 0.985 27 15 213 215 26 | cucumber 0.218 57 50 227 196 27 | mushroom 0.005 159 44 191 210 28 | eggplant 0.002 155 80 227 154 29 | eggplant 0.003 0 86 74 198 30 | eggplant 0.002 0 100 106 197 31 | mushroom 0.001 0 54 205 210 32 | cucumber 0.000 22 81 190 181 33 | mushroom 0.008 94 65 170 201 34 | cucumber 0.002 112 90 227 207 35 | eggplant 0.003 139 79 227 215 36 | cucumber 0.003 0 120 94 227 37 | cucumber 0.002 0 113 107 227 38 | cucumber 0.002 45 113 118 227 39 | eggplant 0.003 39 126 191 220 40 | cucumber 0.003 106 115 186 227 41 | mushroom 0.002 132 133 218 226 42 | cucumber 0.003 147 116 227 227 43 | cucumber 0.003 0 134 66 227 44 | mushroom 0.003 0 148 105 227 45 | eggplant 0.002 38 159 125 227 46 | cucumber 0.002 68 146 166 227 47 | eggplant 0.002 84 137 201 227 48 | mushroom 0.001 142 142 219 227 49 | cucumber 0.003 161 147 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_32.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.004 0 0 76 83 2 | cucumber 0.004 0 0 102 71 3 | mushroom 0.003 14 0 145 68 4 | eggplant 0.003 67 0 156 68 5 | eggplant 0.004 84 0 210 72 6 | cucumber 0.004 131 0 225 67 7 | mushroom 0.004 146 0 227 89 8 | cucumber 0.004 0 0 74 104 9 | mushroom 0.003 0 0 120 101 10 | eggplant 0.003 29 0 129 122 11 | mushroom 0.004 56 0 163 115 12 | cucumber 0.005 97 0 197 96 13 | eggplant 0.003 120 0 227 99 14 | mushroom 0.004 148 0 227 98 15 | eggplant 0.005 0 28 72 131 16 | cucumber 0.003 0 12 110 143 17 | eggplant 0.004 21 18 133 147 18 | eggplant 0.002 44 41 196 142 19 | eggplant 0.025 67 31 197 159 20 | mushroom 0.004 115 38 227 123 21 | eggplant 0.004 168 24 227 135 22 | cucumber 0.004 0 65 50 167 23 | eggplant 0.007 26 45 93 192 24 | eggplant 0.003 19 43 122 165 25 | cucumber 0.978 78 32 143 195 26 | cucumber 0.017 64 10 213 184 27 | mushroom 0.007 155 45 197 205 28 | eggplant 0.003 150 73 227 157 29 | eggplant 0.005 0 81 71 202 30 | eggplant 0.003 0 106 89 188 31 | mushroom 0.004 0 59 202 206 32 | cucumber 0.017 60 66 171 205 33 | mushroom 0.011 87 68 177 199 34 | cucumber 0.003 120 89 227 202 35 | eggplant 0.003 163 80 227 203 36 | cucumber 0.004 0 125 93 227 37 | cucumber 0.003 0 117 109 227 38 | eggplant 0.003 45 113 121 227 39 | mushroom 0.005 45 134 186 217 40 | mushroom 0.003 86 118 202 224 41 | mushroom 0.004 131 137 221 222 42 | cucumber 0.004 165 140 227 222 43 | cucumber 0.005 0 137 78 227 44 | mushroom 0.004 0 147 99 227 45 | cucumber 0.003 38 158 120 227 46 | mushroom 0.003 59 147 177 227 47 | mushroom 0.003 86 137 202 227 48 | eggplant 0.003 132 144 224 227 49 | cucumber 0.004 149 144 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_33.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.002 0 0 77 81 2 | cucumber 0.002 0 0 107 68 3 | mushroom 0.002 33 0 133 67 4 | eggplant 0.002 68 0 165 73 5 | eggplant 0.002 78 0 206 85 6 | cucumber 0.002 127 0 227 54 7 | cucumber 0.002 135 0 227 84 8 | cucumber 0.002 0 0 82 111 9 | cucumber 0.002 0 0 105 114 10 | cucumber 0.002 36 0 122 117 11 | mushroom 0.002 52 0 178 109 12 | mushroom 0.002 94 0 203 105 13 | eggplant 0.002 122 0 227 98 14 | mushroom 0.002 162 0 227 107 15 | eggplant 0.003 0 32 68 128 16 | cucumber 0.002 0 30 104 135 17 | eggplant 0.002 23 22 127 148 18 | eggplant 0.007 25 50 188 139 19 | eggplant 0.007 103 19 198 139 20 | mushroom 0.002 123 16 227 136 21 | mushroom 0.002 176 16 227 143 22 | cucumber 0.003 0 65 51 169 23 | eggplant 0.006 32 37 87 199 24 | mushroom 0.001 22 39 123 169 25 | cucumber 0.969 27 32 210 184 26 | cucumber 0.001 61 7 216 186 27 | mushroom 0.005 160 50 198 203 28 | mushroom 0.002 157 49 227 184 29 | eggplant 0.003 0 74 61 212 30 | eggplant 0.002 0 99 92 194 31 | mushroom 0.007 0 58 206 204 32 | cucumber 0.006 50 64 207 227 33 | mushroom 0.011 95 57 168 207 34 | cucumber 0.001 118 94 224 194 35 | eggplant 0.002 165 80 227 208 36 | cucumber 0.002 0 129 93 225 37 | cucumber 0.002 0 115 103 227 38 | eggplant 0.002 48 118 119 227 39 | mushroom 0.002 45 137 191 216 40 | mushroom 0.002 79 128 205 214 41 | mushroom 0.002 134 135 219 221 42 | cucumber 0.002 146 115 227 227 43 | cucumber 0.002 0 130 73 227 44 | mushroom 0.002 0 148 105 227 45 | eggplant 0.002 16 164 146 227 46 | mushroom 0.002 67 149 169 227 47 | mushroom 0.002 72 157 217 227 48 | eggplant 0.002 122 141 227 227 49 | cucumber 0.002 153 151 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_34.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.003 0 0 78 91 2 | cucumber 0.005 5 0 97 71 3 | mushroom 0.003 21 0 139 69 4 | eggplant 0.004 66 0 168 81 5 | eggplant 0.005 75 0 223 86 6 | mushroom 0.004 128 0 227 69 7 | cucumber 0.003 145 0 227 81 8 | cucumber 0.004 0 0 61 98 9 | mushroom 0.003 0 0 113 105 10 | eggplant 0.004 22 0 140 120 11 | mushroom 0.006 63 0 159 104 12 | mushroom 0.005 97 0 197 102 13 | cucumber 0.003 120 1 227 91 14 | mushroom 0.003 150 6 227 90 15 | eggplant 0.003 0 38 75 125 16 | cucumber 0.003 0 16 109 140 17 | eggplant 0.004 23 25 132 144 18 | eggplant 0.010 31 40 189 150 19 | eggplant 0.031 65 27 200 163 20 | mushroom 0.005 116 40 227 120 21 | eggplant 0.003 161 25 227 135 22 | cucumber 0.005 0 60 53 169 23 | eggplant 0.007 26 23 84 227 24 | eggplant 0.022 22 43 114 172 25 | cucumber 0.971 22 46 213 170 26 | cucumber 0.009 59 5 216 189 27 | mushroom 0.007 144 56 197 196 28 | cucumber 0.003 156 73 227 163 29 | eggplant 0.003 0 81 67 202 30 | eggplant 0.003 0 96 111 201 31 | mushroom 0.003 0 52 204 212 32 | eggplant 0.001 40 70 189 192 33 | mushroom 0.012 87 70 178 195 34 | cucumber 0.003 120 84 227 208 35 | eggplant 0.005 136 85 227 209 36 | cucumber 0.004 0 121 94 227 37 | cucumber 0.003 0 112 114 227 38 | eggplant 0.003 12 125 150 227 39 | mushroom 0.005 44 129 182 220 40 | cucumber 0.004 99 117 190 227 41 | cucumber 0.003 136 106 224 227 42 | cucumber 0.004 147 109 227 227 43 | cucumber 0.004 0 134 69 227 44 | mushroom 0.003 0 148 99 227 45 | cucumber 0.003 19 159 136 227 46 | cucumber 0.004 66 153 168 227 47 | mushroom 0.003 89 144 197 227 48 | eggplant 0.003 113 171 227 227 49 | cucumber 0.004 158 149 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_35.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.003 0 0 60 84 2 | cucumber 0.002 0 0 96 55 3 | mushroom 0.002 31 0 136 74 4 | eggplant 0.003 69 0 161 77 5 | eggplant 0.002 68 0 223 78 6 | cucumber 0.003 132 0 222 61 7 | mushroom 0.002 136 0 227 82 8 | cucumber 0.002 0 0 79 100 9 | mushroom 0.002 0 0 116 108 10 | cucumber 0.002 3 0 152 98 11 | mushroom 0.002 54 5 170 98 12 | cucumber 0.004 94 0 208 112 13 | eggplant 0.002 120 0 227 102 14 | mushroom 0.002 149 9 227 97 15 | eggplant 0.004 0 29 68 127 16 | cucumber 0.002 0 32 96 134 17 | eggplant 0.002 19 25 137 141 18 | mushroom 0.286 88 58 163 127 19 | eggplant 0.012 63 24 199 166 20 | mushroom 0.002 119 37 227 124 21 | mushroom 0.002 154 28 227 130 22 | cucumber 0.003 0 53 77 176 23 | eggplant 0.005 29 45 90 189 24 | mushroom 0.007 35 42 134 158 25 | cucumber 0.484 11 20 206 206 26 | cucumber 0.042 104 48 215 175 27 | mushroom 0.010 165 47 185 206 28 | eggplant 0.002 149 61 227 165 29 | eggplant 0.003 0 76 68 205 30 | eggplant 0.002 0 105 94 184 31 | mushroom 0.015 0 101 150 170 32 | mushroom 0.002 5 49 202 211 33 | mushroom 0.040 91 54 174 216 34 | cucumber 0.002 113 88 227 209 35 | eggplant 0.003 144 90 227 203 36 | mushroom 0.003 0 133 90 227 37 | cucumber 0.002 0 110 109 227 38 | eggplant 0.002 33 109 132 227 39 | mushroom 0.002 47 116 186 227 40 | cucumber 0.002 106 128 191 220 41 | cucumber 0.002 129 113 227 227 42 | cucumber 0.003 149 119 227 227 43 | cucumber 0.003 0 147 58 227 44 | mushroom 0.003 0 145 121 227 45 | cucumber 0.002 17 154 139 227 46 | mushroom 0.003 65 147 169 227 47 | eggplant 0.003 69 173 226 227 48 | mushroom 0.002 131 136 227 227 49 | cucumber 0.003 161 154 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_36.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.003 0 0 85 88 2 | cucumber 0.005 6 0 96 67 3 | cucumber 0.003 19 0 144 66 4 | eggplant 0.003 72 0 150 70 5 | eggplant 0.005 74 0 224 79 6 | cucumber 0.003 125 0 227 61 7 | cucumber 0.003 140 0 227 85 8 | cucumber 0.004 0 0 80 111 9 | mushroom 0.003 0 0 119 107 10 | eggplant 0.005 29 0 130 120 11 | mushroom 0.004 59 0 164 100 12 | mushroom 0.004 92 0 200 105 13 | eggplant 0.004 118 4 227 89 14 | mushroom 0.003 149 14 227 82 15 | eggplant 0.004 0 39 72 123 16 | cucumber 0.003 0 18 100 146 17 | eggplant 0.004 24 24 126 147 18 | eggplant 0.008 14 39 195 151 19 | eggplant 0.012 94 15 200 142 20 | mushroom 0.003 116 44 227 122 21 | eggplant 0.004 164 22 227 137 22 | cucumber 0.004 0 66 54 168 23 | eggplant 0.007 27 47 92 193 24 | eggplant 0.003 26 45 110 169 25 | cucumber 0.990 32 81 202 124 26 | cucumber 0.003 63 4 217 189 27 | mushroom 0.007 145 64 197 189 28 | cucumber 0.003 159 46 227 185 29 | eggplant 0.004 0 85 63 202 30 | eggplant 0.003 0 93 103 204 31 | eggplant 0.003 0 57 205 206 32 | cucumber 0.001 59 66 189 202 33 | mushroom 0.010 92 71 172 193 34 | mushroom 0.002 123 95 222 193 35 | eggplant 0.003 160 79 227 208 36 | cucumber 0.004 0 131 92 227 37 | cucumber 0.003 0 108 103 227 38 | eggplant 0.003 46 118 121 227 39 | mushroom 0.006 44 131 186 219 40 | mushroom 0.004 94 117 191 225 41 | cucumber 0.004 137 133 220 226 42 | cucumber 0.004 148 111 227 227 43 | cucumber 0.004 0 134 67 227 44 | mushroom 0.003 0 151 94 227 45 | eggplant 0.003 22 157 139 227 46 | mushroom 0.003 63 150 171 227 47 | mushroom 0.003 87 139 204 227 48 | eggplant 0.003 131 147 227 227 49 | cucumber 0.003 147 153 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_37.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.003 0 0 78 82 2 | cucumber 0.005 0 0 106 68 3 | mushroom 0.003 17 0 144 69 4 | eggplant 0.004 67 0 165 73 5 | eggplant 0.005 81 0 215 74 6 | cucumber 0.004 126 0 227 63 7 | cucumber 0.003 151 0 227 69 8 | cucumber 0.004 0 0 84 111 9 | mushroom 0.003 0 0 109 108 10 | eggplant 0.004 32 0 128 121 11 | mushroom 0.004 61 0 163 108 12 | cucumber 0.005 87 0 204 107 13 | eggplant 0.004 124 3 227 93 14 | mushroom 0.004 144 4 227 92 15 | eggplant 0.005 0 28 67 133 16 | cucumber 0.003 0 18 99 143 17 | eggplant 0.004 25 21 129 148 18 | eggplant 0.004 37 47 205 140 19 | eggplant 0.014 103 17 192 142 20 | mushroom 0.004 118 45 227 119 21 | eggplant 0.005 161 21 227 139 22 | cucumber 0.004 0 60 55 171 23 | eggplant 0.008 26 42 90 194 24 | eggplant 0.001 24 39 118 173 25 | cucumber 0.968 33 84 211 156 26 | cucumber 0.007 70 11 209 183 27 | mushroom 0.008 154 50 199 201 28 | eggplant 0.003 154 45 227 185 29 | eggplant 0.004 0 89 69 198 30 | eggplant 0.004 1 93 94 204 31 | eggplant 0.005 0 57 204 208 32 | cucumber 0.079 40 81 210 199 33 | mushroom 0.013 93 73 172 194 34 | mushroom 0.002 126 92 218 200 35 | eggplant 0.003 164 81 227 208 36 | cucumber 0.004 0 132 86 225 37 | cucumber 0.003 0 115 112 227 38 | eggplant 0.003 45 117 121 227 39 | mushroom 0.005 45 132 187 220 40 | mushroom 0.005 91 121 193 219 41 | cucumber 0.004 133 130 220 227 42 | cucumber 0.004 151 111 227 227 43 | cucumber 0.004 0 140 70 227 44 | mushroom 0.004 0 152 97 227 45 | cucumber 0.003 22 159 140 227 46 | mushroom 0.003 61 152 174 227 47 | eggplant 0.003 92 135 200 227 48 | eggplant 0.003 120 142 227 227 49 | cucumber 0.004 153 153 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_38.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.003 0 0 81 87 2 | cucumber 0.004 2 0 100 66 3 | mushroom 0.002 22 0 137 76 4 | eggplant 0.003 76 0 153 76 5 | mushroom 0.003 89 0 206 83 6 | cucumber 0.003 123 0 227 72 7 | cucumber 0.003 151 0 227 68 8 | cucumber 0.003 0 0 56 92 9 | mushroom 0.002 0 0 110 106 10 | eggplant 0.003 32 0 126 124 11 | mushroom 0.003 60 0 160 108 12 | cucumber 0.004 90 0 205 103 13 | eggplant 0.002 121 3 227 94 14 | mushroom 0.003 146 0 227 99 15 | eggplant 0.004 0 20 70 137 16 | eggplant 0.002 0 17 92 145 17 | eggplant 0.003 21 26 140 138 18 | eggplant 0.004 26 41 220 147 19 | eggplant 0.027 69 32 195 159 20 | mushroom 0.004 107 41 227 118 21 | mushroom 0.003 160 28 227 137 22 | cucumber 0.003 0 51 57 180 23 | eggplant 0.005 26 47 91 190 24 | eggplant 0.001 28 43 121 163 25 | cucumber 0.968 25 48 214 201 26 | cucumber 0.170 63 63 227 189 27 | mushroom 0.005 156 50 193 203 28 | eggplant 0.002 149 74 227 156 29 | eggplant 0.003 0 54 75 224 30 | eggplant 0.002 1 94 97 202 31 | eggplant 0.001 0 56 204 210 32 | cucumber 0.021 21 61 206 198 33 | mushroom 0.010 91 70 173 198 34 | cucumber 0.002 112 90 227 207 35 | eggplant 0.003 167 81 227 208 36 | cucumber 0.003 0 123 85 227 37 | cucumber 0.002 0 117 113 227 38 | eggplant 0.002 45 112 117 227 39 | mushroom 0.004 41 127 192 220 40 | cucumber 0.003 101 120 187 220 41 | cucumber 0.003 133 131 221 227 42 | cucumber 0.003 168 132 227 227 43 | cucumber 0.003 0 130 77 227 44 | mushroom 0.003 0 147 103 227 45 | cucumber 0.003 34 154 126 227 46 | mushroom 0.002 65 148 169 227 47 | eggplant 0.003 88 135 199 227 48 | eggplant 0.002 122 161 227 227 49 | cucumber 0.003 165 148 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_39.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.003 0 0 79 89 2 | cucumber 0.004 4 0 97 69 3 | mushroom 0.002 20 0 139 71 4 | eggplant 0.003 65 0 167 79 5 | eggplant 0.003 73 0 224 84 6 | mushroom 0.003 133 0 223 68 7 | mushroom 0.003 148 0 227 58 8 | cucumber 0.003 0 0 60 100 9 | mushroom 0.003 0 0 117 102 10 | eggplant 0.003 8 0 154 105 11 | mushroom 0.003 59 0 160 109 12 | mushroom 0.005 98 0 198 99 13 | cucumber 0.002 122 1 227 91 14 | eggplant 0.003 149 5 227 91 15 | eggplant 0.003 0 34 74 128 16 | cucumber 0.002 0 12 111 142 17 | eggplant 0.003 23 28 131 141 18 | eggplant 0.007 35 37 193 153 19 | eggplant 0.037 68 27 197 164 20 | mushroom 0.003 115 39 227 119 21 | eggplant 0.002 162 27 227 131 22 | cucumber 0.004 0 61 54 170 23 | eggplant 0.005 25 22 86 227 24 | eggplant 0.017 19 42 115 169 25 | cucumber 0.981 28 28 202 199 26 | cucumber 0.017 55 6 217 188 27 | mushroom 0.006 146 57 193 196 28 | mushroom 0.002 156 78 227 159 29 | eggplant 0.003 0 81 72 202 30 | eggplant 0.003 0 99 110 199 31 | mushroom 0.002 0 55 204 209 32 | mushroom 0.001 38 69 184 193 33 | mushroom 0.010 91 66 173 198 34 | cucumber 0.002 118 86 227 209 35 | eggplant 0.004 139 81 227 213 36 | cucumber 0.004 0 122 95 227 37 | cucumber 0.002 0 116 109 227 38 | cucumber 0.002 17 124 148 227 39 | mushroom 0.003 41 130 185 219 40 | cucumber 0.003 100 114 191 227 41 | mushroom 0.003 138 99 221 227 42 | cucumber 0.004 145 112 227 227 43 | cucumber 0.003 0 133 67 227 44 | mushroom 0.003 0 150 99 227 45 | cucumber 0.002 35 163 127 227 46 | mushroom 0.003 65 149 168 227 47 | eggplant 0.002 85 142 200 227 48 | eggplant 0.002 114 171 227 227 49 | cucumber 0.003 159 150 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_4.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.006 0 0 63 85 2 | cucumber 0.005 0 0 99 66 3 | mushroom 0.005 30 0 132 76 4 | eggplant 0.006 66 0 163 75 5 | eggplant 0.006 79 0 202 73 6 | cucumber 0.005 137 0 218 57 7 | mushroom 0.006 145 0 227 67 8 | cucumber 0.006 0 0 58 109 9 | mushroom 0.007 0 0 106 99 10 | eggplant 0.005 9 0 144 97 11 | eggplant 0.004 68 0 165 105 12 | mushroom 0.005 92 0 209 107 13 | eggplant 0.006 127 8 227 95 14 | mushroom 0.005 163 0 227 105 15 | eggplant 0.004 0 25 63 130 16 | eggplant 0.004 0 25 113 143 17 | eggplant 0.006 26 27 137 132 18 | cucumber 0.840 25 39 207 147 19 | eggplant 0.024 92 29 205 130 20 | mushroom 0.004 128 9 227 145 21 | cucumber 0.005 150 17 227 142 22 | cucumber 0.006 0 67 78 157 23 | eggplant 0.010 21 39 94 194 24 | mushroom 0.104 29 42 126 165 25 | cucumber 0.007 30 43 194 194 26 | mushroom 0.095 88 41 224 178 27 | mushroom 0.024 168 58 189 192 28 | cucumber 0.006 145 59 227 172 29 | eggplant 0.009 0 89 68 201 30 | eggplant 0.005 0 109 94 180 31 | mushroom 0.027 0 75 200 190 32 | mushroom 0.022 20 49 187 214 33 | mushroom 0.089 93 60 175 211 34 | cucumber 0.004 121 98 227 197 35 | eggplant 0.008 153 81 227 209 36 | eggplant 0.006 0 113 85 227 37 | eggplant 0.006 0 120 116 227 38 | eggplant 0.007 38 118 124 227 39 | mushroom 0.004 48 117 179 227 40 | cucumber 0.006 86 114 206 227 41 | mushroom 0.004 119 112 227 227 42 | cucumber 0.006 151 110 227 227 43 | mushroom 0.009 0 151 72 227 44 | mushroom 0.006 0 148 116 227 45 | cucumber 0.004 21 162 148 227 46 | eggplant 0.005 55 132 182 227 47 | eggplant 0.007 72 165 215 227 48 | eggplant 0.004 123 157 227 227 49 | cucumber 0.006 152 160 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_40.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.003 0 0 84 84 2 | cucumber 0.005 0 0 101 66 3 | mushroom 0.002 19 0 142 70 4 | eggplant 0.003 69 0 163 74 5 | eggplant 0.004 77 0 218 79 6 | cucumber 0.003 125 0 227 66 7 | cucumber 0.002 140 0 227 84 8 | cucumber 0.003 0 0 79 108 9 | mushroom 0.003 0 0 115 108 10 | eggplant 0.004 28 0 129 118 11 | mushroom 0.004 57 0 165 101 12 | cucumber 0.004 91 0 201 108 13 | eggplant 0.003 120 5 227 91 14 | mushroom 0.003 160 0 227 107 15 | eggplant 0.004 0 34 69 126 16 | cucumber 0.002 0 16 103 149 17 | eggplant 0.003 24 23 128 145 18 | eggplant 0.009 31 41 214 146 19 | eggplant 0.009 99 17 195 142 20 | mushroom 0.003 118 43 227 122 21 | eggplant 0.003 163 18 227 142 22 | cucumber 0.004 0 62 56 171 23 | eggplant 0.006 26 45 91 193 24 | eggplant 0.002 25 43 117 167 25 | cucumber 0.993 22 72 210 153 26 | cucumber 0.004 70 5 208 188 27 | mushroom 0.005 146 67 195 187 28 | eggplant 0.003 156 45 227 186 29 | eggplant 0.004 0 88 65 200 30 | eggplant 0.003 0 92 98 205 31 | eggplant 0.004 0 54 205 209 32 | cucumber 0.002 39 67 208 201 33 | mushroom 0.010 94 68 170 197 34 | cucumber 0.002 125 94 221 194 35 | eggplant 0.003 161 74 227 214 36 | cucumber 0.003 0 126 93 227 37 | cucumber 0.002 0 116 110 227 38 | eggplant 0.003 10 122 149 227 39 | mushroom 0.004 47 130 186 221 40 | mushroom 0.004 97 120 189 221 41 | cucumber 0.003 137 133 216 227 42 | cucumber 0.003 149 111 227 227 43 | cucumber 0.003 0 134 67 227 44 | mushroom 0.003 0 149 95 227 45 | eggplant 0.003 19 156 141 227 46 | mushroom 0.003 62 150 172 227 47 | mushroom 0.003 83 137 209 227 48 | eggplant 0.002 117 162 227 227 49 | cucumber 0.003 155 151 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_41.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.004 0 0 87 86 2 | cucumber 0.005 4 0 99 64 3 | cucumber 0.003 19 0 145 67 4 | eggplant 0.004 62 0 170 75 5 | eggplant 0.006 78 0 220 79 6 | cucumber 0.004 125 0 227 63 7 | cucumber 0.004 141 0 227 80 8 | cucumber 0.004 0 0 80 111 9 | mushroom 0.003 0 0 114 110 10 | eggplant 0.005 28 0 130 121 11 | mushroom 0.006 58 0 164 105 12 | mushroom 0.004 89 0 202 108 13 | eggplant 0.004 121 4 227 91 14 | mushroom 0.004 146 11 227 85 15 | eggplant 0.004 0 32 70 130 16 | cucumber 0.003 0 17 107 141 17 | eggplant 0.004 26 26 126 143 18 | eggplant 0.006 14 39 194 150 19 | eggplant 0.015 98 18 194 142 20 | mushroom 0.004 119 42 227 123 21 | eggplant 0.005 159 23 227 137 22 | cucumber 0.005 0 59 55 171 23 | eggplant 0.009 26 45 93 193 24 | eggplant 0.004 24 46 112 169 25 | cucumber 0.982 25 90 211 130 26 | cucumber 0.004 65 5 214 189 27 | mushroom 0.007 153 50 200 202 28 | mushroom 0.003 154 46 227 185 29 | eggplant 0.005 0 93 67 195 30 | eggplant 0.004 0 92 101 205 31 | eggplant 0.003 0 57 204 208 32 | cucumber 0.008 48 76 196 192 33 | mushroom 0.012 90 75 175 190 34 | mushroom 0.003 127 96 219 195 35 | eggplant 0.004 161 83 227 205 36 | cucumber 0.004 0 131 88 227 37 | cucumber 0.003 0 112 105 227 38 | eggplant 0.004 17 121 146 227 39 | mushroom 0.006 45 132 185 218 40 | mushroom 0.005 95 120 191 221 41 | cucumber 0.005 135 130 220 227 42 | cucumber 0.004 148 109 227 227 43 | cucumber 0.004 0 135 69 227 44 | mushroom 0.004 0 151 92 227 45 | eggplant 0.003 24 156 138 227 46 | mushroom 0.004 59 154 174 227 47 | mushroom 0.003 90 141 199 227 48 | eggplant 0.003 129 143 227 227 49 | cucumber 0.004 149 152 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_42.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.002 0 0 72 84 2 | cucumber 0.002 0 0 102 64 3 | mushroom 0.002 30 0 136 70 4 | eggplant 0.002 72 0 160 75 5 | eggplant 0.002 79 0 206 87 6 | cucumber 0.002 125 0 227 58 7 | mushroom 0.001 131 0 227 83 8 | cucumber 0.002 0 0 86 105 9 | cucumber 0.001 0 0 115 112 10 | cucumber 0.002 35 0 122 117 11 | mushroom 0.002 55 0 175 113 12 | mushroom 0.002 91 0 206 105 13 | eggplant 0.002 120 0 227 98 14 | mushroom 0.002 161 0 227 103 15 | eggplant 0.003 0 33 68 124 16 | cucumber 0.001 0 27 107 140 17 | eggplant 0.002 18 25 135 143 18 | eggplant 0.016 31 53 185 136 19 | eggplant 0.007 103 15 197 142 20 | mushroom 0.002 124 43 227 122 21 | mushroom 0.002 175 17 227 141 22 | cucumber 0.002 0 69 51 165 23 | eggplant 0.004 27 20 87 227 24 | mushroom 0.000 29 40 124 165 25 | cucumber 0.984 27 25 219 191 26 | cucumber 0.003 61 8 213 186 27 | mushroom 0.004 162 51 196 204 28 | mushroom 0.001 159 47 227 185 29 | eggplant 0.002 0 73 59 213 30 | eggplant 0.001 0 101 93 193 31 | mushroom 0.002 0 53 207 209 32 | cucumber 0.001 47 59 209 220 33 | mushroom 0.010 94 53 169 210 34 | cucumber 0.001 119 93 222 193 35 | eggplant 0.002 166 77 227 209 36 | cucumber 0.002 0 129 93 224 37 | cucumber 0.001 0 111 104 227 38 | eggplant 0.001 47 116 118 227 39 | cucumber 0.002 44 135 194 216 40 | mushroom 0.002 85 124 201 217 41 | mushroom 0.002 136 132 219 226 42 | mushroom 0.002 147 116 227 227 43 | cucumber 0.002 0 128 74 227 44 | mushroom 0.002 0 150 108 227 45 | eggplant 0.002 12 166 146 227 46 | mushroom 0.001 72 146 165 227 47 | eggplant 0.001 72 161 218 227 48 | eggplant 0.001 131 140 227 227 49 | cucumber 0.002 156 150 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_46.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.002 0 0 83 89 2 | cucumber 0.003 4 0 97 65 3 | cucumber 0.002 18 0 141 64 4 | eggplant 0.002 68 0 166 78 5 | eggplant 0.002 70 0 227 79 6 | cucumber 0.002 125 0 227 58 7 | mushroom 0.002 135 0 227 87 8 | cucumber 0.002 0 0 83 108 9 | mushroom 0.002 0 0 120 109 10 | eggplant 0.003 29 0 130 122 11 | mushroom 0.002 61 1 166 99 12 | mushroom 0.002 93 0 202 106 13 | eggplant 0.002 118 2 227 91 14 | mushroom 0.002 160 0 227 105 15 | eggplant 0.003 0 40 73 120 16 | cucumber 0.002 0 19 101 146 17 | eggplant 0.002 21 25 129 147 18 | eggplant 0.012 14 43 196 148 19 | eggplant 0.007 94 13 199 144 20 | mushroom 0.002 113 43 227 124 21 | eggplant 0.002 168 18 227 139 22 | cucumber 0.002 0 67 50 166 23 | eggplant 0.004 29 20 83 227 24 | eggplant 0.001 29 40 110 170 25 | cucumber 0.995 23 71 221 134 26 | cucumber 0.002 59 4 219 190 27 | mushroom 0.003 160 52 196 203 28 | cucumber 0.002 162 46 227 186 29 | eggplant 0.002 0 80 62 207 30 | eggplant 0.002 0 96 107 203 31 | eggplant 0.001 0 51 207 211 32 | mushroom 0.000 52 63 200 204 33 | mushroom 0.008 95 65 168 198 34 | cucumber 0.001 123 96 221 192 35 | eggplant 0.002 161 78 227 209 36 | cucumber 0.002 0 131 95 227 37 | cucumber 0.001 1 107 102 227 38 | eggplant 0.002 46 119 122 227 39 | mushroom 0.003 40 130 191 218 40 | mushroom 0.003 98 118 188 223 41 | cucumber 0.002 137 130 220 227 42 | cucumber 0.002 146 111 227 227 43 | cucumber 0.002 0 131 64 227 44 | mushroom 0.002 0 148 97 227 45 | eggplant 0.002 19 163 140 227 46 | mushroom 0.002 70 149 166 227 47 | mushroom 0.002 83 136 212 227 48 | eggplant 0.001 133 143 227 227 49 | cucumber 0.002 145 156 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_48.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.003 0 0 77 84 2 | cucumber 0.004 0 0 104 67 3 | mushroom 0.002 19 0 140 78 4 | eggplant 0.003 76 0 156 74 5 | mushroom 0.003 87 0 206 80 6 | cucumber 0.003 122 0 227 68 7 | cucumber 0.003 152 0 227 69 8 | cucumber 0.003 0 0 82 106 9 | mushroom 0.002 0 0 108 108 10 | eggplant 0.003 32 0 124 123 11 | mushroom 0.003 57 0 163 108 12 | cucumber 0.004 89 0 202 106 13 | eggplant 0.002 119 5 227 92 14 | mushroom 0.003 146 0 227 97 15 | eggplant 0.004 0 23 67 134 16 | eggplant 0.002 0 16 94 145 17 | eggplant 0.003 24 20 134 145 18 | eggplant 0.003 32 48 212 139 19 | eggplant 0.011 104 17 192 145 20 | mushroom 0.004 114 46 227 118 21 | eggplant 0.003 161 25 227 137 22 | cucumber 0.003 0 62 53 171 23 | eggplant 0.006 27 43 91 193 24 | eggplant 0.001 24 38 122 171 25 | cucumber 0.971 21 75 205 175 26 | cucumber 0.017 72 9 205 184 27 | mushroom 0.005 155 49 195 203 28 | eggplant 0.003 154 44 227 185 29 | eggplant 0.003 0 58 75 220 30 | eggplant 0.002 6 92 91 204 31 | eggplant 0.004 0 55 203 210 32 | cucumber 0.114 25 76 211 192 33 | mushroom 0.011 92 71 172 196 34 | cucumber 0.002 128 95 217 199 35 | eggplant 0.003 166 77 227 213 36 | mushroom 0.003 0 128 86 227 37 | cucumber 0.002 0 120 118 227 38 | eggplant 0.002 45 112 119 227 39 | mushroom 0.004 47 131 189 222 40 | mushroom 0.003 96 122 191 217 41 | mushroom 0.003 135 133 217 227 42 | cucumber 0.003 156 110 227 227 43 | cucumber 0.003 0 129 73 227 44 | mushroom 0.003 0 148 99 227 45 | cucumber 0.003 21 156 139 227 46 | mushroom 0.002 59 150 176 227 47 | eggplant 0.003 91 135 199 227 48 | eggplant 0.002 121 159 227 227 49 | cucumber 0.003 163 154 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_49.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.003 0 0 84 83 2 | cucumber 0.003 0 0 103 70 3 | mushroom 0.003 16 0 149 71 4 | eggplant 0.003 66 0 167 72 5 | eggplant 0.004 80 0 215 79 6 | cucumber 0.003 128 0 222 84 7 | cucumber 0.003 146 0 227 84 8 | cucumber 0.002 0 0 78 115 9 | mushroom 0.002 0 0 99 114 10 | eggplant 0.003 30 0 126 117 11 | mushroom 0.003 61 0 159 110 12 | cucumber 0.003 93 0 199 108 13 | eggplant 0.003 126 5 227 93 14 | mushroom 0.003 143 8 227 91 15 | eggplant 0.003 0 30 67 132 16 | cucumber 0.002 0 13 96 147 17 | eggplant 0.003 25 17 125 150 18 | eggplant 0.002 38 39 206 146 19 | eggplant 0.009 104 16 191 147 20 | cucumber 0.003 121 43 227 120 21 | eggplant 0.003 164 23 227 139 22 | cucumber 0.004 0 63 56 169 23 | eggplant 0.010 30 43 89 193 24 | eggplant 0.003 22 43 115 170 25 | cucumber 0.960 26 81 191 153 26 | cucumber 0.003 68 1 210 192 27 | mushroom 0.006 146 65 194 189 28 | eggplant 0.003 150 43 227 189 29 | eggplant 0.003 0 89 65 194 30 | eggplant 0.003 1 91 96 204 31 | eggplant 0.007 0 61 204 203 32 | cucumber 0.073 40 84 203 196 33 | mushroom 0.011 89 74 176 191 34 | mushroom 0.002 126 94 219 197 35 | eggplant 0.002 162 77 227 213 36 | mushroom 0.003 0 129 88 227 37 | cucumber 0.003 0 119 110 227 38 | eggplant 0.002 46 116 121 227 39 | mushroom 0.004 52 134 180 219 40 | cucumber 0.003 88 121 198 221 41 | mushroom 0.003 136 135 218 224 42 | cucumber 0.003 147 105 227 227 43 | cucumber 0.003 0 138 76 227 44 | mushroom 0.003 0 151 93 227 45 | eggplant 0.002 36 157 123 227 46 | mushroom 0.003 55 149 179 227 47 | mushroom 0.003 90 138 198 227 48 | eggplant 0.003 120 138 227 227 49 | cucumber 0.003 151 151 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_51.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.002 0 0 73 85 2 | cucumber 0.002 0 0 99 63 3 | mushroom 0.002 26 0 133 83 4 | eggplant 0.002 77 0 154 76 5 | eggplant 0.001 73 0 218 79 6 | cucumber 0.002 123 0 227 69 7 | cucumber 0.001 140 0 227 68 8 | cucumber 0.002 0 0 82 99 9 | mushroom 0.002 0 0 110 106 10 | eggplant 0.002 29 0 128 116 11 | mushroom 0.002 54 2 168 101 12 | mushroom 0.003 95 0 204 106 13 | eggplant 0.001 121 4 227 93 14 | mushroom 0.002 149 5 227 96 15 | eggplant 0.003 0 25 69 129 16 | cucumber 0.002 0 19 100 147 17 | eggplant 0.002 17 29 139 139 18 | eggplant 0.015 30 49 208 138 19 | eggplant 0.008 61 28 201 162 20 | mushroom 0.002 123 12 227 139 21 | mushroom 0.001 157 37 227 127 22 | cucumber 0.002 0 68 49 168 23 | eggplant 0.004 30 43 89 194 24 | mushroom 0.001 33 39 124 163 25 | cucumber 0.967 4 22 214 211 26 | cucumber 0.031 87 56 227 177 27 | mushroom 0.005 159 50 192 205 28 | eggplant 0.002 162 48 227 182 29 | eggplant 0.002 0 82 64 203 30 | cucumber 0.001 0 107 89 187 31 | mushroom 0.003 0 55 206 208 32 | cucumber 0.001 6 49 214 210 33 | mushroom 0.010 95 54 169 212 34 | cucumber 0.002 113 84 227 213 35 | eggplant 0.002 141 87 227 207 36 | mushroom 0.002 0 123 96 227 37 | cucumber 0.001 0 116 108 227 38 | eggplant 0.001 38 111 124 227 39 | mushroom 0.002 46 127 190 222 40 | cucumber 0.002 99 125 192 222 41 | cucumber 0.002 139 135 213 222 42 | cucumber 0.002 158 133 227 227 43 | cucumber 0.002 0 128 77 227 44 | mushroom 0.002 0 141 108 227 45 | eggplant 0.002 18 156 138 227 46 | cucumber 0.002 66 147 167 227 47 | eggplant 0.002 82 132 207 227 48 | eggplant 0.001 134 136 227 227 49 | cucumber 0.003 158 150 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_58.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.004 0 0 79 85 2 | cucumber 0.006 5 0 99 68 3 | mushroom 0.004 20 0 142 70 4 | eggplant 0.004 71 0 152 72 5 | eggplant 0.006 76 0 219 79 6 | cucumber 0.005 127 0 224 81 7 | cucumber 0.005 146 0 227 88 8 | cucumber 0.004 0 0 73 107 9 | mushroom 0.005 0 0 115 101 10 | eggplant 0.005 25 0 130 121 11 | mushroom 0.004 62 0 158 104 12 | mushroom 0.006 94 0 202 105 13 | eggplant 0.004 120 0 227 93 14 | mushroom 0.004 147 7 227 88 15 | eggplant 0.006 0 35 75 128 16 | cucumber 0.004 0 19 109 135 17 | eggplant 0.005 23 24 129 144 18 | eggplant 0.006 38 25 206 156 19 | eggplant 0.019 68 26 197 164 20 | mushroom 0.005 117 43 227 120 21 | mushroom 0.005 165 24 227 138 22 | cucumber 0.006 0 62 58 169 23 | eggplant 0.010 21 50 96 188 24 | eggplant 0.004 28 50 114 159 25 | cucumber 0.974 29 56 191 164 26 | cucumber 0.006 60 3 219 191 27 | mushroom 0.009 142 57 200 196 28 | mushroom 0.004 156 42 227 190 29 | eggplant 0.004 0 83 63 204 30 | eggplant 0.005 0 104 91 191 31 | mushroom 0.004 0 58 203 207 32 | cucumber 0.005 49 71 187 195 33 | mushroom 0.014 91 72 175 194 34 | mushroom 0.003 126 91 221 199 35 | eggplant 0.004 157 79 227 207 36 | mushroom 0.005 0 124 89 227 37 | cucumber 0.004 0 113 104 227 38 | eggplant 0.003 16 124 146 227 39 | mushroom 0.007 44 129 186 221 40 | mushroom 0.005 95 112 194 227 41 | cucumber 0.005 134 133 221 224 42 | cucumber 0.004 161 133 227 227 43 | cucumber 0.004 0 134 82 227 44 | mushroom 0.005 0 152 96 227 45 | eggplant 0.004 32 159 127 227 46 | cucumber 0.005 55 149 174 227 47 | mushroom 0.005 88 139 199 227 48 | eggplant 0.003 135 142 225 227 49 | cucumber 0.005 148 150 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_6.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.002 0 0 82 91 2 | cucumber 0.003 4 0 96 69 3 | mushroom 0.002 22 0 138 75 4 | eggplant 0.002 72 0 161 80 5 | eggplant 0.002 73 0 222 88 6 | mushroom 0.003 129 0 226 71 7 | eggplant 0.002 147 0 227 57 8 | cucumber 0.002 0 0 55 96 9 | mushroom 0.002 0 0 113 104 10 | eggplant 0.002 25 0 135 122 11 | mushroom 0.003 62 0 160 104 12 | mushroom 0.004 99 0 197 101 13 | eggplant 0.002 118 3 227 89 14 | eggplant 0.002 151 9 227 85 15 | eggplant 0.002 0 36 74 123 16 | cucumber 0.001 0 13 98 151 17 | eggplant 0.002 20 30 135 138 18 | eggplant 0.011 26 32 222 156 19 | eggplant 0.018 64 25 200 167 20 | mushroom 0.002 126 13 227 137 21 | eggplant 0.001 160 23 227 139 22 | cucumber 0.002 0 59 53 173 23 | eggplant 0.004 24 50 95 189 24 | eggplant 0.006 26 42 112 166 25 | cucumber 0.991 17 21 220 189 26 | cucumber 0.017 58 43 227 187 27 | mushroom 0.004 150 61 188 193 28 | eggplant 0.001 155 78 227 156 29 | eggplant 0.002 0 53 74 224 30 | eggplant 0.002 0 94 108 204 31 | mushroom 0.001 0 52 206 211 32 | eggplant 0.000 15 46 194 213 33 | mushroom 0.008 90 68 173 197 34 | cucumber 0.002 119 84 227 209 35 | eggplant 0.003 138 78 227 215 36 | cucumber 0.003 0 119 96 227 37 | cucumber 0.001 0 115 106 227 38 | cucumber 0.001 12 127 149 227 39 | mushroom 0.002 46 128 184 219 40 | cucumber 0.003 105 115 187 227 41 | cucumber 0.002 136 103 225 227 42 | cucumber 0.002 143 112 227 227 43 | cucumber 0.002 0 134 66 227 44 | mushroom 0.002 0 144 101 227 45 | eggplant 0.002 17 156 136 227 46 | cucumber 0.002 64 152 168 227 47 | eggplant 0.002 86 142 199 227 48 | eggplant 0.001 113 169 227 227 49 | cucumber 0.002 160 147 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_63.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.002 0 0 85 89 2 | cucumber 0.003 6 0 95 65 3 | mushroom 0.001 24 0 137 71 4 | eggplant 0.001 72 0 161 81 5 | eggplant 0.002 70 0 226 84 6 | mushroom 0.002 127 0 227 60 7 | eggplant 0.002 135 0 227 90 8 | cucumber 0.002 0 0 79 102 9 | mushroom 0.002 0 0 120 108 10 | eggplant 0.002 24 0 136 123 11 | mushroom 0.002 63 4 163 97 12 | mushroom 0.002 96 0 199 108 13 | eggplant 0.001 117 2 227 89 14 | mushroom 0.002 152 17 227 78 15 | eggplant 0.003 0 44 72 117 16 | cucumber 0.001 0 14 108 142 17 | eggplant 0.002 20 27 131 144 18 | eggplant 0.020 24 43 194 149 19 | eggplant 0.007 58 21 204 170 20 | mushroom 0.002 126 14 223 137 21 | eggplant 0.002 166 17 227 141 22 | cucumber 0.002 0 67 47 167 23 | eggplant 0.003 29 21 85 227 24 | eggplant 0.002 32 40 107 167 25 | cucumber 0.996 15 53 213 153 26 | cucumber 0.003 63 5 214 189 27 | mushroom 0.003 152 70 189 184 28 | cucumber 0.002 164 48 227 184 29 | eggplant 0.002 0 82 62 206 30 | eggplant 0.001 0 95 109 204 31 | mushroom 0.001 0 51 207 211 32 | mushroom 0.000 49 60 198 203 33 | mushroom 0.007 95 62 168 201 34 | cucumber 0.001 121 85 227 208 35 | eggplant 0.002 134 89 227 209 36 | cucumber 0.002 0 126 98 227 37 | cucumber 0.001 0 110 103 227 38 | eggplant 0.001 5 120 153 227 39 | mushroom 0.002 43 127 188 219 40 | mushroom 0.002 104 115 186 224 41 | cucumber 0.002 142 132 215 227 42 | mushroom 0.002 144 109 227 227 43 | cucumber 0.002 0 130 58 227 44 | mushroom 0.002 0 144 98 227 45 | eggplant 0.001 16 158 140 227 46 | cucumber 0.002 70 148 166 227 47 | mushroom 0.001 85 138 208 227 48 | eggplant 0.001 114 168 227 227 49 | cucumber 0.001 143 152 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_7.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.004 0 0 68 78 2 | cucumber 0.004 0 0 100 63 3 | mushroom 0.004 16 0 141 73 4 | eggplant 0.003 69 0 160 72 5 | eggplant 0.004 82 0 213 73 6 | cucumber 0.005 130 0 225 68 7 | mushroom 0.004 145 0 227 85 8 | cucumber 0.003 0 0 81 106 9 | mushroom 0.003 0 0 118 104 10 | eggplant 0.003 28 0 127 121 11 | mushroom 0.003 57 0 163 113 12 | cucumber 0.006 92 0 204 97 13 | eggplant 0.003 118 0 227 99 14 | mushroom 0.004 148 0 227 99 15 | eggplant 0.006 0 25 75 130 16 | cucumber 0.003 0 9 110 148 17 | eggplant 0.004 17 23 138 142 18 | eggplant 0.003 38 43 187 144 19 | eggplant 0.026 68 34 195 156 20 | mushroom 0.005 113 35 227 126 21 | eggplant 0.003 169 27 227 132 22 | cucumber 0.004 0 62 54 171 23 | eggplant 0.007 23 23 89 227 24 | mushroom 0.001 22 44 128 162 25 | cucumber 0.956 75 28 153 205 26 | cucumber 0.065 96 61 221 180 27 | mushroom 0.009 157 50 195 200 28 | eggplant 0.003 146 74 227 154 29 | eggplant 0.005 0 82 73 201 30 | eggplant 0.004 0 109 91 185 31 | mushroom 0.004 0 60 202 206 32 | cucumber 0.020 49 73 184 202 33 | mushroom 0.014 87 67 178 202 34 | cucumber 0.003 123 90 224 202 35 | eggplant 0.004 165 83 227 202 36 | cucumber 0.004 0 126 92 227 37 | cucumber 0.004 0 118 109 227 38 | eggplant 0.003 44 110 121 227 39 | mushroom 0.005 41 133 192 218 40 | mushroom 0.004 94 119 192 221 41 | mushroom 0.004 140 105 218 227 42 | cucumber 0.004 163 142 227 220 43 | cucumber 0.005 0 138 72 227 44 | mushroom 0.005 0 147 104 227 45 | cucumber 0.003 39 154 121 227 46 | mushroom 0.003 62 147 175 227 47 | eggplant 0.004 86 134 205 227 48 | mushroom 0.002 131 144 225 227 49 | cucumber 0.004 149 146 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/cucumber_8.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.003 0 0 79 86 2 | cucumber 0.004 0 0 101 68 3 | mushroom 0.003 21 0 139 81 4 | eggplant 0.003 77 0 155 74 5 | eggplant 0.003 86 0 207 79 6 | cucumber 0.003 122 0 227 71 7 | cucumber 0.003 153 0 227 62 8 | cucumber 0.003 0 0 53 92 9 | mushroom 0.002 0 0 110 108 10 | eggplant 0.003 30 0 127 123 11 | mushroom 0.003 58 0 161 107 12 | cucumber 0.004 93 0 198 105 13 | eggplant 0.002 119 5 227 91 14 | eggplant 0.003 147 1 227 93 15 | eggplant 0.004 0 27 69 132 16 | eggplant 0.002 0 15 94 148 17 | eggplant 0.004 22 24 136 141 18 | eggplant 0.004 31 42 215 145 19 | eggplant 0.011 67 29 198 160 20 | mushroom 0.004 113 41 227 121 21 | eggplant 0.003 161 26 227 135 22 | cucumber 0.003 0 62 55 172 23 | eggplant 0.006 26 45 92 191 24 | eggplant 0.002 26 45 120 164 25 | cucumber 0.990 15 68 204 179 26 | cucumber 0.025 71 67 225 180 27 | mushroom 0.005 147 61 193 193 28 | eggplant 0.003 155 43 227 186 29 | eggplant 0.003 0 54 74 223 30 | eggplant 0.002 1 89 95 206 31 | eggplant 0.003 0 54 204 211 32 | cucumber 0.018 14 63 213 196 33 | mushroom 0.010 91 70 173 197 34 | cucumber 0.002 115 81 227 214 35 | eggplant 0.003 163 75 227 212 36 | cucumber 0.004 0 121 90 227 37 | cucumber 0.002 0 119 117 227 38 | eggplant 0.002 12 124 148 227 39 | mushroom 0.004 49 130 186 221 40 | cucumber 0.003 100 122 189 219 41 | mushroom 0.003 135 136 216 226 42 | cucumber 0.003 152 112 227 227 43 | cucumber 0.003 0 130 77 227 44 | mushroom 0.003 0 147 101 227 45 | cucumber 0.002 21 153 138 227 46 | mushroom 0.003 58 150 175 227 47 | eggplant 0.003 89 136 200 227 48 | eggplant 0.002 121 162 227 227 49 | cucumber 0.003 160 152 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/eggplant_1.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.000 0 0 44 97 2 | cucumber 0.000 0 0 128 120 3 | eggplant 0.000 27 0 152 117 4 | mushroom 0.000 77 0 171 53 5 | eggplant 0.000 59 0 225 57 6 | mushroom 0.000 133 0 209 95 7 | cucumber 0.000 133 0 227 46 8 | cucumber 0.000 0 10 68 96 9 | mushroom 0.000 0 0 119 105 10 | mushroom 0.000 8 5 152 114 11 | mushroom 0.000 44 0 197 110 12 | mushroom 0.000 50 17 227 104 13 | eggplant 0.000 149 8 199 102 14 | eggplant 0.000 202 0 227 100 15 | eggplant 0.000 0 12 126 163 16 | mushroom 0.000 22 0 78 173 17 | cucumber 0.000 0 18 171 120 18 | eggplant 0.000 0 74 203 119 19 | eggplant 0.001 31 0 227 198 20 | mushroom 0.000 123 0 227 151 21 | mushroom 0.000 190 31 227 132 22 | cucumber 0.000 0 55 60 186 23 | eggplant 0.000 54 16 57 227 24 | eggplant 0.000 52 12 84 185 25 | eggplant 0.949 0 14 217 227 26 | eggplant 0.008 18 26 227 167 27 | mushroom 0.000 170 19 173 227 28 | eggplant 0.000 191 76 224 164 29 | eggplant 0.000 0 71 59 205 30 | eggplant 0.000 0 109 86 196 31 | mushroom 0.000 0 69 210 190 32 | eggplant 0.000 0 50 199 209 33 | mushroom 0.000 120 33 138 226 34 | mushroom 0.000 141 66 199 202 35 | eggplant 0.000 128 65 227 210 36 | cucumber 0.000 0 94 67 227 37 | cucumber 0.000 5 99 105 227 38 | cucumber 0.000 0 112 175 227 39 | mushroom 0.000 11 81 222 227 40 | mushroom 0.000 86 94 195 227 41 | mushroom 0.000 161 95 183 227 42 | eggplant 0.000 158 106 227 227 43 | cucumber 0.000 0 120 93 227 44 | mushroom 0.000 25 143 66 227 45 | cucumber 0.000 0 180 147 227 46 | mushroom 0.000 26 126 221 227 47 | eggplant 0.000 90 117 182 227 48 | cucumber 0.000 127 152 227 227 49 | cucumber 0.000 164 164 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/eggplant_15.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.006 0 0 75 89 2 | cucumber 0.006 0 0 128 72 3 | mushroom 0.005 36 0 129 88 4 | eggplant 0.005 67 0 167 70 5 | eggplant 0.007 80 0 204 63 6 | cucumber 0.004 124 0 227 74 7 | cucumber 0.008 150 0 227 57 8 | cucumber 0.006 0 0 66 109 9 | cucumber 0.005 0 0 113 95 10 | cucumber 0.005 0 0 165 106 11 | eggplant 0.005 54 0 163 104 12 | cucumber 0.005 83 4 221 90 13 | eggplant 0.006 130 0 227 110 14 | mushroom 0.004 160 0 227 98 15 | eggplant 0.007 0 16 81 147 16 | eggplant 0.005 1 8 85 147 17 | eggplant 0.006 5 32 147 133 18 | eggplant 0.006 43 26 200 150 19 | eggplant 0.062 56 30 210 160 20 | cucumber 0.006 125 48 227 107 21 | eggplant 0.005 139 29 227 129 22 | cucumber 0.007 0 49 68 170 23 | eggplant 0.022 14 52 103 183 24 | eggplant 0.191 28 18 161 193 25 | eggplant 0.034 30 55 173 199 26 | eggplant 0.013 51 23 216 180 27 | mushroom 0.014 143 45 202 208 28 | cucumber 0.004 152 38 227 189 29 | cucumber 0.005 0 92 67 194 30 | eggplant 0.006 0 94 106 200 31 | mushroom 0.056 0 72 196 196 32 | eggplant 0.926 15 49 184 219 33 | mushroom 0.035 66 85 198 185 34 | mushroom 0.005 126 98 222 200 35 | eggplant 0.004 162 82 227 211 36 | eggplant 0.007 0 118 79 227 37 | mushroom 0.007 0 114 107 227 38 | cucumber 0.007 0 126 163 227 39 | mushroom 0.008 53 129 174 221 40 | mushroom 0.007 88 103 205 227 41 | cucumber 0.006 123 109 224 227 42 | cucumber 0.006 153 105 227 227 43 | cucumber 0.006 0 140 69 227 44 | cucumber 0.005 5 142 99 227 45 | cucumber 0.005 10 152 141 227 46 | mushroom 0.003 47 137 190 227 47 | mushroom 0.006 79 158 211 227 48 | eggplant 0.009 116 163 227 227 49 | cucumber 0.007 161 152 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/eggplant_20.txt: -------------------------------------------------------------------------------- 1 | mushroom 0.002 0 0 61 94 2 | cucumber 0.001 0 0 122 98 3 | mushroom 0.001 26 0 138 80 4 | cucumber 0.001 74 0 154 71 5 | eggplant 0.002 82 0 206 74 6 | mushroom 0.002 125 0 222 81 7 | cucumber 0.003 164 0 227 74 8 | cucumber 0.002 0 2 61 92 9 | mushroom 0.001 0 0 122 105 10 | cucumber 0.004 26 0 133 128 11 | mushroom 0.001 57 0 158 104 12 | mushroom 0.001 69 9 227 97 13 | eggplant 0.003 118 16 227 83 14 | eggplant 0.001 170 0 227 102 15 | eggplant 0.004 0 6 97 157 16 | mushroom 0.002 2 0 96 152 17 | eggplant 0.001 24 26 152 134 18 | eggplant 0.006 48 56 178 136 19 | eggplant 0.040 45 27 215 165 20 | mushroom 0.002 136 18 227 144 21 | mushroom 0.002 158 23 227 142 22 | cucumber 0.002 0 72 70 159 23 | eggplant 0.006 38 22 67 227 24 | eggplant 0.006 31 45 120 170 25 | eggplant 0.986 27 39 190 212 26 | eggplant 0.015 39 28 227 165 27 | mushroom 0.003 154 35 198 218 28 | eggplant 0.001 172 71 227 162 29 | eggplant 0.002 0 93 76 194 30 | eggplant 0.001 0 98 105 193 31 | eggplant 0.011 0 43 200 219 32 | eggplant 0.003 58 75 179 188 33 | mushroom 0.007 90 70 172 195 34 | cucumber 0.002 124 92 222 195 35 | eggplant 0.001 151 76 227 210 36 | eggplant 0.002 0 110 66 227 37 | cucumber 0.001 0 106 118 227 38 | eggplant 0.002 0 122 166 227 39 | eggplant 0.002 30 107 200 227 40 | mushroom 0.002 75 100 211 227 41 | eggplant 0.002 149 128 210 225 42 | eggplant 0.002 156 110 227 227 43 | cucumber 0.003 0 127 64 227 44 | mushroom 0.002 0 141 106 227 45 | cucumber 0.002 6 163 151 227 46 | mushroom 0.001 85 150 144 227 47 | mushroom 0.002 77 133 202 227 48 | cucumber 0.002 127 164 227 227 49 | cucumber 0.002 162 148 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/eggplant_21.txt: -------------------------------------------------------------------------------- 1 | cucumber 0.006 0 0 83 72 2 | cucumber 0.006 0 0 114 69 3 | cucumber 0.006 20 0 141 79 4 | eggplant 0.008 69 0 166 69 5 | eggplant 0.008 77 0 202 69 6 | mushroom 0.004 117 0 227 70 7 | cucumber 0.009 164 0 227 72 8 | cucumber 0.008 0 0 62 101 9 | cucumber 0.005 0 0 113 98 10 | mushroom 0.007 30 0 132 114 11 | mushroom 0.008 47 0 187 106 12 | cucumber 0.006 82 6 215 94 13 | eggplant 0.007 128 0 221 107 14 | mushroom 0.007 169 0 227 107 15 | eggplant 0.010 0 18 92 144 16 | eggplant 0.005 0 12 101 149 17 | eggplant 0.008 34 28 129 134 18 | eggplant 0.003 50 45 193 139 19 | eggplant 0.043 58 30 207 157 20 | mushroom 0.006 128 49 226 112 21 | eggplant 0.008 150 49 227 122 22 | mushroom 0.005 0 42 75 181 23 | eggplant 0.019 23 47 92 188 24 | eggplant 0.003 26 39 127 169 25 | eggplant 0.067 30 79 204 178 26 | eggplant 0.019 55 44 221 197 27 | mushroom 0.014 153 44 200 203 28 | mushroom 0.004 152 50 227 173 29 | eggplant 0.006 0 98 72 188 30 | eggplant 0.007 0 86 97 206 31 | eggplant 0.093 0 70 194 202 32 | eggplant 0.811 43 91 206 188 33 | mushroom 0.039 74 78 191 192 34 | mushroom 0.007 129 96 218 201 35 | eggplant 0.006 168 81 227 210 36 | eggplant 0.007 0 114 70 227 37 | mushroom 0.006 0 117 114 227 38 | eggplant 0.006 50 108 117 227 39 | mushroom 0.011 55 138 178 218 40 | mushroom 0.006 82 113 213 227 41 | cucumber 0.008 131 134 225 220 42 | cucumber 0.006 171 122 227 227 43 | cucumber 0.009 0 166 82 227 44 | mushroom 0.007 5 147 96 227 45 | cucumber 0.007 9 153 149 227 46 | mushroom 0.004 52 131 183 227 47 | eggplant 0.008 77 156 213 227 48 | eggplant 0.007 121 148 227 227 49 | cucumber 0.006 163 147 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/eggplant_23.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.003 0 0 73 67 2 | cucumber 0.003 0 0 103 76 3 | cucumber 0.002 30 0 131 74 4 | eggplant 0.006 61 0 175 72 5 | eggplant 0.004 78 0 203 69 6 | cucumber 0.002 138 0 212 85 7 | mushroom 0.006 126 0 227 63 8 | cucumber 0.003 0 8 80 92 9 | cucumber 0.004 0 2 107 98 10 | eggplant 0.003 10 10 149 89 11 | eggplant 0.002 64 1 169 97 12 | mushroom 0.003 73 0 223 101 13 | eggplant 0.004 126 1 227 91 14 | mushroom 0.003 165 0 227 103 15 | eggplant 0.002 0 31 62 133 16 | cucumber 0.002 0 23 113 142 17 | eggplant 0.001 26 39 123 126 18 | eggplant 0.936 18 11 205 179 19 | eggplant 0.047 51 8 212 184 20 | cucumber 0.002 142 6 225 150 21 | mushroom 0.003 151 11 227 146 22 | cucumber 0.004 0 59 57 170 23 | eggplant 0.005 18 48 101 192 24 | eggplant 0.107 20 29 120 176 25 | eggplant 0.003 25 27 181 190 26 | eggplant 0.015 67 3 217 195 27 | mushroom 0.010 158 46 199 207 28 | cucumber 0.003 170 47 227 182 29 | eggplant 0.004 0 91 66 199 30 | eggplant 0.004 0 106 115 195 31 | mushroom 0.028 0 94 149 171 32 | mushroom 0.002 4 38 192 222 33 | mushroom 0.020 89 67 176 199 34 | cucumber 0.002 122 102 223 193 35 | eggplant 0.003 148 78 227 210 36 | eggplant 0.004 0 114 72 227 37 | mushroom 0.002 0 110 115 227 38 | eggplant 0.003 0 117 166 227 39 | mushroom 0.002 42 109 182 227 40 | cucumber 0.003 88 98 207 227 41 | cucumber 0.002 142 133 211 218 42 | cucumber 0.004 137 109 227 227 43 | mushroom 0.006 0 146 79 227 44 | mushroom 0.004 0 148 108 227 45 | cucumber 0.002 16 165 149 227 46 | mushroom 0.003 50 125 191 227 47 | mushroom 0.003 61 151 227 227 48 | mushroom 0.004 122 146 227 227 49 | cucumber 0.003 157 153 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/eggplant_25.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.006 0 0 76 87 2 | cucumber 0.003 0 0 126 72 3 | mushroom 0.004 37 0 126 87 4 | eggplant 0.003 68 0 163 59 5 | eggplant 0.004 86 0 202 62 6 | cucumber 0.003 125 0 227 71 7 | cucumber 0.006 146 0 227 61 8 | mushroom 0.004 0 0 60 108 9 | cucumber 0.003 0 1 111 94 10 | cucumber 0.004 26 0 130 106 11 | eggplant 0.003 57 0 160 101 12 | cucumber 0.004 78 2 227 93 13 | eggplant 0.004 137 0 227 114 14 | mushroom 0.003 154 2 227 97 15 | eggplant 0.005 0 12 76 151 16 | cucumber 0.003 0 22 120 134 17 | mushroom 0.003 6 28 144 133 18 | eggplant 0.014 43 21 193 152 19 | eggplant 0.024 46 24 218 166 20 | cucumber 0.003 124 48 227 108 21 | cucumber 0.004 160 22 227 142 22 | cucumber 0.005 0 61 66 159 23 | eggplant 0.019 14 52 105 185 24 | eggplant 0.776 22 21 168 202 25 | eggplant 0.161 44 42 153 206 26 | eggplant 0.001 43 13 227 180 27 | mushroom 0.013 151 40 192 213 28 | cucumber 0.003 149 38 227 190 29 | cucumber 0.004 0 79 65 208 30 | eggplant 0.003 0 102 99 184 31 | mushroom 0.125 13 66 136 198 32 | eggplant 0.118 17 39 178 227 33 | mushroom 0.029 74 78 190 190 34 | mushroom 0.004 129 105 219 191 35 | eggplant 0.002 150 81 227 210 36 | eggplant 0.005 0 114 85 227 37 | mushroom 0.005 0 114 102 227 38 | cucumber 0.006 0 127 164 227 39 | mushroom 0.004 54 122 170 223 40 | eggplant 0.005 90 99 203 227 41 | eggplant 0.003 122 105 227 227 42 | cucumber 0.004 148 99 227 227 43 | cucumber 0.004 0 131 70 227 44 | cucumber 0.004 5 141 97 227 45 | cucumber 0.003 8 161 142 227 46 | mushroom 0.002 65 140 160 227 47 | mushroom 0.004 81 157 206 227 48 | eggplant 0.007 121 168 227 227 49 | cucumber 0.004 154 148 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/eggplant_3.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.004 0 0 60 82 2 | cucumber 0.005 0 0 106 73 3 | cucumber 0.004 29 0 140 76 4 | eggplant 0.005 72 0 161 77 5 | eggplant 0.006 87 0 201 71 6 | cucumber 0.004 126 0 226 71 7 | cucumber 0.005 139 0 227 65 8 | cucumber 0.004 0 4 60 94 9 | cucumber 0.004 0 0 109 114 10 | eggplant 0.006 36 0 129 112 11 | mushroom 0.004 59 0 172 107 12 | mushroom 0.004 94 0 201 96 13 | eggplant 0.004 119 7 227 87 14 | mushroom 0.004 148 1 227 101 15 | eggplant 0.004 0 20 82 143 16 | cucumber 0.003 0 19 103 137 17 | eggplant 0.003 29 24 129 142 18 | eggplant 0.137 15 45 190 145 19 | eggplant 0.022 49 17 215 172 20 | eggplant 0.004 134 18 223 133 21 | eggplant 0.004 160 38 227 130 22 | cucumber 0.005 0 63 60 170 23 | eggplant 0.013 21 45 96 193 24 | eggplant 0.008 26 39 120 172 25 | eggplant 0.889 18 46 211 170 26 | eggplant 0.002 57 15 219 179 27 | mushroom 0.008 152 49 203 204 28 | cucumber 0.004 158 54 227 174 29 | eggplant 0.004 0 85 64 203 30 | cucumber 0.004 0 94 108 201 31 | eggplant 0.016 0 59 203 203 32 | eggplant 0.001 11 52 193 208 33 | mushroom 0.016 90 61 175 203 34 | cucumber 0.005 117 103 227 187 35 | eggplant 0.004 162 76 227 210 36 | eggplant 0.004 0 112 63 227 37 | eggplant 0.003 0 107 109 227 38 | eggplant 0.005 0 124 160 227 39 | mushroom 0.005 50 128 178 222 40 | mushroom 0.005 84 118 205 227 41 | cucumber 0.004 143 125 214 227 42 | mushroom 0.004 152 121 227 227 43 | cucumber 0.005 0 142 73 227 44 | mushroom 0.005 0 144 97 227 45 | cucumber 0.004 14 163 142 227 46 | cucumber 0.004 72 145 159 227 47 | mushroom 0.003 79 142 208 227 48 | eggplant 0.005 133 148 227 227 49 | cucumber 0.004 154 151 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/eggplant_33.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.004 0 0 63 78 2 | cucumber 0.003 3 0 103 75 3 | mushroom 0.003 30 0 137 74 4 | eggplant 0.003 68 0 165 78 5 | eggplant 0.005 82 0 206 72 6 | cucumber 0.004 121 0 227 77 7 | cucumber 0.004 139 0 227 54 8 | cucumber 0.002 0 5 52 95 9 | cucumber 0.003 0 0 109 112 10 | eggplant 0.004 32 0 128 112 11 | eggplant 0.004 63 0 162 105 12 | mushroom 0.003 76 9 225 94 13 | eggplant 0.003 116 13 227 79 14 | mushroom 0.003 153 0 227 99 15 | eggplant 0.004 0 14 77 148 16 | mushroom 0.003 0 19 115 136 17 | eggplant 0.002 22 26 130 143 18 | eggplant 0.211 15 41 188 149 19 | eggplant 0.013 49 12 215 178 20 | eggplant 0.002 132 24 227 132 21 | eggplant 0.003 169 16 227 147 22 | cucumber 0.004 0 67 61 166 23 | eggplant 0.009 25 47 94 192 24 | eggplant 0.010 26 41 117 169 25 | eggplant 0.946 24 44 193 155 26 | eggplant 0.000 51 12 225 182 27 | mushroom 0.007 150 61 190 192 28 | cucumber 0.003 158 59 227 171 29 | eggplant 0.003 0 80 63 211 30 | eggplant 0.003 5 98 90 191 31 | eggplant 0.012 0 60 204 202 32 | eggplant 0.000 65 53 183 212 33 | mushroom 0.014 86 60 178 204 34 | mushroom 0.005 125 107 223 184 35 | eggplant 0.003 154 77 227 210 36 | mushroom 0.003 0 111 62 227 37 | mushroom 0.002 0 104 101 227 38 | eggplant 0.004 0 119 160 227 39 | mushroom 0.003 52 130 174 218 40 | mushroom 0.004 78 111 210 227 41 | mushroom 0.003 144 129 214 224 42 | mushroom 0.003 140 125 227 227 43 | cucumber 0.004 0 146 66 227 44 | mushroom 0.003 0 158 105 227 45 | eggplant 0.003 4 165 147 227 46 | cucumber 0.003 70 143 159 227 47 | mushroom 0.003 78 137 209 227 48 | eggplant 0.004 131 153 227 227 49 | cucumber 0.003 153 153 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/eggplant_37.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.002 0 0 84 77 2 | cucumber 0.001 0 0 110 77 3 | mushroom 0.002 19 0 144 70 4 | eggplant 0.001 67 0 171 71 5 | eggplant 0.002 64 0 219 82 6 | cucumber 0.002 130 0 225 84 7 | cucumber 0.002 145 0 227 62 8 | cucumber 0.002 0 0 74 119 9 | cucumber 0.002 0 0 101 103 10 | cucumber 0.002 26 0 132 108 11 | eggplant 0.002 62 0 160 107 12 | cucumber 0.002 73 2 225 95 13 | eggplant 0.002 134 0 227 105 14 | mushroom 0.002 157 0 227 104 15 | eggplant 0.002 0 14 87 155 16 | cucumber 0.001 0 15 97 141 17 | eggplant 0.002 36 23 112 143 18 | mushroom 0.002 34 31 199 144 19 | eggplant 0.007 102 26 196 143 20 | cucumber 0.002 125 50 227 111 21 | eggplant 0.001 173 18 227 144 22 | cucumber 0.002 0 62 58 165 23 | eggplant 0.026 30 33 91 199 24 | eggplant 0.052 25 37 108 172 25 | mushroom 0.019 8 50 193 195 26 | cucumber 0.000 54 1 217 192 27 | mushroom 0.006 163 39 187 213 28 | eggplant 0.002 141 38 227 185 29 | eggplant 0.002 0 81 64 202 30 | eggplant 0.002 0 93 99 200 31 | mushroom 0.119 23 61 131 200 32 | cucumber 0.082 33 94 204 216 33 | mushroom 0.016 84 68 179 196 34 | cucumber 0.001 124 103 222 188 35 | eggplant 0.001 167 79 227 214 36 | eggplant 0.002 0 113 76 227 37 | cucumber 0.002 0 125 101 227 38 | eggplant 0.002 8 129 154 225 39 | mushroom 0.002 61 121 171 227 40 | cucumber 0.002 99 95 203 227 41 | eggplant 0.002 117 110 227 227 42 | cucumber 0.001 147 106 227 227 43 | cucumber 0.002 0 134 80 227 44 | cucumber 0.002 3 149 98 227 45 | cucumber 0.001 28 170 133 227 46 | mushroom 0.002 57 147 173 227 47 | mushroom 0.002 78 161 212 227 48 | eggplant 0.003 106 166 227 227 49 | cucumber 0.001 150 154 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/eggplant_4.txt: -------------------------------------------------------------------------------- 1 | cucumber 0.003 0 0 68 88 2 | cucumber 0.003 7 0 102 85 3 | cucumber 0.002 34 0 136 86 4 | eggplant 0.003 70 0 163 73 5 | eggplant 0.004 75 0 209 72 6 | eggplant 0.003 123 0 226 65 7 | cucumber 0.004 164 0 227 79 8 | cucumber 0.004 0 2 62 97 9 | mushroom 0.002 0 0 116 99 10 | eggplant 0.004 33 0 127 113 11 | mushroom 0.003 56 0 179 104 12 | mushroom 0.003 85 0 212 103 13 | cucumber 0.003 121 5 227 92 14 | eggplant 0.002 147 0 227 107 15 | eggplant 0.003 0 19 94 140 16 | mushroom 0.002 0 17 106 140 17 | eggplant 0.003 31 32 132 133 18 | eggplant 0.005 34 29 219 155 19 | eggplant 0.084 57 24 207 167 20 | mushroom 0.003 123 46 227 115 21 | eggplant 0.003 155 25 227 147 22 | cucumber 0.004 0 40 73 184 23 | eggplant 0.007 30 23 76 227 24 | eggplant 0.004 27 44 118 166 25 | eggplant 0.952 30 70 211 164 26 | eggplant 0.011 42 33 226 202 27 | mushroom 0.004 141 52 197 202 28 | mushroom 0.002 160 69 227 167 29 | eggplant 0.002 0 60 67 225 30 | eggplant 0.004 0 87 111 207 31 | eggplant 0.005 0 54 203 213 32 | eggplant 0.100 43 80 192 179 33 | mushroom 0.011 79 74 183 191 34 | mushroom 0.004 126 100 222 194 35 | eggplant 0.002 165 81 227 206 36 | eggplant 0.004 0 122 91 227 37 | mushroom 0.002 0 104 110 227 38 | cucumber 0.004 0 123 162 227 39 | mushroom 0.005 54 128 172 220 40 | mushroom 0.003 89 119 198 227 41 | cucumber 0.003 139 131 220 224 42 | mushroom 0.003 165 112 227 227 43 | cucumber 0.004 0 149 81 227 44 | mushroom 0.003 0 152 106 227 45 | cucumber 0.003 6 153 147 227 46 | mushroom 0.002 70 149 157 227 47 | mushroom 0.003 93 142 188 227 48 | eggplant 0.003 126 160 227 227 49 | cucumber 0.003 165 142 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/eggplant_40.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.004 0 0 67 87 2 | cucumber 0.004 0 0 108 76 3 | mushroom 0.005 26 0 138 77 4 | eggplant 0.004 65 0 170 77 5 | eggplant 0.004 80 0 207 72 6 | cucumber 0.004 124 0 227 79 7 | cucumber 0.005 152 0 227 79 8 | cucumber 0.004 0 0 55 105 9 | cucumber 0.004 0 0 100 107 10 | eggplant 0.004 25 0 136 106 11 | eggplant 0.004 54 3 163 95 12 | cucumber 0.004 79 8 221 95 13 | eggplant 0.004 123 4 227 92 14 | mushroom 0.003 145 0 227 99 15 | eggplant 0.004 0 21 73 141 16 | cucumber 0.003 0 19 112 137 17 | eggplant 0.004 26 28 129 136 18 | eggplant 0.050 42 38 177 151 19 | eggplant 0.017 94 21 203 139 20 | mushroom 0.003 132 27 227 128 21 | mushroom 0.004 166 19 227 142 22 | cucumber 0.005 0 65 64 165 23 | eggplant 0.016 21 46 99 192 24 | eggplant 0.068 23 40 123 166 25 | eggplant 0.839 10 17 190 197 26 | eggplant 0.003 78 18 220 182 27 | mushroom 0.010 154 52 188 199 28 | cucumber 0.004 158 59 227 169 29 | eggplant 0.005 0 75 65 209 30 | cucumber 0.004 5 102 93 184 31 | mushroom 0.027 0 59 204 204 32 | mushroom 0.001 10 39 188 222 33 | mushroom 0.025 87 58 177 209 34 | cucumber 0.005 122 100 224 187 35 | eggplant 0.004 149 90 227 202 36 | eggplant 0.004 0 124 98 227 37 | eggplant 0.003 5 113 95 227 38 | cucumber 0.004 0 122 156 227 39 | mushroom 0.004 53 105 170 227 40 | mushroom 0.005 85 121 208 227 41 | cucumber 0.004 128 112 227 227 42 | mushroom 0.003 149 123 227 227 43 | cucumber 0.005 0 129 76 227 44 | cucumber 0.003 0 140 100 227 45 | eggplant 0.003 20 167 135 227 46 | cucumber 0.004 68 147 161 227 47 | mushroom 0.003 80 136 208 227 48 | eggplant 0.005 128 148 227 227 49 | cucumber 0.004 151 156 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/eggplant_41.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.004 0 0 64 82 2 | cucumber 0.004 1 0 104 78 3 | mushroom 0.003 33 0 135 71 4 | eggplant 0.003 65 0 157 69 5 | eggplant 0.004 86 0 204 76 6 | mushroom 0.003 127 0 227 77 7 | cucumber 0.004 141 0 227 58 8 | cucumber 0.003 0 4 50 96 9 | cucumber 0.003 0 0 114 117 10 | eggplant 0.004 30 0 128 112 11 | mushroom 0.003 62 3 159 93 12 | mushroom 0.003 77 8 225 96 13 | eggplant 0.003 116 10 227 84 14 | mushroom 0.003 147 4 227 94 15 | eggplant 0.003 0 18 79 146 16 | cucumber 0.003 0 23 112 131 17 | eggplant 0.002 23 25 130 142 18 | eggplant 0.058 16 40 189 151 19 | eggplant 0.010 96 15 196 144 20 | eggplant 0.002 130 24 227 130 21 | eggplant 0.003 164 17 227 144 22 | cucumber 0.004 0 64 60 168 23 | eggplant 0.010 21 51 99 190 24 | eggplant 0.013 26 43 114 168 25 | eggplant 0.902 19 56 192 152 26 | eggplant 0.000 49 6 227 187 27 | mushroom 0.006 150 63 190 190 28 | cucumber 0.003 160 50 227 180 29 | mushroom 0.003 0 78 61 210 30 | eggplant 0.003 0 92 110 202 31 | eggplant 0.010 0 56 205 205 32 | eggplant 0.000 59 56 187 207 33 | mushroom 0.011 85 65 178 199 34 | mushroom 0.004 122 105 225 185 35 | eggplant 0.003 142 90 227 204 36 | mushroom 0.003 0 126 96 227 37 | mushroom 0.002 0 106 103 227 38 | cucumber 0.004 0 122 160 227 39 | mushroom 0.003 53 132 172 217 40 | mushroom 0.004 85 114 203 227 41 | mushroom 0.003 147 128 213 226 42 | mushroom 0.003 147 123 227 227 43 | cucumber 0.003 0 142 66 227 44 | cucumber 0.003 3 145 89 227 45 | eggplant 0.002 7 164 148 227 46 | mushroom 0.003 69 146 160 227 47 | mushroom 0.003 82 140 207 227 48 | eggplant 0.004 132 150 227 227 49 | cucumber 0.002 156 153 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/eggplant_43.txt: -------------------------------------------------------------------------------- 1 | mushroom 0.004 0 0 71 89 2 | mushroom 0.002 0 0 118 86 3 | mushroom 0.003 33 0 131 79 4 | eggplant 0.002 66 0 162 60 5 | eggplant 0.003 78 0 207 66 6 | cucumber 0.003 126 0 227 73 7 | cucumber 0.004 159 0 227 83 8 | cucumber 0.003 0 0 56 100 9 | cucumber 0.002 0 0 119 99 10 | cucumber 0.002 26 0 130 110 11 | eggplant 0.002 57 0 159 104 12 | mushroom 0.003 81 9 224 92 13 | eggplant 0.003 130 0 227 116 14 | mushroom 0.002 155 0 227 103 15 | eggplant 0.004 0 11 78 151 16 | eggplant 0.002 0 14 115 139 17 | eggplant 0.003 33 23 126 141 18 | eggplant 0.003 52 28 192 153 19 | eggplant 0.023 49 22 213 169 20 | mushroom 0.002 130 50 227 109 21 | eggplant 0.003 169 22 227 143 22 | cucumber 0.004 0 59 68 167 23 | eggplant 0.010 21 53 100 188 24 | eggplant 0.068 21 16 169 195 25 | eggplant 0.887 63 33 144 209 26 | eggplant 0.001 50 9 226 185 27 | mushroom 0.007 150 48 193 206 28 | cucumber 0.002 155 54 227 177 29 | eggplant 0.003 0 77 72 207 30 | eggplant 0.002 1 102 94 184 31 | mushroom 0.036 0 61 203 202 32 | eggplant 0.037 67 58 172 209 33 | mushroom 0.013 75 69 188 195 34 | mushroom 0.003 120 99 227 192 35 | eggplant 0.002 150 82 227 201 36 | eggplant 0.003 0 118 78 227 37 | mushroom 0.003 0 111 102 227 38 | eggplant 0.003 0 124 163 227 39 | mushroom 0.004 55 121 172 227 40 | mushroom 0.003 87 106 209 227 41 | cucumber 0.003 136 107 219 227 42 | eggplant 0.003 144 108 227 227 43 | cucumber 0.003 0 126 70 227 44 | cucumber 0.003 6 146 93 227 45 | cucumber 0.003 5 155 149 227 46 | mushroom 0.002 64 139 166 227 47 | mushroom 0.003 85 157 206 227 48 | eggplant 0.004 123 155 227 227 49 | cucumber 0.003 150 148 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/eggplant_46.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.007 0 0 67 75 2 | cucumber 0.005 4 0 106 82 3 | cucumber 0.004 16 0 143 62 4 | eggplant 0.006 68 0 154 71 5 | eggplant 0.009 73 0 213 75 6 | eggplant 0.007 125 0 227 79 7 | cucumber 0.008 160 0 227 82 8 | cucumber 0.005 0 0 57 104 9 | mushroom 0.005 0 0 113 105 10 | eggplant 0.007 30 0 132 117 11 | mushroom 0.005 55 0 164 101 12 | mushroom 0.005 99 0 198 94 13 | mushroom 0.006 118 4 227 87 14 | mushroom 0.004 154 0 227 98 15 | eggplant 0.007 0 14 84 144 16 | mushroom 0.006 0 14 117 140 17 | eggplant 0.005 25 30 133 142 18 | eggplant 0.059 31 34 184 157 19 | eggplant 0.088 58 22 207 168 20 | mushroom 0.005 125 42 227 123 21 | mushroom 0.006 164 21 227 141 22 | cucumber 0.009 0 62 61 165 23 | eggplant 0.013 15 24 88 227 24 | eggplant 0.023 19 42 120 171 25 | eggplant 0.923 65 56 164 143 26 | eggplant 0.002 50 16 227 178 27 | mushroom 0.010 143 51 198 201 28 | cucumber 0.004 162 73 227 163 29 | mushroom 0.005 0 80 69 208 30 | eggplant 0.005 0 98 114 199 31 | mushroom 0.005 0 61 201 205 32 | eggplant 0.005 74 57 164 206 33 | mushroom 0.016 81 72 183 192 34 | mushroom 0.007 124 102 225 192 35 | cucumber 0.004 146 84 227 213 36 | eggplant 0.005 0 112 73 227 37 | mushroom 0.004 0 101 106 227 38 | eggplant 0.006 0 117 161 227 39 | mushroom 0.005 45 130 176 220 40 | mushroom 0.005 89 114 205 227 41 | cucumber 0.005 140 131 221 221 42 | mushroom 0.007 142 112 227 227 43 | cucumber 0.006 0 144 69 227 44 | mushroom 0.004 3 149 91 227 45 | cucumber 0.005 9 155 144 227 46 | mushroom 0.005 68 148 159 227 47 | mushroom 0.005 87 139 200 227 48 | eggplant 0.005 139 152 222 227 49 | cucumber 0.005 147 156 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/eggplant_47.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.005 0 0 69 86 2 | cucumber 0.004 0 0 109 86 3 | cucumber 0.005 39 0 131 78 4 | eggplant 0.004 66 0 163 71 5 | eggplant 0.007 82 0 206 68 6 | eggplant 0.005 123 0 227 71 7 | cucumber 0.007 158 0 227 81 8 | cucumber 0.005 0 1 56 97 9 | cucumber 0.003 0 0 110 109 10 | eggplant 0.006 30 0 127 112 11 | eggplant 0.005 62 3 157 94 12 | mushroom 0.005 81 11 222 89 13 | eggplant 0.005 122 6 227 90 14 | mushroom 0.004 142 0 227 104 15 | eggplant 0.006 0 14 87 149 16 | mushroom 0.004 0 22 110 131 17 | eggplant 0.005 29 30 131 134 18 | eggplant 0.014 45 31 202 150 19 | eggplant 0.025 92 16 201 144 20 | mushroom 0.004 126 44 227 116 21 | eggplant 0.005 155 18 227 148 22 | cucumber 0.006 0 55 74 173 23 | eggplant 0.014 19 52 99 188 24 | eggplant 0.021 28 45 117 167 25 | eggplant 0.959 32 69 178 163 26 | eggplant 0.001 48 9 227 185 27 | mushroom 0.009 142 52 198 200 28 | mushroom 0.003 157 49 227 180 29 | eggplant 0.004 0 80 62 207 30 | eggplant 0.004 0 87 107 206 31 | eggplant 0.031 0 59 199 206 32 | eggplant 0.041 66 66 173 196 33 | mushroom 0.030 76 75 188 191 34 | mushroom 0.007 122 101 226 190 35 | eggplant 0.004 153 80 227 208 36 | eggplant 0.005 0 117 66 227 37 | mushroom 0.004 0 105 107 227 38 | cucumber 0.006 0 125 161 227 39 | mushroom 0.006 56 136 171 218 40 | mushroom 0.005 83 114 213 227 41 | cucumber 0.004 137 117 224 227 42 | eggplant 0.005 158 114 227 227 43 | cucumber 0.005 0 148 71 227 44 | cucumber 0.004 0 147 110 227 45 | cucumber 0.004 3 155 148 227 46 | mushroom 0.003 68 146 159 227 47 | mushroom 0.004 87 143 197 227 48 | eggplant 0.006 129 157 227 227 49 | cucumber 0.004 160 151 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/eggplant_48.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.000 0 0 42 109 2 | cucumber 0.000 0 0 134 121 3 | eggplant 0.000 33 0 136 84 4 | eggplant 0.000 75 0 176 42 5 | eggplant 0.000 79 0 205 77 6 | mushroom 0.000 135 0 214 102 7 | cucumber 0.000 137 9 227 44 8 | cucumber 0.000 0 7 50 96 9 | mushroom 0.000 0 9 131 96 10 | cucumber 0.000 20 0 131 144 11 | mushroom 0.000 57 0 168 110 12 | mushroom 0.000 142 20 155 55 13 | eggplant 0.000 137 32 199 76 14 | eggplant 0.000 203 0 227 94 15 | eggplant 0.000 0 0 121 173 16 | mushroom 0.000 25 0 84 169 17 | eggplant 0.000 46 20 91 136 18 | eggplant 0.000 0 87 203 107 19 | eggplant 0.000 29 6 227 188 20 | mushroom 0.000 143 4 227 145 21 | mushroom 0.000 185 30 227 133 22 | cucumber 0.000 0 59 41 191 23 | eggplant 0.000 57 16 59 227 24 | eggplant 0.000 54 23 89 181 25 | eggplant 1.000 4 16 227 227 26 | eggplant 0.003 20 1 227 193 27 | mushroom 0.000 172 20 176 227 28 | eggplant 0.000 186 79 227 156 29 | eggplant 0.000 0 85 82 192 30 | eggplant 0.000 0 103 105 180 31 | eggplant 0.000 0 36 210 222 32 | eggplant 0.000 29 81 226 178 33 | mushroom 0.000 121 48 137 211 34 | mushroom 0.000 139 66 196 205 35 | eggplant 0.000 137 54 227 226 36 | cucumber 0.000 0 149 116 212 37 | cucumber 0.000 15 92 93 227 38 | eggplant 0.000 0 122 175 227 39 | mushroom 0.000 6 79 221 227 40 | mushroom 0.000 74 75 206 227 41 | eggplant 0.000 166 126 184 226 42 | eggplant 0.000 165 100 227 227 43 | cucumber 0.000 0 115 62 227 44 | mushroom 0.000 10 136 89 227 45 | cucumber 0.000 0 190 164 227 46 | mushroom 0.000 21 157 220 227 47 | mushroom 0.000 72 122 206 227 48 | cucumber 0.000 122 164 227 227 49 | cucumber 0.000 168 156 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/eggplant_49.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.003 0 0 71 69 2 | cucumber 0.003 0 0 108 93 3 | cucumber 0.001 32 0 130 81 4 | eggplant 0.005 63 0 167 64 5 | eggplant 0.005 71 0 211 69 6 | eggplant 0.003 116 0 227 62 7 | cucumber 0.006 127 0 227 62 8 | cucumber 0.003 0 0 59 112 9 | cucumber 0.003 0 4 115 98 10 | eggplant 0.004 32 0 132 119 11 | mushroom 0.003 79 5 155 98 12 | mushroom 0.002 70 0 227 101 13 | eggplant 0.004 121 7 227 84 14 | mushroom 0.002 179 0 227 95 15 | eggplant 0.003 0 12 82 139 16 | eggplant 0.003 2 16 103 150 17 | eggplant 0.001 25 41 132 129 18 | eggplant 0.969 18 39 209 152 19 | eggplant 0.135 53 12 209 180 20 | eggplant 0.002 152 3 212 154 21 | eggplant 0.003 160 22 227 143 22 | cucumber 0.003 0 53 56 175 23 | eggplant 0.005 25 31 76 224 24 | eggplant 0.015 25 31 117 177 25 | eggplant 0.026 21 35 200 172 26 | eggplant 0.038 59 1 223 200 27 | mushroom 0.007 148 48 211 206 28 | cucumber 0.002 177 58 227 173 29 | eggplant 0.003 0 94 78 200 30 | eggplant 0.003 0 106 118 197 31 | mushroom 0.005 0 65 205 197 32 | eggplant 0.000 7 40 192 220 33 | mushroom 0.010 92 57 171 206 34 | cucumber 0.003 119 104 227 189 35 | eggplant 0.002 144 76 227 216 36 | eggplant 0.004 0 108 60 227 37 | eggplant 0.001 0 112 106 227 38 | eggplant 0.003 0 116 171 227 39 | mushroom 0.001 27 102 194 227 40 | mushroom 0.002 82 108 210 227 41 | mushroom 0.002 142 136 211 216 42 | cucumber 0.003 134 106 227 227 43 | mushroom 0.006 0 146 76 227 44 | mushroom 0.004 4 147 97 227 45 | cucumber 0.002 15 168 147 227 46 | eggplant 0.004 44 127 192 227 47 | mushroom 0.002 78 136 201 227 48 | cucumber 0.004 132 153 227 227 49 | cucumber 0.004 156 154 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/eggplant_5.txt: -------------------------------------------------------------------------------- 1 | mushroom 0.005 0 0 61 85 2 | cucumber 0.004 0 0 109 79 3 | mushroom 0.005 30 0 139 79 4 | eggplant 0.004 75 0 161 76 5 | eggplant 0.007 82 0 205 72 6 | cucumber 0.005 121 0 227 70 7 | cucumber 0.007 152 0 227 86 8 | cucumber 0.004 0 6 54 94 9 | cucumber 0.004 0 0 120 105 10 | eggplant 0.006 30 0 128 113 11 | mushroom 0.005 54 0 175 114 12 | cucumber 0.005 81 8 217 94 13 | eggplant 0.004 116 5 227 89 14 | mushroom 0.004 149 0 227 111 15 | eggplant 0.008 0 17 80 147 16 | mushroom 0.004 0 15 106 138 17 | eggplant 0.004 28 25 132 141 18 | eggplant 0.020 56 36 189 146 19 | eggplant 0.024 99 9 199 153 20 | mushroom 0.005 129 42 227 120 21 | eggplant 0.006 168 19 227 146 22 | cucumber 0.006 0 55 74 177 23 | eggplant 0.013 22 48 95 190 24 | eggplant 0.005 32 45 129 162 25 | eggplant 0.970 34 43 193 192 26 | eggplant 0.001 54 17 222 176 27 | mushroom 0.008 148 60 197 193 28 | mushroom 0.003 158 49 227 176 29 | mushroom 0.004 0 81 66 209 30 | eggplant 0.005 0 93 109 201 31 | eggplant 0.033 0 55 201 209 32 | eggplant 0.022 58 57 190 211 33 | mushroom 0.025 81 63 183 202 34 | mushroom 0.009 118 101 227 189 35 | eggplant 0.005 156 79 227 206 36 | eggplant 0.005 0 112 69 227 37 | mushroom 0.004 0 105 112 227 38 | eggplant 0.005 50 108 117 227 39 | mushroom 0.005 55 135 175 218 40 | mushroom 0.006 76 116 210 227 41 | cucumber 0.004 137 117 226 227 42 | mushroom 0.005 153 120 227 227 43 | cucumber 0.006 0 125 73 227 44 | cucumber 0.004 0 155 109 227 45 | cucumber 0.006 1 161 153 227 46 | mushroom 0.004 79 141 152 227 47 | mushroom 0.004 91 155 196 227 48 | eggplant 0.006 130 150 227 227 49 | cucumber 0.005 160 148 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/eggplant_51.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.005 0 0 65 79 2 | cucumber 0.003 2 0 104 81 3 | cucumber 0.003 32 0 138 83 4 | eggplant 0.004 68 0 154 74 5 | eggplant 0.006 81 0 207 71 6 | eggplant 0.004 125 0 225 72 7 | cucumber 0.006 158 0 227 86 8 | cucumber 0.003 0 2 55 99 9 | mushroom 0.003 0 0 113 115 10 | eggplant 0.006 35 0 127 115 11 | mushroom 0.004 62 0 170 109 12 | mushroom 0.004 80 7 220 97 13 | eggplant 0.004 112 8 227 85 14 | mushroom 0.003 147 0 227 107 15 | eggplant 0.005 0 16 84 145 16 | mushroom 0.004 0 17 105 137 17 | eggplant 0.004 26 28 134 140 18 | eggplant 0.036 19 41 186 150 19 | eggplant 0.032 48 19 215 171 20 | mushroom 0.003 130 20 227 140 21 | eggplant 0.005 161 19 227 148 22 | cucumber 0.005 0 56 68 174 23 | eggplant 0.009 23 24 80 227 24 | eggplant 0.003 27 42 122 167 25 | eggplant 0.989 50 60 186 149 26 | eggplant 0.001 48 16 227 178 27 | mushroom 0.006 147 60 193 193 28 | cucumber 0.002 160 51 227 174 29 | mushroom 0.003 0 83 66 209 30 | eggplant 0.004 0 89 113 205 31 | eggplant 0.008 0 55 202 209 32 | eggplant 0.006 65 62 179 199 33 | mushroom 0.014 84 72 179 192 34 | mushroom 0.006 121 105 227 186 35 | eggplant 0.003 155 80 227 205 36 | eggplant 0.004 0 113 64 227 37 | mushroom 0.003 0 99 111 227 38 | eggplant 0.004 0 120 164 227 39 | mushroom 0.005 54 130 172 217 40 | mushroom 0.004 79 111 207 227 41 | cucumber 0.004 138 127 222 227 42 | mushroom 0.004 153 115 227 227 43 | cucumber 0.005 0 151 72 227 44 | mushroom 0.004 0 159 108 227 45 | cucumber 0.004 3 159 151 227 46 | cucumber 0.003 76 145 153 227 47 | mushroom 0.003 83 140 202 227 48 | eggplant 0.004 137 154 222 227 49 | cucumber 0.003 162 145 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/eggplant_58.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.006 0 0 63 86 2 | cucumber 0.005 0 0 106 79 3 | mushroom 0.007 31 0 137 81 4 | eggplant 0.007 76 0 159 81 5 | eggplant 0.009 85 0 204 69 6 | eggplant 0.007 122 0 227 69 7 | cucumber 0.009 142 0 227 62 8 | cucumber 0.006 0 0 59 99 9 | cucumber 0.006 0 0 112 105 10 | eggplant 0.009 31 0 128 109 11 | eggplant 0.006 54 0 170 112 12 | cucumber 0.007 79 7 220 95 13 | eggplant 0.007 121 6 227 89 14 | mushroom 0.007 152 0 227 99 15 | eggplant 0.009 0 17 82 147 16 | mushroom 0.005 0 20 109 137 17 | eggplant 0.005 20 28 135 135 18 | eggplant 0.086 42 34 198 146 19 | eggplant 0.046 47 20 217 168 20 | mushroom 0.006 129 25 227 133 21 | eggplant 0.007 161 18 227 147 22 | cucumber 0.008 0 65 71 165 23 | eggplant 0.021 19 52 97 184 24 | eggplant 0.046 30 44 122 166 25 | eggplant 0.931 17 39 196 195 26 | eggplant 0.004 51 19 220 175 27 | mushroom 0.014 151 50 202 202 28 | cucumber 0.005 160 60 227 170 29 | mushroom 0.006 0 85 63 202 30 | cucumber 0.007 0 99 98 189 31 | eggplant 0.037 0 61 199 203 32 | eggplant 0.009 16 44 185 217 33 | mushroom 0.044 81 66 185 203 34 | mushroom 0.010 121 106 226 186 35 | eggplant 0.007 156 81 227 206 36 | eggplant 0.007 0 113 69 227 37 | eggplant 0.005 0 108 106 227 38 | cucumber 0.009 0 126 156 227 39 | mushroom 0.007 49 111 176 227 40 | mushroom 0.008 80 118 211 227 41 | cucumber 0.006 129 114 227 227 42 | mushroom 0.007 151 117 227 227 43 | cucumber 0.009 0 151 75 227 44 | cucumber 0.007 0 145 100 227 45 | cucumber 0.007 7 166 146 227 46 | cucumber 0.006 73 145 157 227 47 | mushroom 0.006 80 157 204 227 48 | eggplant 0.009 128 152 227 227 49 | cucumber 0.008 155 154 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/eggplant_59.txt: -------------------------------------------------------------------------------- 1 | cucumber 0.004 0 0 85 87 2 | cucumber 0.004 0 0 119 64 3 | cucumber 0.003 21 0 141 85 4 | eggplant 0.005 74 0 159 71 5 | eggplant 0.004 89 0 204 77 6 | mushroom 0.002 122 0 227 68 7 | cucumber 0.006 152 0 227 64 8 | cucumber 0.006 0 0 65 110 9 | mushroom 0.004 0 0 111 94 10 | eggplant 0.004 5 0 158 109 11 | mushroom 0.004 53 0 184 109 12 | cucumber 0.004 87 0 208 100 13 | eggplant 0.004 131 3 218 100 14 | mushroom 0.003 165 0 227 100 15 | mushroom 0.005 0 24 88 136 16 | eggplant 0.003 0 10 88 145 17 | eggplant 0.004 31 35 132 124 18 | eggplant 0.012 31 34 217 146 19 | eggplant 0.075 60 29 207 161 20 | cucumber 0.005 120 48 227 111 21 | eggplant 0.004 143 41 227 128 22 | cucumber 0.004 0 40 72 181 23 | eggplant 0.011 21 47 96 186 24 | eggplant 0.011 21 43 125 165 25 | eggplant 0.031 9 55 214 200 26 | eggplant 0.157 46 37 221 195 27 | mushroom 0.009 153 50 198 201 28 | cucumber 0.003 155 51 227 175 29 | eggplant 0.004 0 96 72 191 30 | eggplant 0.005 0 91 100 203 31 | eggplant 0.018 0 65 200 204 32 | eggplant 0.807 11 49 212 213 33 | mushroom 0.016 72 73 191 196 34 | mushroom 0.003 125 97 220 201 35 | eggplant 0.004 169 81 227 212 36 | eggplant 0.005 0 116 71 227 37 | mushroom 0.004 0 109 107 227 38 | cucumber 0.004 1 121 157 227 39 | mushroom 0.006 46 124 181 227 40 | mushroom 0.003 84 107 209 227 41 | cucumber 0.005 135 134 219 219 42 | cucumber 0.004 170 123 227 227 43 | cucumber 0.005 0 161 83 227 44 | mushroom 0.004 1 145 101 227 45 | cucumber 0.003 15 149 137 227 46 | mushroom 0.003 57 137 180 227 47 | eggplant 0.004 75 164 215 227 48 | eggplant 0.004 126 154 227 227 49 | cucumber 0.005 165 147 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/eggplant_6.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.004 0 0 65 83 2 | cucumber 0.003 6 0 100 81 3 | cucumber 0.003 19 0 143 67 4 | eggplant 0.004 62 0 171 78 5 | eggplant 0.005 76 0 209 75 6 | eggplant 0.004 125 0 226 70 7 | cucumber 0.005 153 0 227 78 8 | cucumber 0.004 0 0 61 99 9 | mushroom 0.003 0 0 114 108 10 | eggplant 0.006 32 0 131 118 11 | mushroom 0.004 63 0 169 101 12 | mushroom 0.004 80 0 216 101 13 | cucumber 0.005 118 6 227 89 14 | mushroom 0.003 146 0 227 97 15 | eggplant 0.004 0 21 92 138 16 | mushroom 0.004 0 16 105 140 17 | eggplant 0.004 29 32 130 138 18 | eggplant 0.021 17 46 188 145 19 | eggplant 0.061 58 20 205 171 20 | mushroom 0.003 123 40 227 125 21 | eggplant 0.005 156 23 227 144 22 | cucumber 0.004 0 51 64 177 23 | eggplant 0.008 27 24 77 227 24 | eggplant 0.004 28 42 113 172 25 | eggplant 0.912 32 78 213 129 26 | eggplant 0.002 48 8 227 185 27 | mushroom 0.006 153 45 200 207 28 | cucumber 0.002 156 54 227 174 29 | mushroom 0.003 0 88 66 203 30 | eggplant 0.004 0 87 113 209 31 | eggplant 0.004 0 56 203 210 32 | eggplant 0.011 55 70 194 191 33 | mushroom 0.013 87 73 176 192 34 | mushroom 0.004 130 104 217 189 35 | eggplant 0.003 161 86 227 202 36 | eggplant 0.004 0 127 88 227 37 | mushroom 0.003 0 102 108 227 38 | eggplant 0.004 0 119 159 227 39 | mushroom 0.006 47 128 179 218 40 | mushroom 0.004 88 114 197 227 41 | cucumber 0.004 136 126 222 227 42 | mushroom 0.003 146 115 227 227 43 | cucumber 0.006 0 145 77 227 44 | mushroom 0.004 0 160 102 227 45 | cucumber 0.004 11 159 143 227 46 | cucumber 0.003 74 153 155 227 47 | mushroom 0.003 89 139 195 227 48 | eggplant 0.004 138 154 224 227 49 | cucumber 0.003 158 142 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/eggplant_61.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.006 0 0 67 85 2 | cucumber 0.005 0 0 110 89 3 | mushroom 0.004 24 0 133 82 4 | eggplant 0.006 62 0 166 73 5 | eggplant 0.008 76 0 208 66 6 | mushroom 0.006 120 0 227 68 7 | cucumber 0.009 159 0 227 76 8 | cucumber 0.008 0 0 63 99 9 | mushroom 0.004 0 0 117 97 10 | eggplant 0.008 33 0 129 113 11 | mushroom 0.005 52 3 166 96 12 | mushroom 0.006 90 1 213 101 13 | eggplant 0.006 121 0 227 97 14 | eggplant 0.004 147 0 227 95 15 | eggplant 0.007 0 16 92 144 16 | mushroom 0.006 0 15 115 141 17 | eggplant 0.004 30 37 138 126 18 | eggplant 0.016 37 34 209 152 19 | eggplant 0.337 58 29 205 162 20 | mushroom 0.005 130 15 227 142 21 | mushroom 0.005 155 22 227 146 22 | cucumber 0.007 0 44 80 180 23 | eggplant 0.011 24 34 79 221 24 | eggplant 0.027 26 40 124 169 25 | eggplant 0.749 17 27 212 217 26 | eggplant 0.245 40 25 225 198 27 | mushroom 0.010 151 44 200 207 28 | cucumber 0.003 169 69 227 165 29 | eggplant 0.005 0 86 65 200 30 | eggplant 0.005 0 99 114 199 31 | eggplant 0.011 0 62 197 207 32 | eggplant 0.052 19 41 185 219 33 | mushroom 0.019 77 70 187 199 34 | mushroom 0.006 121 101 226 194 35 | eggplant 0.004 162 81 227 207 36 | eggplant 0.008 0 125 73 227 37 | mushroom 0.004 0 101 107 227 38 | cucumber 0.007 0 119 162 227 39 | mushroom 0.006 58 129 166 218 40 | mushroom 0.005 85 122 206 227 41 | cucumber 0.005 139 108 223 227 42 | mushroom 0.006 164 118 227 227 43 | cucumber 0.008 0 151 82 227 44 | mushroom 0.006 2 147 103 227 45 | cucumber 0.005 9 155 144 227 46 | mushroom 0.005 37 145 192 227 47 | mushroom 0.005 87 143 194 227 48 | eggplant 0.006 136 152 227 227 49 | cucumber 0.006 160 144 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/eggplant_8.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.005 0 0 71 84 2 | cucumber 0.004 0 0 105 85 3 | mushroom 0.005 31 0 136 80 4 | eggplant 0.004 70 0 168 76 5 | eggplant 0.005 82 0 206 70 6 | mushroom 0.004 123 0 227 75 7 | cucumber 0.006 146 0 227 57 8 | cucumber 0.005 0 0 59 106 9 | cucumber 0.004 0 0 108 112 10 | eggplant 0.005 30 0 129 109 11 | eggplant 0.004 58 0 163 96 12 | mushroom 0.005 78 10 225 93 13 | eggplant 0.004 123 5 227 88 14 | mushroom 0.004 145 0 227 100 15 | eggplant 0.005 0 17 79 146 16 | cucumber 0.004 0 24 116 131 17 | eggplant 0.003 15 32 135 133 18 | eggplant 0.108 33 35 181 155 19 | eggplant 0.023 49 14 215 174 20 | mushroom 0.003 131 27 227 126 21 | eggplant 0.004 164 20 227 142 22 | cucumber 0.007 0 64 64 166 23 | eggplant 0.014 15 51 104 189 24 | eggplant 0.079 21 45 118 168 25 | eggplant 0.913 5 45 195 181 26 | eggplant 0.002 49 11 223 183 27 | mushroom 0.011 149 53 193 199 28 | cucumber 0.004 163 52 227 178 29 | eggplant 0.004 0 79 62 207 30 | cucumber 0.004 0 96 113 198 31 | mushroom 0.014 0 61 203 202 32 | eggplant 0.001 7 36 193 224 33 | mushroom 0.018 80 66 184 200 34 | mushroom 0.005 122 106 227 187 35 | eggplant 0.004 149 86 227 205 36 | eggplant 0.003 0 113 69 227 37 | eggplant 0.003 0 112 103 227 38 | cucumber 0.007 0 127 159 227 39 | mushroom 0.005 45 106 177 227 40 | mushroom 0.005 91 120 201 227 41 | cucumber 0.003 130 111 227 227 42 | cucumber 0.004 151 116 227 227 43 | cucumber 0.005 0 139 69 227 44 | cucumber 0.004 0 152 108 227 45 | cucumber 0.003 7 159 142 227 46 | mushroom 0.004 66 148 161 227 47 | mushroom 0.004 86 143 199 227 48 | eggplant 0.005 127 159 227 227 49 | cucumber 0.005 155 157 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/eggplant_9.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.006 0 0 67 96 2 | cucumber 0.005 0 0 114 92 3 | mushroom 0.007 26 0 138 75 4 | cucumber 0.006 72 0 171 73 5 | eggplant 0.008 79 0 204 62 6 | mushroom 0.005 116 0 227 72 7 | cucumber 0.007 150 0 227 51 8 | mushroom 0.006 0 0 51 99 9 | cucumber 0.005 0 0 113 102 10 | cucumber 0.007 27 0 132 108 11 | eggplant 0.006 44 0 182 115 12 | cucumber 0.005 75 13 227 82 13 | eggplant 0.006 130 4 219 95 14 | mushroom 0.006 165 0 227 113 15 | eggplant 0.010 0 9 81 156 16 | eggplant 0.006 0 24 97 133 17 | eggplant 0.006 37 23 121 139 18 | eggplant 0.026 46 37 192 148 19 | eggplant 0.024 102 20 197 143 20 | eggplant 0.005 130 40 223 119 21 | eggplant 0.007 146 36 227 129 22 | cucumber 0.006 0 59 68 171 23 | eggplant 0.035 26 46 91 191 24 | eggplant 0.033 22 36 124 178 25 | eggplant 0.121 14 68 184 182 26 | eggplant 0.001 52 12 223 182 27 | mushroom 0.015 152 39 203 210 28 | eggplant 0.005 152 38 227 184 29 | eggplant 0.006 0 87 68 201 30 | eggplant 0.006 4 100 94 184 31 | eggplant 0.553 0 67 194 199 32 | eggplant 0.340 54 64 197 220 33 | mushroom 0.037 79 70 186 198 34 | mushroom 0.008 128 106 221 187 35 | eggplant 0.005 154 78 227 210 36 | eggplant 0.007 0 109 67 227 37 | eggplant 0.007 0 119 113 227 38 | eggplant 0.008 0 132 166 227 39 | mushroom 0.007 54 117 176 227 40 | mushroom 0.007 82 110 214 227 41 | cucumber 0.005 145 134 210 218 42 | eggplant 0.005 152 116 227 227 43 | cucumber 0.007 0 127 70 227 44 | cucumber 0.007 7 144 96 227 45 | cucumber 0.005 2 158 154 227 46 | mushroom 0.004 69 143 162 227 47 | mushroom 0.005 78 156 210 227 48 | eggplant 0.010 112 153 227 227 49 | cucumber 0.006 153 159 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_11.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.003 0 0 58 70 2 | cucumber 0.001 0 0 96 79 3 | mushroom 0.003 17 0 140 71 4 | eggplant 0.002 69 0 157 72 5 | eggplant 0.002 62 0 227 88 6 | cucumber 0.003 125 0 226 70 7 | cucumber 0.002 147 0 227 86 8 | cucumber 0.002 0 0 77 99 9 | mushroom 0.003 0 0 122 99 10 | cucumber 0.003 3 0 154 107 11 | cucumber 0.002 49 4 178 103 12 | cucumber 0.003 82 2 210 99 13 | eggplant 0.002 125 2 227 93 14 | cucumber 0.002 152 0 227 94 15 | eggplant 0.002 0 22 78 144 16 | cucumber 0.002 0 12 124 142 17 | mushroom 0.003 32 24 121 142 18 | eggplant 0.003 29 23 207 139 19 | eggplant 0.013 85 28 206 131 20 | mushroom 0.002 131 42 227 119 21 | cucumber 0.002 164 19 227 143 22 | cucumber 0.003 0 69 73 166 23 | eggplant 0.006 25 41 93 193 24 | mushroom 0.013 39 47 119 154 25 | mushroom 0.983 31 22 214 190 26 | mushroom 0.007 53 6 214 188 27 | mushroom 0.007 165 48 187 204 28 | mushroom 0.002 154 44 227 178 29 | eggplant 0.002 0 68 62 220 30 | eggplant 0.002 0 91 106 208 31 | mushroom 0.007 0 57 206 206 32 | mushroom 0.003 16 55 195 207 33 | mushroom 0.029 94 67 172 199 34 | cucumber 0.002 121 93 221 195 35 | eggplant 0.003 162 84 227 202 36 | cucumber 0.002 0 124 87 227 37 | cucumber 0.002 0 113 96 227 38 | eggplant 0.002 45 114 122 227 39 | mushroom 0.003 40 122 185 225 40 | cucumber 0.003 97 116 192 227 41 | mushroom 0.003 127 105 227 227 42 | mushroom 0.003 160 124 227 227 43 | cucumber 0.002 0 137 81 227 44 | cucumber 0.002 10 169 90 227 45 | eggplant 0.003 25 163 139 227 46 | mushroom 0.002 44 142 188 227 47 | mushroom 0.003 75 141 216 227 48 | eggplant 0.003 122 151 227 227 49 | cucumber 0.002 159 152 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_16.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.002 0 0 58 67 2 | cucumber 0.001 3 0 101 65 3 | mushroom 0.002 16 0 141 73 4 | eggplant 0.001 61 0 165 74 5 | eggplant 0.001 70 0 216 75 6 | cucumber 0.002 124 0 226 69 7 | mushroom 0.002 145 0 227 81 8 | cucumber 0.001 0 0 76 97 9 | mushroom 0.002 0 0 128 107 10 | cucumber 0.002 0 0 150 100 11 | eggplant 0.001 63 1 163 105 12 | mushroom 0.002 88 0 215 107 13 | eggplant 0.001 122 2 227 93 14 | cucumber 0.001 151 0 227 95 15 | eggplant 0.001 0 33 76 128 16 | cucumber 0.001 0 8 125 150 17 | eggplant 0.002 29 23 127 139 18 | eggplant 0.017 45 39 200 153 19 | eggplant 0.026 53 25 209 167 20 | mushroom 0.002 127 26 227 131 21 | mushroom 0.001 162 22 227 141 22 | cucumber 0.003 0 54 78 174 23 | eggplant 0.003 28 41 93 193 24 | mushroom 0.022 33 41 117 160 25 | mushroom 0.968 42 4 207 194 26 | mushroom 0.045 86 4 227 194 27 | mushroom 0.006 165 47 188 206 28 | mushroom 0.001 164 84 227 150 29 | eggplant 0.002 0 57 70 222 30 | eggplant 0.002 6 113 85 181 31 | mushroom 0.003 0 58 207 205 32 | mushroom 0.000 18 43 190 218 33 | mushroom 0.020 96 60 167 204 34 | cucumber 0.001 112 86 227 202 35 | eggplant 0.002 162 83 227 205 36 | cucumber 0.002 0 124 96 227 37 | cucumber 0.002 0 118 109 227 38 | eggplant 0.001 51 115 118 227 39 | mushroom 0.002 39 121 184 226 40 | cucumber 0.002 102 118 193 227 41 | mushroom 0.002 127 106 226 227 42 | cucumber 0.002 159 132 227 226 43 | mushroom 0.001 0 137 79 227 44 | mushroom 0.001 10 166 89 227 45 | eggplant 0.002 26 162 141 227 46 | cucumber 0.002 43 135 190 227 47 | mushroom 0.001 67 153 226 227 48 | eggplant 0.002 124 146 227 227 49 | cucumber 0.001 143 160 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_2.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.005 0 0 61 70 2 | eggplant 0.003 0 0 101 78 3 | mushroom 0.005 22 0 137 70 4 | eggplant 0.003 66 0 159 58 5 | eggplant 0.003 63 0 227 82 6 | cucumber 0.004 124 0 227 66 7 | cucumber 0.004 143 0 227 86 8 | cucumber 0.003 0 0 73 102 9 | cucumber 0.004 0 0 121 98 10 | cucumber 0.005 24 0 135 105 11 | eggplant 0.003 48 6 176 101 12 | cucumber 0.004 79 8 217 95 13 | eggplant 0.004 124 0 227 95 14 | mushroom 0.003 157 0 227 96 15 | eggplant 0.004 0 22 71 143 16 | cucumber 0.004 0 13 125 141 17 | mushroom 0.004 24 31 126 137 18 | eggplant 0.008 49 39 180 151 19 | eggplant 0.021 59 26 205 165 20 | mushroom 0.004 131 42 227 119 21 | cucumber 0.004 166 17 227 140 22 | cucumber 0.005 0 69 73 163 23 | eggplant 0.010 22 43 97 191 24 | mushroom 0.030 31 50 119 155 25 | mushroom 0.980 23 27 201 194 26 | mushroom 0.005 55 6 215 187 27 | mushroom 0.011 163 47 188 204 28 | mushroom 0.003 157 70 227 162 29 | eggplant 0.003 0 69 64 219 30 | eggplant 0.003 0 88 114 210 31 | mushroom 0.014 0 60 204 204 32 | mushroom 0.003 17 49 194 216 33 | mushroom 0.030 89 69 176 197 34 | cucumber 0.004 123 91 221 197 35 | eggplant 0.005 150 101 227 195 36 | cucumber 0.003 0 126 96 227 37 | cucumber 0.004 0 117 101 227 38 | eggplant 0.003 14 115 148 227 39 | mushroom 0.004 42 126 182 223 40 | mushroom 0.004 95 115 200 227 41 | eggplant 0.004 132 103 223 227 42 | mushroom 0.004 158 124 227 227 43 | cucumber 0.003 0 140 55 227 44 | cucumber 0.003 6 165 92 227 45 | eggplant 0.004 31 162 131 227 46 | mushroom 0.003 42 142 190 227 47 | mushroom 0.004 80 140 211 227 48 | eggplant 0.005 123 149 227 227 49 | cucumber 0.004 157 151 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_20.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.005 0 0 68 83 2 | cucumber 0.004 0 0 110 68 3 | mushroom 0.004 21 0 141 75 4 | eggplant 0.004 63 0 162 70 5 | eggplant 0.005 72 0 207 62 6 | cucumber 0.005 122 0 226 72 7 | cucumber 0.005 162 0 227 67 8 | cucumber 0.004 0 0 62 107 9 | mushroom 0.005 0 0 111 98 10 | eggplant 0.004 6 0 152 108 11 | eggplant 0.005 56 0 178 95 12 | cucumber 0.004 90 1 204 99 13 | cucumber 0.005 126 0 227 115 14 | cucumber 0.004 170 0 227 97 15 | eggplant 0.004 0 20 84 140 16 | eggplant 0.004 0 24 95 137 17 | eggplant 0.006 22 31 138 138 18 | eggplant 0.005 33 32 204 135 19 | eggplant 0.050 60 29 204 161 20 | mushroom 0.005 124 51 227 111 21 | mushroom 0.005 147 32 227 136 22 | cucumber 0.004 0 70 76 157 23 | eggplant 0.010 25 39 91 196 24 | mushroom 0.009 25 48 123 159 25 | mushroom 0.064 41 68 200 176 26 | mushroom 0.037 73 31 219 190 27 | mushroom 0.012 138 42 203 210 28 | mushroom 0.005 160 61 227 168 29 | eggplant 0.005 0 89 70 203 30 | eggplant 0.006 0 96 108 200 31 | mushroom 0.017 0 78 200 189 32 | mushroom 0.847 54 79 185 188 33 | mushroom 0.047 82 72 185 196 34 | eggplant 0.004 120 101 225 194 35 | eggplant 0.006 171 89 227 200 36 | eggplant 0.003 0 115 76 227 37 | mushroom 0.005 0 111 107 227 38 | eggplant 0.005 51 120 118 227 39 | mushroom 0.007 56 117 173 227 40 | cucumber 0.005 93 111 201 227 41 | mushroom 0.005 125 113 225 227 42 | cucumber 0.005 169 129 227 227 43 | eggplant 0.005 0 160 75 227 44 | mushroom 0.004 9 163 89 227 45 | cucumber 0.004 29 160 138 227 46 | mushroom 0.005 53 141 182 227 47 | eggplant 0.005 76 151 212 227 48 | eggplant 0.004 122 147 227 227 49 | cucumber 0.005 152 150 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_22.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.004 0 0 61 66 2 | eggplant 0.002 1 0 106 73 3 | mushroom 0.003 20 0 136 66 4 | eggplant 0.002 68 0 155 62 5 | eggplant 0.003 66 0 227 84 6 | cucumber 0.003 125 0 227 63 7 | cucumber 0.003 139 0 227 90 8 | cucumber 0.003 0 0 75 99 9 | cucumber 0.003 0 0 124 103 10 | eggplant 0.003 29 0 131 113 11 | cucumber 0.002 69 8 155 94 12 | mushroom 0.003 94 0 206 105 13 | eggplant 0.003 123 1 227 91 14 | cucumber 0.002 152 0 227 101 15 | eggplant 0.003 0 38 76 127 16 | cucumber 0.003 0 14 125 139 17 | eggplant 0.003 20 29 129 141 18 | eggplant 0.024 31 40 188 151 19 | eggplant 0.017 60 21 203 170 20 | mushroom 0.002 127 42 227 121 21 | cucumber 0.003 165 15 227 142 22 | cucumber 0.004 0 69 67 161 23 | eggplant 0.006 27 21 84 227 24 | mushroom 0.011 30 45 115 160 25 | mushroom 0.950 28 41 202 164 26 | mushroom 0.001 55 5 219 188 27 | mushroom 0.008 163 46 192 208 28 | mushroom 0.003 161 44 227 184 29 | mushroom 0.003 0 70 60 219 30 | eggplant 0.002 0 96 114 203 31 | mushroom 0.005 0 56 206 207 32 | mushroom 0.000 23 48 192 213 33 | mushroom 0.017 87 65 177 198 34 | cucumber 0.003 127 96 218 193 35 | eggplant 0.003 140 97 227 201 36 | cucumber 0.003 0 123 95 227 37 | cucumber 0.002 0 109 99 227 38 | eggplant 0.002 50 117 118 227 39 | mushroom 0.003 40 126 188 221 40 | mushroom 0.003 91 115 200 227 41 | mushroom 0.002 132 112 227 227 42 | mushroom 0.003 137 107 227 227 43 | cucumber 0.003 0 136 59 227 44 | mushroom 0.002 2 169 96 227 45 | eggplant 0.003 29 168 131 227 46 | mushroom 0.002 70 153 158 227 47 | mushroom 0.003 77 136 215 227 48 | eggplant 0.003 134 152 227 227 49 | cucumber 0.002 156 155 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_26.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.004 0 0 65 76 2 | cucumber 0.003 0 0 102 77 3 | mushroom 0.005 18 0 140 76 4 | eggplant 0.003 67 0 158 58 5 | eggplant 0.003 66 0 224 80 6 | cucumber 0.005 129 0 223 80 7 | cucumber 0.005 149 0 227 84 8 | cucumber 0.003 0 0 78 101 9 | cucumber 0.004 0 0 118 100 10 | cucumber 0.004 26 0 130 108 11 | cucumber 0.003 66 5 151 98 12 | cucumber 0.004 80 4 214 95 13 | eggplant 0.005 131 0 227 121 14 | cucumber 0.003 161 0 227 97 15 | eggplant 0.004 0 14 77 148 16 | cucumber 0.003 0 27 97 137 17 | mushroom 0.005 28 24 128 139 18 | mushroom 0.006 50 15 180 143 19 | eggplant 0.021 54 27 209 164 20 | mushroom 0.004 133 47 227 114 21 | cucumber 0.005 166 22 227 140 22 | cucumber 0.005 0 56 74 173 23 | eggplant 0.012 23 40 97 192 24 | mushroom 0.026 37 53 126 148 25 | mushroom 0.978 67 31 163 200 26 | mushroom 0.002 55 9 214 184 27 | mushroom 0.011 147 45 196 208 28 | mushroom 0.004 154 64 227 169 29 | mushroom 0.003 0 72 70 216 30 | eggplant 0.005 3 103 86 189 31 | mushroom 0.030 0 64 203 200 32 | mushroom 0.030 31 51 175 217 33 | mushroom 0.041 90 70 176 196 34 | cucumber 0.004 121 95 221 195 35 | eggplant 0.004 159 86 227 201 36 | cucumber 0.003 0 122 95 227 37 | cucumber 0.003 0 118 102 227 38 | eggplant 0.003 42 108 126 227 39 | mushroom 0.004 58 122 171 227 40 | mushroom 0.004 92 114 204 227 41 | eggplant 0.004 129 101 223 227 42 | mushroom 0.004 158 134 227 227 43 | cucumber 0.003 0 140 72 227 44 | cucumber 0.003 0 157 102 227 45 | eggplant 0.004 39 164 121 227 46 | mushroom 0.003 39 143 190 227 47 | mushroom 0.004 84 154 205 227 48 | eggplant 0.005 126 151 227 227 49 | cucumber 0.004 145 155 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_3.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.003 0 0 57 70 2 | eggplant 0.001 0 0 106 77 3 | mushroom 0.002 22 0 134 70 4 | eggplant 0.001 62 0 168 67 5 | eggplant 0.002 60 0 227 84 6 | cucumber 0.002 125 0 224 65 7 | cucumber 0.002 139 0 227 91 8 | cucumber 0.002 0 0 71 96 9 | mushroom 0.002 0 0 123 101 10 | cucumber 0.002 0 0 157 102 11 | cucumber 0.001 53 9 170 99 12 | mushroom 0.002 89 0 211 107 13 | eggplant 0.002 124 1 227 92 14 | cucumber 0.001 151 0 227 101 15 | eggplant 0.002 0 37 75 128 16 | cucumber 0.002 0 12 130 141 17 | eggplant 0.002 33 22 120 141 18 | eggplant 0.011 34 37 190 154 19 | eggplant 0.014 57 24 204 168 20 | mushroom 0.001 129 41 227 121 21 | cucumber 0.002 163 16 227 142 22 | cucumber 0.002 0 70 73 164 23 | eggplant 0.004 27 43 94 195 24 | mushroom 0.026 34 47 116 155 25 | mushroom 0.992 21 21 213 192 26 | mushroom 0.004 55 2 213 191 27 | mushroom 0.006 166 45 187 208 28 | mushroom 0.002 159 45 227 180 29 | eggplant 0.002 0 70 63 218 30 | eggplant 0.002 0 93 117 207 31 | mushroom 0.004 0 55 207 207 32 | mushroom 0.000 14 44 202 217 33 | mushroom 0.019 90 63 174 201 34 | cucumber 0.002 121 90 227 200 35 | eggplant 0.002 143 104 227 193 36 | cucumber 0.002 0 119 98 227 37 | cucumber 0.001 0 111 110 227 38 | mushroom 0.002 48 115 119 227 39 | mushroom 0.002 58 104 165 227 40 | mushroom 0.002 96 117 197 227 41 | mushroom 0.002 131 103 227 227 42 | mushroom 0.002 155 122 227 227 43 | cucumber 0.002 0 136 54 227 44 | cucumber 0.001 9 172 89 227 45 | eggplant 0.002 27 168 135 227 46 | mushroom 0.002 47 140 187 227 47 | mushroom 0.002 76 132 216 227 48 | eggplant 0.002 125 150 227 227 49 | cucumber 0.002 153 152 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_30.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.002 0 0 55 76 2 | eggplant 0.001 7 0 98 72 3 | mushroom 0.002 24 0 132 67 4 | eggplant 0.001 68 0 161 68 5 | eggplant 0.001 77 0 207 75 6 | cucumber 0.001 126 0 225 68 7 | cucumber 0.001 146 0 227 81 8 | cucumber 0.001 0 0 72 94 9 | mushroom 0.002 0 0 124 106 10 | cucumber 0.002 0 0 157 102 11 | eggplant 0.001 62 9 163 97 12 | mushroom 0.002 85 0 218 110 13 | eggplant 0.001 126 5 227 89 14 | cucumber 0.001 151 0 227 98 15 | eggplant 0.001 0 33 70 129 16 | cucumber 0.001 0 29 99 135 17 | eggplant 0.001 30 19 124 142 18 | eggplant 0.014 21 12 213 141 19 | eggplant 0.018 51 28 210 164 20 | mushroom 0.001 122 25 227 134 21 | mushroom 0.001 150 14 227 149 22 | cucumber 0.002 0 68 80 164 23 | eggplant 0.003 30 38 91 199 24 | mushroom 0.053 35 42 116 159 25 | mushroom 0.973 12 7 218 212 26 | mushroom 0.014 79 9 227 190 27 | mushroom 0.005 168 47 184 206 28 | cucumber 0.001 154 51 227 169 29 | eggplant 0.001 0 52 61 223 30 | eggplant 0.001 0 93 118 206 31 | mushroom 0.004 0 60 208 202 32 | mushroom 0.000 8 38 201 223 33 | mushroom 0.021 95 60 169 203 34 | cucumber 0.001 115 89 227 199 35 | eggplant 0.002 154 102 227 192 36 | cucumber 0.001 0 116 94 227 37 | cucumber 0.001 0 118 110 227 38 | mushroom 0.001 50 114 117 227 39 | mushroom 0.001 37 122 190 224 40 | cucumber 0.001 98 122 194 227 41 | mushroom 0.001 127 104 226 227 42 | cucumber 0.001 161 122 227 227 43 | mushroom 0.001 0 142 58 227 44 | mushroom 0.001 0 151 109 227 45 | eggplant 0.001 22 168 144 227 46 | eggplant 0.001 42 135 192 227 47 | mushroom 0.001 72 160 218 227 48 | eggplant 0.001 119 147 227 227 49 | cucumber 0.001 154 151 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_32.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.004 0 0 61 80 2 | cucumber 0.002 0 0 104 65 3 | mushroom 0.004 28 0 131 81 4 | eggplant 0.004 72 0 159 75 5 | eggplant 0.003 85 0 199 74 6 | cucumber 0.004 130 0 221 76 7 | cucumber 0.004 142 0 227 73 8 | mushroom 0.004 0 0 46 115 9 | mushroom 0.005 0 7 108 95 10 | mushroom 0.004 0 0 154 100 11 | eggplant 0.002 64 0 162 117 12 | mushroom 0.003 92 0 214 103 13 | eggplant 0.004 121 0 227 116 14 | cucumber 0.003 158 0 227 100 15 | eggplant 0.003 0 6 74 157 16 | cucumber 0.003 0 35 94 127 17 | mushroom 0.004 24 23 134 137 18 | mushroom 0.812 25 10 195 129 19 | eggplant 0.023 52 26 211 165 20 | cucumber 0.002 131 43 226 117 21 | mushroom 0.003 158 26 227 142 22 | cucumber 0.005 0 56 85 166 23 | eggplant 0.009 21 43 98 191 24 | mushroom 0.340 37 40 130 160 25 | mushroom 0.049 32 8 182 212 26 | mushroom 0.158 83 6 227 191 27 | mushroom 0.022 166 45 185 206 28 | cucumber 0.004 151 53 227 172 29 | eggplant 0.005 0 81 72 205 30 | eggplant 0.004 5 110 92 176 31 | mushroom 0.053 0 98 148 173 32 | mushroom 0.010 11 37 187 224 33 | mushroom 0.077 96 58 171 213 34 | cucumber 0.004 113 89 227 200 35 | eggplant 0.006 165 89 227 206 36 | eggplant 0.003 0 109 84 227 37 | eggplant 0.004 0 115 112 227 38 | cucumber 0.004 44 113 122 227 39 | mushroom 0.003 53 114 174 227 40 | cucumber 0.004 93 115 200 227 41 | mushroom 0.004 119 111 227 227 42 | cucumber 0.003 148 117 227 227 43 | mushroom 0.006 0 153 63 227 44 | cucumber 0.003 0 154 125 227 45 | eggplant 0.003 18 163 145 227 46 | mushroom 0.003 47 131 185 227 47 | eggplant 0.005 70 163 220 227 48 | eggplant 0.004 118 138 227 227 49 | cucumber 0.004 147 155 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_35.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.006 0 0 68 72 2 | cucumber 0.003 0 0 106 90 3 | mushroom 0.004 12 0 146 61 4 | eggplant 0.003 69 0 156 58 5 | eggplant 0.004 68 0 224 83 6 | cucumber 0.004 132 0 221 85 7 | mushroom 0.005 150 0 227 87 8 | cucumber 0.003 0 0 75 100 9 | mushroom 0.004 0 2 122 99 10 | cucumber 0.004 27 0 133 114 11 | cucumber 0.003 64 0 154 102 12 | mushroom 0.004 94 0 206 101 13 | mushroom 0.004 125 0 227 95 14 | mushroom 0.003 161 0 227 95 15 | eggplant 0.004 0 16 82 147 16 | cucumber 0.004 0 7 121 143 17 | eggplant 0.005 21 26 127 145 18 | eggplant 0.002 42 23 190 144 19 | eggplant 0.035 62 31 202 160 20 | mushroom 0.004 127 44 227 119 21 | eggplant 0.004 164 18 227 143 22 | cucumber 0.005 0 57 77 171 23 | eggplant 0.008 23 41 96 196 24 | mushroom 0.010 24 48 117 160 25 | mushroom 0.967 69 50 164 165 26 | mushroom 0.007 60 6 212 188 27 | mushroom 0.009 161 45 192 203 28 | mushroom 0.004 158 73 227 161 29 | mushroom 0.004 0 66 71 219 30 | eggplant 0.004 0 98 112 200 31 | mushroom 0.008 0 62 203 203 32 | mushroom 0.019 86 62 148 211 33 | mushroom 0.029 83 73 182 192 34 | cucumber 0.003 120 92 225 195 35 | eggplant 0.004 156 85 227 200 36 | mushroom 0.003 0 108 83 227 37 | mushroom 0.004 0 110 98 227 38 | eggplant 0.004 53 112 116 227 39 | mushroom 0.004 35 130 187 223 40 | mushroom 0.004 93 114 200 227 41 | cucumber 0.004 137 102 218 227 42 | cucumber 0.004 145 115 227 227 43 | cucumber 0.004 0 140 74 227 44 | mushroom 0.002 0 153 97 227 45 | cucumber 0.003 9 160 148 227 46 | mushroom 0.004 43 141 189 227 47 | mushroom 0.004 82 137 209 227 48 | eggplant 0.005 123 154 227 227 49 | cucumber 0.004 145 151 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_36.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.003 0 0 58 67 2 | cucumber 0.001 0 0 101 85 3 | mushroom 0.002 11 0 143 70 4 | eggplant 0.001 70 0 154 59 5 | eggplant 0.001 58 0 227 87 6 | cucumber 0.002 129 0 222 82 7 | mushroom 0.002 147 0 227 92 8 | cucumber 0.001 0 0 78 96 9 | mushroom 0.002 0 0 129 101 10 | cucumber 0.002 0 0 159 105 11 | cucumber 0.001 53 1 173 105 12 | mushroom 0.002 86 8 207 97 13 | eggplant 0.001 126 0 227 133 14 | cucumber 0.001 155 0 227 93 15 | eggplant 0.002 0 20 75 147 16 | mushroom 0.001 0 9 125 142 17 | eggplant 0.002 35 22 119 141 18 | eggplant 0.002 38 18 197 139 19 | eggplant 0.017 52 27 209 165 20 | mushroom 0.001 133 43 227 119 21 | cucumber 0.002 161 18 227 145 22 | cucumber 0.002 0 52 76 178 23 | eggplant 0.003 25 42 96 193 24 | mushroom 0.006 41 45 119 154 25 | mushroom 0.998 50 15 198 191 26 | mushroom 0.005 46 1 221 192 27 | mushroom 0.005 166 45 188 206 28 | mushroom 0.001 160 81 227 154 29 | mushroom 0.001 0 66 67 221 30 | eggplant 0.002 1 105 86 187 31 | mushroom 0.003 0 55 207 208 32 | mushroom 0.001 21 43 193 219 33 | mushroom 0.019 89 70 174 194 34 | cucumber 0.002 120 92 221 194 35 | eggplant 0.002 157 86 227 198 36 | cucumber 0.001 0 120 97 227 37 | cucumber 0.001 0 105 95 227 38 | eggplant 0.001 52 109 116 227 39 | mushroom 0.002 39 126 188 222 40 | cucumber 0.002 94 114 194 227 41 | mushroom 0.002 136 103 221 227 42 | mushroom 0.002 158 129 227 227 43 | eggplant 0.002 0 135 74 227 44 | cucumber 0.001 13 169 87 227 45 | eggplant 0.002 37 166 126 227 46 | mushroom 0.001 41 139 191 227 47 | mushroom 0.002 73 138 219 227 48 | eggplant 0.002 126 153 227 227 49 | cucumber 0.001 141 156 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_39.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.004 0 0 74 89 2 | mushroom 0.003 0 0 120 68 3 | mushroom 0.003 25 0 135 72 4 | mushroom 0.002 62 0 175 81 5 | eggplant 0.003 68 0 214 80 6 | cucumber 0.003 133 0 227 81 7 | cucumber 0.004 151 0 227 55 8 | mushroom 0.003 0 0 69 120 9 | cucumber 0.003 0 5 107 94 10 | mushroom 0.003 0 0 162 111 11 | eggplant 0.004 58 0 167 108 12 | cucumber 0.003 75 2 224 92 13 | eggplant 0.005 140 0 227 108 14 | eggplant 0.003 160 0 227 109 15 | eggplant 0.005 0 6 81 159 16 | eggplant 0.003 0 14 98 143 17 | mushroom 0.004 16 31 140 137 18 | mushroom 0.021 27 32 188 154 19 | eggplant 0.015 88 28 206 140 20 | cucumber 0.003 128 54 223 107 21 | cucumber 0.003 144 25 227 134 22 | cucumber 0.004 0 66 64 161 23 | eggplant 0.021 27 36 93 199 24 | mushroom 0.292 24 42 114 164 25 | mushroom 0.017 32 69 165 179 26 | mushroom 0.000 58 7 211 187 27 | mushroom 0.013 165 40 186 209 28 | eggplant 0.004 148 36 227 188 29 | cucumber 0.004 0 77 68 212 30 | eggplant 0.004 2 102 95 185 31 | mushroom 0.787 29 55 123 205 32 | mushroom 0.133 39 52 157 227 33 | mushroom 0.042 89 70 176 197 34 | mushroom 0.002 134 83 227 206 35 | eggplant 0.003 157 88 227 203 36 | eggplant 0.003 0 118 83 227 37 | eggplant 0.005 0 126 102 227 38 | eggplant 0.004 6 122 157 227 39 | mushroom 0.004 52 125 174 222 40 | cucumber 0.004 101 95 196 227 41 | eggplant 0.003 117 102 227 227 42 | cucumber 0.002 154 118 227 227 43 | cucumber 0.003 0 158 61 227 44 | cucumber 0.003 0 148 105 227 45 | cucumber 0.002 29 175 135 227 46 | mushroom 0.003 55 147 172 227 47 | mushroom 0.005 82 158 204 227 48 | eggplant 0.007 106 160 227 227 49 | cucumber 0.004 151 158 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_4.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.003 0 0 59 73 2 | eggplant 0.002 5 0 95 66 3 | mushroom 0.003 25 0 132 75 4 | eggplant 0.002 60 0 166 67 5 | eggplant 0.002 75 0 211 75 6 | cucumber 0.003 128 0 223 70 7 | mushroom 0.002 145 0 227 83 8 | cucumber 0.002 0 0 70 99 9 | mushroom 0.003 0 0 125 103 10 | cucumber 0.003 0 0 152 103 11 | eggplant 0.002 59 3 166 101 12 | cucumber 0.003 88 0 214 111 13 | eggplant 0.002 122 0 227 96 14 | cucumber 0.002 153 0 227 99 15 | eggplant 0.002 0 36 71 124 16 | cucumber 0.002 0 33 100 135 17 | eggplant 0.003 27 16 128 147 18 | mushroom 0.015 46 39 198 152 19 | eggplant 0.023 55 28 208 164 20 | mushroom 0.002 130 45 227 116 21 | cucumber 0.002 158 18 227 141 22 | cucumber 0.003 0 66 75 167 23 | eggplant 0.006 31 38 88 196 24 | mushroom 0.054 35 20 142 205 25 | mushroom 0.891 11 5 212 216 26 | mushroom 0.065 80 12 227 190 27 | mushroom 0.009 166 49 184 203 28 | cucumber 0.002 158 71 227 158 29 | eggplant 0.003 0 75 69 209 30 | eggplant 0.002 0 92 117 206 31 | mushroom 0.008 0 59 206 204 32 | mushroom 0.001 13 43 196 221 33 | mushroom 0.035 96 62 170 204 34 | cucumber 0.002 118 88 227 202 35 | eggplant 0.003 163 81 227 205 36 | cucumber 0.003 0 122 96 227 37 | cucumber 0.003 0 117 108 227 38 | cucumber 0.002 47 119 121 227 39 | mushroom 0.003 39 124 188 223 40 | cucumber 0.003 103 126 191 227 41 | mushroom 0.003 124 108 227 227 42 | cucumber 0.002 161 128 227 227 43 | eggplant 0.002 0 142 55 227 44 | cucumber 0.002 11 166 83 227 45 | eggplant 0.002 25 163 144 227 46 | cucumber 0.002 45 137 188 227 47 | mushroom 0.002 71 164 219 227 48 | eggplant 0.002 112 152 227 227 49 | cucumber 0.002 156 153 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_42.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.003 0 0 64 73 2 | eggplant 0.001 0 0 107 81 3 | mushroom 0.002 15 0 142 64 4 | eggplant 0.001 67 0 157 51 5 | eggplant 0.002 62 0 226 81 6 | cucumber 0.002 134 0 222 87 7 | mushroom 0.002 147 0 227 88 8 | cucumber 0.001 0 0 72 101 9 | cucumber 0.002 0 0 124 98 10 | cucumber 0.002 22 0 134 111 11 | cucumber 0.001 68 5 152 100 12 | mushroom 0.002 97 0 204 99 13 | eggplant 0.002 131 2 223 90 14 | mushroom 0.001 159 0 227 99 15 | eggplant 0.002 0 15 72 150 16 | cucumber 0.001 0 20 100 144 17 | eggplant 0.002 24 26 121 148 18 | eggplant 0.002 31 39 188 152 19 | eggplant 0.009 56 25 206 167 20 | mushroom 0.002 133 50 227 112 21 | cucumber 0.002 164 12 227 145 22 | cucumber 0.002 0 66 74 162 23 | eggplant 0.006 24 38 97 200 24 | mushroom 0.033 29 51 110 153 25 | mushroom 0.994 43 48 176 173 26 | mushroom 0.000 57 0 215 193 27 | mushroom 0.005 167 43 187 210 28 | mushroom 0.002 159 68 227 165 29 | mushroom 0.002 0 65 64 223 30 | eggplant 0.001 0 94 110 205 31 | mushroom 0.016 0 61 206 202 32 | mushroom 0.002 42 43 167 224 33 | mushroom 0.014 89 72 174 191 34 | mushroom 0.001 120 95 224 192 35 | eggplant 0.002 142 103 227 194 36 | cucumber 0.001 0 110 86 227 37 | cucumber 0.002 0 113 96 227 38 | eggplant 0.001 51 114 119 227 39 | mushroom 0.002 33 130 190 225 40 | mushroom 0.002 91 116 199 227 41 | eggplant 0.002 136 104 220 227 42 | cucumber 0.001 155 127 227 227 43 | cucumber 0.001 0 132 81 227 44 | cucumber 0.001 11 168 89 227 45 | eggplant 0.002 41 173 119 227 46 | mushroom 0.002 39 142 194 227 47 | mushroom 0.002 88 155 199 227 48 | eggplant 0.002 117 154 227 227 49 | cucumber 0.002 143 159 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_44.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.004 0 0 67 78 2 | cucumber 0.002 0 0 99 72 3 | mushroom 0.004 21 0 139 75 4 | eggplant 0.003 69 0 156 53 5 | eggplant 0.003 88 0 198 77 6 | cucumber 0.004 134 0 216 80 7 | cucumber 0.003 150 0 227 83 8 | cucumber 0.003 0 0 67 103 9 | mushroom 0.004 0 0 124 103 10 | cucumber 0.005 0 0 160 101 11 | eggplant 0.003 62 6 161 97 12 | cucumber 0.004 91 0 211 102 13 | mushroom 0.003 128 0 227 125 14 | cucumber 0.003 153 0 227 100 15 | eggplant 0.003 0 34 75 130 16 | cucumber 0.003 0 30 99 137 17 | eggplant 0.004 26 21 128 140 18 | mushroom 0.048 42 24 179 136 19 | eggplant 0.013 51 26 212 165 20 | mushroom 0.003 133 46 227 113 21 | cucumber 0.003 161 20 227 143 22 | cucumber 0.004 0 49 78 180 23 | eggplant 0.012 24 46 94 189 24 | mushroom 0.113 40 47 123 153 25 | mushroom 0.971 44 18 170 204 26 | mushroom 0.004 51 2 216 192 27 | mushroom 0.015 149 48 192 203 28 | mushroom 0.003 152 64 227 168 29 | eggplant 0.003 0 70 66 214 30 | eggplant 0.004 3 103 90 191 31 | mushroom 0.018 0 67 205 196 32 | mushroom 0.006 24 43 177 224 33 | mushroom 0.075 93 64 174 202 34 | cucumber 0.003 122 87 220 199 35 | eggplant 0.005 149 95 227 198 36 | cucumber 0.004 0 121 92 227 37 | cucumber 0.003 0 120 92 227 38 | eggplant 0.002 38 115 131 227 39 | mushroom 0.003 43 131 183 219 40 | cucumber 0.003 97 121 197 227 41 | mushroom 0.004 127 104 224 227 42 | cucumber 0.003 157 128 227 227 43 | cucumber 0.003 0 147 53 227 44 | cucumber 0.003 0 153 106 227 45 | eggplant 0.003 28 165 135 227 46 | mushroom 0.003 41 144 188 227 47 | mushroom 0.004 75 161 216 227 48 | eggplant 0.004 121 145 227 227 49 | cucumber 0.003 144 158 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_45.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.004 0 0 67 74 2 | eggplant 0.002 0 0 111 81 3 | mushroom 0.003 17 0 140 67 4 | eggplant 0.002 68 0 159 55 5 | eggplant 0.003 62 0 227 79 6 | cucumber 0.003 131 0 224 85 7 | mushroom 0.004 149 0 227 86 8 | cucumber 0.002 0 0 71 99 9 | cucumber 0.003 0 0 122 99 10 | cucumber 0.003 22 0 134 111 11 | cucumber 0.002 66 3 152 101 12 | cucumber 0.003 98 0 203 98 13 | mushroom 0.003 131 1 222 93 14 | mushroom 0.002 162 0 227 96 15 | eggplant 0.003 0 13 70 150 16 | cucumber 0.002 0 9 127 140 17 | mushroom 0.003 22 29 128 143 18 | eggplant 0.003 42 41 182 148 19 | eggplant 0.025 56 28 206 164 20 | mushroom 0.003 128 48 227 113 21 | cucumber 0.003 165 15 227 143 22 | cucumber 0.003 0 54 77 173 23 | eggplant 0.007 20 44 100 193 24 | mushroom 0.061 22 22 162 205 25 | mushroom 0.983 55 34 172 195 26 | mushroom 0.003 57 6 214 188 27 | mushroom 0.008 164 43 188 209 28 | mushroom 0.003 158 67 227 166 29 | mushroom 0.003 0 67 70 220 30 | eggplant 0.002 0 94 110 204 31 | mushroom 0.012 11 73 145 189 32 | mushroom 0.002 39 41 171 225 33 | mushroom 0.022 86 73 178 192 34 | cucumber 0.003 121 95 223 193 35 | eggplant 0.003 149 101 227 196 36 | cucumber 0.002 0 110 89 227 37 | cucumber 0.003 0 115 98 227 38 | eggplant 0.002 54 112 114 227 39 | mushroom 0.003 65 113 161 227 40 | mushroom 0.003 92 114 198 227 41 | eggplant 0.003 138 102 218 227 42 | cucumber 0.003 141 108 227 227 43 | cucumber 0.002 0 140 55 227 44 | cucumber 0.002 0 151 98 227 45 | eggplant 0.003 5 167 149 227 46 | mushroom 0.002 41 144 193 227 47 | mushroom 0.003 88 154 200 227 48 | eggplant 0.003 118 154 227 227 49 | cucumber 0.003 141 155 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_47.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.004 0 0 68 74 2 | eggplant 0.002 0 0 106 78 3 | mushroom 0.004 20 0 138 69 4 | eggplant 0.002 67 0 157 53 5 | eggplant 0.003 63 0 225 81 6 | cucumber 0.004 131 0 224 83 7 | cucumber 0.004 146 0 227 87 8 | cucumber 0.003 0 0 73 103 9 | cucumber 0.003 0 0 120 97 10 | cucumber 0.003 21 0 134 108 11 | cucumber 0.003 65 4 153 100 12 | cucumber 0.003 82 5 213 96 13 | eggplant 0.004 136 0 227 124 14 | cucumber 0.002 163 0 227 99 15 | eggplant 0.004 0 15 73 147 16 | cucumber 0.003 0 20 96 144 17 | mushroom 0.004 26 25 127 139 18 | mushroom 0.002 43 11 191 148 19 | eggplant 0.017 56 26 207 165 20 | mushroom 0.003 132 49 227 112 21 | cucumber 0.003 163 16 227 144 22 | cucumber 0.004 0 67 76 162 23 | eggplant 0.011 22 41 97 194 24 | mushroom 0.056 27 21 157 201 25 | mushroom 0.984 48 49 172 186 26 | mushroom 0.001 58 3 212 190 27 | mushroom 0.009 165 43 187 206 28 | mushroom 0.003 156 62 227 170 29 | cucumber 0.003 0 68 69 220 30 | eggplant 0.003 0 90 112 209 31 | mushroom 0.031 11 75 145 187 32 | mushroom 0.015 35 48 173 222 33 | mushroom 0.033 88 75 177 190 34 | mushroom 0.003 119 93 224 197 35 | eggplant 0.003 157 87 227 199 36 | cucumber 0.002 0 114 84 227 37 | cucumber 0.003 0 116 99 227 38 | eggplant 0.003 46 111 124 227 39 | mushroom 0.003 59 120 168 227 40 | mushroom 0.004 96 111 198 227 41 | eggplant 0.003 130 101 222 227 42 | cucumber 0.003 159 124 227 227 43 | cucumber 0.003 0 139 79 227 44 | cucumber 0.002 0 159 100 227 45 | eggplant 0.003 37 167 123 227 46 | mushroom 0.003 41 143 192 227 47 | mushroom 0.004 88 155 199 227 48 | eggplant 0.005 122 154 227 227 49 | cucumber 0.003 142 153 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_5.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.006 0 0 67 70 2 | cucumber 0.003 0 0 109 82 3 | mushroom 0.005 15 0 144 71 4 | eggplant 0.003 68 0 160 56 5 | eggplant 0.003 62 0 227 82 6 | cucumber 0.005 129 0 223 78 7 | mushroom 0.005 151 0 227 80 8 | cucumber 0.003 0 0 75 102 9 | mushroom 0.005 0 0 120 101 10 | cucumber 0.004 0 0 158 101 11 | eggplant 0.003 60 1 158 102 12 | mushroom 0.004 81 0 212 101 13 | mushroom 0.005 131 0 227 128 14 | cucumber 0.003 158 0 227 93 15 | eggplant 0.004 0 13 76 148 16 | cucumber 0.003 0 28 95 139 17 | mushroom 0.006 29 23 127 140 18 | mushroom 0.005 39 20 188 137 19 | eggplant 0.073 59 35 204 157 20 | mushroom 0.004 128 43 227 117 21 | mushroom 0.005 165 22 227 140 22 | eggplant 0.007 0 55 81 171 23 | eggplant 0.008 23 25 85 227 24 | mushroom 0.051 24 21 157 207 25 | mushroom 0.943 79 21 163 201 26 | mushroom 0.037 55 10 211 184 27 | mushroom 0.012 163 46 190 202 28 | mushroom 0.004 156 71 227 162 29 | mushroom 0.004 0 70 76 214 30 | eggplant 0.005 3 104 87 186 31 | mushroom 0.012 0 65 203 201 32 | mushroom 0.009 74 60 151 212 33 | mushroom 0.041 88 68 178 199 34 | cucumber 0.004 118 94 225 196 35 | eggplant 0.005 157 86 227 201 36 | cucumber 0.003 0 111 87 227 37 | cucumber 0.005 0 114 97 227 38 | eggplant 0.004 50 108 117 227 39 | mushroom 0.005 59 118 167 227 40 | mushroom 0.004 92 117 201 227 41 | mushroom 0.004 136 98 218 227 42 | cucumber 0.004 159 133 227 225 43 | cucumber 0.005 0 146 60 227 44 | mushroom 0.003 0 150 109 227 45 | eggplant 0.005 41 160 124 227 46 | mushroom 0.004 42 144 191 227 47 | mushroom 0.005 82 156 209 227 48 | eggplant 0.004 110 155 227 227 49 | cucumber 0.004 145 154 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_50.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.000 0 0 47 76 2 | cucumber 0.000 0 0 123 68 3 | eggplant 0.000 43 0 130 111 4 | eggplant 0.000 60 0 181 76 5 | eggplant 0.000 49 0 227 78 6 | mushroom 0.000 120 0 226 93 7 | cucumber 0.000 130 0 227 70 8 | cucumber 0.000 0 7 69 101 9 | mushroom 0.000 0 7 111 92 10 | mushroom 0.000 35 18 120 92 11 | eggplant 0.000 43 0 198 114 12 | mushroom 0.000 51 13 227 103 13 | eggplant 0.000 162 0 196 122 14 | eggplant 0.000 201 11 227 92 15 | eggplant 0.000 0 9 100 162 16 | mushroom 0.000 0 0 112 159 17 | mushroom 0.000 30 48 107 98 18 | mushroom 0.000 0 25 211 168 19 | eggplant 0.000 30 1 227 193 20 | mushroom 0.000 141 65 199 103 21 | mushroom 0.000 181 35 227 130 22 | cucumber 0.000 0 70 82 159 23 | eggplant 0.000 57 20 72 227 24 | mushroom 0.000 44 4 101 191 25 | eggplant 0.009 2 19 227 227 26 | eggplant 0.003 19 0 227 204 27 | mushroom 0.000 173 29 174 227 28 | eggplant 0.000 176 50 227 188 29 | eggplant 0.000 0 59 41 217 30 | eggplant 0.000 0 107 92 197 31 | mushroom 0.000 0 108 166 151 32 | mushroom 0.001 0 31 206 227 33 | mushroom 0.000 120 43 138 216 34 | mushroom 0.000 145 71 191 202 35 | eggplant 0.000 144 90 227 186 36 | eggplant 0.000 0 87 99 227 37 | eggplant 0.000 0 113 110 223 38 | cucumber 0.000 0 96 175 227 39 | mushroom 0.000 43 103 194 227 40 | eggplant 0.000 89 130 201 223 41 | mushroom 0.000 176 76 186 227 42 | cucumber 0.000 188 131 227 212 43 | eggplant 0.000 0 126 91 227 44 | mushroom 0.000 0 143 110 227 45 | cucumber 0.000 13 183 138 225 46 | mushroom 0.000 77 153 143 227 47 | eggplant 0.000 46 162 227 227 48 | mushroom 0.000 112 141 227 227 49 | cucumber 0.000 163 143 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_51.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.004 0 0 65 69 2 | cucumber 0.003 0 0 99 81 3 | mushroom 0.004 19 0 140 73 4 | eggplant 0.003 72 0 155 64 5 | eggplant 0.003 63 0 227 84 6 | cucumber 0.005 128 0 224 82 7 | mushroom 0.004 146 0 227 81 8 | cucumber 0.003 0 0 77 99 9 | mushroom 0.005 0 0 119 101 10 | cucumber 0.005 4 0 154 102 11 | eggplant 0.003 53 1 174 104 12 | mushroom 0.005 81 4 212 98 13 | eggplant 0.003 123 0 227 125 14 | cucumber 0.003 153 0 227 96 15 | eggplant 0.004 0 18 77 145 16 | cucumber 0.004 0 14 124 143 17 | eggplant 0.005 28 24 127 141 18 | eggplant 0.011 45 38 188 152 19 | eggplant 0.027 61 27 203 164 20 | mushroom 0.004 129 42 227 118 21 | cucumber 0.004 161 22 227 139 22 | cucumber 0.006 0 71 71 160 23 | eggplant 0.008 21 46 98 187 24 | mushroom 0.024 32 44 121 161 25 | mushroom 0.953 34 15 199 188 26 | mushroom 0.020 90 21 221 180 27 | mushroom 0.013 145 49 195 205 28 | mushroom 0.004 158 46 227 178 29 | eggplant 0.004 0 69 64 217 30 | eggplant 0.004 1 106 88 187 31 | mushroom 0.008 0 62 204 202 32 | mushroom 0.004 18 50 194 212 33 | mushroom 0.036 93 64 173 202 34 | cucumber 0.004 121 91 222 197 35 | eggplant 0.004 160 86 227 202 36 | cucumber 0.004 0 124 92 227 37 | cucumber 0.004 0 109 97 227 38 | eggplant 0.003 46 114 122 227 39 | mushroom 0.005 43 124 182 223 40 | mushroom 0.004 88 119 206 227 41 | mushroom 0.005 131 105 223 227 42 | mushroom 0.004 160 125 227 227 43 | cucumber 0.004 0 142 64 227 44 | cucumber 0.003 0 156 107 227 45 | eggplant 0.004 25 160 138 227 46 | mushroom 0.004 43 139 189 227 47 | mushroom 0.004 74 139 213 227 48 | eggplant 0.005 130 149 227 227 49 | cucumber 0.004 144 154 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_53.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.007 0 0 67 71 2 | cucumber 0.004 0 0 103 66 3 | mushroom 0.007 20 0 137 73 4 | eggplant 0.005 58 0 170 68 5 | eggplant 0.004 82 0 203 75 6 | cucumber 0.006 127 0 225 83 7 | cucumber 0.006 133 0 227 67 8 | cucumber 0.005 0 0 72 104 9 | cucumber 0.006 0 0 121 107 10 | cucumber 0.007 4 0 150 100 11 | eggplant 0.004 55 0 173 104 12 | cucumber 0.006 87 0 208 101 13 | eggplant 0.005 124 0 227 95 14 | mushroom 0.004 157 0 227 92 15 | eggplant 0.005 0 34 75 131 16 | cucumber 0.005 0 29 104 138 17 | eggplant 0.007 30 23 127 142 18 | eggplant 0.023 62 41 179 148 19 | eggplant 0.024 82 26 214 134 20 | mushroom 0.005 129 41 227 119 21 | cucumber 0.005 160 24 227 138 22 | cucumber 0.007 0 57 75 170 23 | eggplant 0.013 20 40 97 192 24 | mushroom 0.029 32 22 149 198 25 | mushroom 0.878 34 23 191 202 26 | mushroom 0.027 65 16 201 177 27 | mushroom 0.019 161 50 193 197 28 | mushroom 0.005 159 71 227 159 29 | mushroom 0.005 0 74 71 211 30 | eggplant 0.006 0 94 113 202 31 | mushroom 0.018 0 68 201 196 32 | mushroom 0.010 22 61 186 208 33 | mushroom 0.078 91 69 177 198 34 | cucumber 0.005 117 90 227 196 35 | eggplant 0.007 165 81 227 206 36 | cucumber 0.005 0 110 73 227 37 | cucumber 0.006 0 118 111 227 38 | eggplant 0.005 46 118 121 227 39 | mushroom 0.006 38 123 185 227 40 | mushroom 0.006 88 114 207 227 41 | mushroom 0.007 122 103 227 227 42 | cucumber 0.005 144 112 227 227 43 | eggplant 0.005 0 147 62 227 44 | mushroom 0.005 6 164 91 227 45 | eggplant 0.005 9 168 141 227 46 | mushroom 0.004 46 143 185 227 47 | mushroom 0.005 74 155 214 227 48 | eggplant 0.006 119 150 227 227 49 | cucumber 0.005 155 156 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_54.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.002 0 0 57 73 2 | eggplant 0.002 3 0 97 70 3 | mushroom 0.003 29 0 129 71 4 | eggplant 0.002 69 0 157 76 5 | eggplant 0.002 63 0 225 85 6 | cucumber 0.002 126 0 224 70 7 | mushroom 0.002 140 0 227 72 8 | cucumber 0.002 0 0 67 97 9 | mushroom 0.002 0 0 118 101 10 | eggplant 0.002 1 0 154 109 11 | eggplant 0.001 59 2 168 102 12 | cucumber 0.002 85 0 213 104 13 | eggplant 0.002 131 6 224 92 14 | mushroom 0.002 154 0 227 97 15 | eggplant 0.002 0 34 69 127 16 | cucumber 0.002 0 23 105 141 17 | mushroom 0.002 26 22 128 144 18 | cucumber 0.042 29 34 203 157 19 | eggplant 0.018 53 32 209 160 20 | mushroom 0.002 127 43 227 114 21 | cucumber 0.001 153 26 227 134 22 | cucumber 0.002 0 64 70 168 23 | eggplant 0.004 28 37 90 198 24 | mushroom 0.066 31 46 119 157 25 | mushroom 0.878 15 23 215 222 26 | mushroom 0.034 58 8 204 186 27 | mushroom 0.007 167 48 183 204 28 | cucumber 0.002 151 49 227 176 29 | eggplant 0.002 0 79 65 209 30 | eggplant 0.002 0 93 104 206 31 | mushroom 0.008 0 60 206 202 32 | mushroom 0.002 10 46 198 217 33 | mushroom 0.035 92 60 174 206 34 | cucumber 0.002 123 89 227 203 35 | eggplant 0.003 148 101 227 192 36 | cucumber 0.002 0 119 93 227 37 | cucumber 0.002 0 119 118 227 38 | eggplant 0.002 44 117 120 227 39 | mushroom 0.002 36 119 190 227 40 | cucumber 0.002 94 119 198 227 41 | mushroom 0.002 119 105 227 227 42 | cucumber 0.002 166 119 227 227 43 | eggplant 0.002 0 145 62 227 44 | mushroom 0.002 12 167 86 227 45 | cucumber 0.002 22 165 146 227 46 | mushroom 0.002 49 143 188 227 47 | eggplant 0.002 73 161 214 227 48 | eggplant 0.002 113 152 227 227 49 | cucumber 0.002 154 157 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_55.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.004 0 0 61 75 2 | cucumber 0.001 0 0 99 81 3 | mushroom 0.003 14 0 141 71 4 | cucumber 0.002 69 0 154 56 5 | eggplant 0.002 78 0 207 68 6 | cucumber 0.003 129 0 222 76 7 | cucumber 0.003 148 0 227 87 8 | cucumber 0.002 0 0 73 96 9 | cucumber 0.003 0 0 122 99 10 | cucumber 0.003 25 0 133 108 11 | cucumber 0.002 69 2 149 100 12 | cucumber 0.003 86 8 208 94 13 | eggplant 0.003 131 0 227 125 14 | cucumber 0.001 141 0 227 105 15 | eggplant 0.003 0 18 78 146 16 | mushroom 0.002 0 26 100 142 17 | eggplant 0.003 30 25 125 139 18 | eggplant 0.001 45 26 191 139 19 | eggplant 0.015 50 28 212 163 20 | mushroom 0.003 132 45 227 115 21 | cucumber 0.003 165 17 227 145 22 | eggplant 0.003 0 54 75 177 23 | eggplant 0.007 24 41 95 192 24 | mushroom 0.009 38 52 123 148 25 | mushroom 0.991 56 30 188 200 26 | mushroom 0.002 55 7 214 187 27 | mushroom 0.007 164 43 188 206 28 | mushroom 0.002 157 42 227 178 29 | mushroom 0.002 0 69 68 218 30 | eggplant 0.003 0 102 90 190 31 | mushroom 0.012 0 58 205 205 32 | mushroom 0.013 26 51 180 215 33 | mushroom 0.035 91 71 174 194 34 | mushroom 0.003 116 92 224 195 35 | eggplant 0.003 159 83 227 201 36 | cucumber 0.002 0 119 94 227 37 | cucumber 0.002 0 109 99 227 38 | eggplant 0.002 47 108 123 227 39 | mushroom 0.003 39 129 185 226 40 | cucumber 0.003 90 113 198 227 41 | cucumber 0.003 133 102 222 227 42 | mushroom 0.003 163 129 227 227 43 | cucumber 0.003 0 134 75 227 44 | cucumber 0.002 8 165 93 227 45 | eggplant 0.003 39 163 122 227 46 | mushroom 0.002 41 143 189 227 47 | mushroom 0.002 76 146 214 227 48 | eggplant 0.003 121 155 227 227 49 | cucumber 0.002 144 153 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_56.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.005 0 0 68 74 2 | eggplant 0.003 0 0 106 79 3 | mushroom 0.004 19 0 137 70 4 | eggplant 0.003 66 0 159 57 5 | eggplant 0.003 65 0 223 80 6 | cucumber 0.004 130 0 227 84 7 | cucumber 0.004 145 0 227 88 8 | cucumber 0.003 0 0 72 102 9 | cucumber 0.004 0 0 120 98 10 | cucumber 0.004 20 0 136 110 11 | cucumber 0.003 67 6 152 98 12 | cucumber 0.004 84 7 214 96 13 | eggplant 0.004 127 0 226 96 14 | cucumber 0.003 162 0 227 98 15 | eggplant 0.004 0 20 73 143 16 | cucumber 0.003 0 17 94 148 17 | eggplant 0.004 28 26 124 137 18 | eggplant 0.003 40 43 180 146 19 | eggplant 0.021 58 25 205 166 20 | mushroom 0.004 130 49 227 114 21 | cucumber 0.004 165 19 227 139 22 | cucumber 0.005 0 64 77 164 23 | eggplant 0.011 20 44 100 193 24 | mushroom 0.030 24 21 161 196 25 | mushroom 0.987 42 47 177 190 26 | mushroom 0.001 59 5 214 188 27 | mushroom 0.009 163 43 188 208 28 | mushroom 0.003 159 62 227 170 29 | mushroom 0.003 0 71 67 218 30 | eggplant 0.003 0 89 112 209 31 | mushroom 0.022 8 75 148 188 32 | mushroom 0.007 29 46 180 220 33 | mushroom 0.026 88 75 176 191 34 | mushroom 0.004 122 92 222 196 35 | eggplant 0.004 146 101 227 194 36 | cucumber 0.003 0 116 85 227 37 | cucumber 0.004 0 115 103 227 38 | eggplant 0.003 47 112 123 227 39 | mushroom 0.004 58 116 170 227 40 | mushroom 0.004 95 114 197 227 41 | eggplant 0.004 135 102 221 227 42 | cucumber 0.003 159 125 227 227 43 | cucumber 0.003 0 142 56 227 44 | cucumber 0.003 0 157 98 227 45 | eggplant 0.003 38 167 121 227 46 | mushroom 0.003 70 146 159 227 47 | mushroom 0.003 93 157 195 227 48 | eggplant 0.005 123 154 227 227 49 | cucumber 0.004 161 152 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_57.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.005 0 0 65 70 2 | cucumber 0.003 0 0 108 75 3 | mushroom 0.005 25 0 133 71 4 | eggplant 0.004 58 0 174 71 5 | eggplant 0.004 78 0 207 73 6 | cucumber 0.004 124 0 227 63 7 | mushroom 0.004 141 0 227 84 8 | cucumber 0.003 0 0 72 99 9 | cucumber 0.005 0 0 116 107 10 | cucumber 0.005 2 0 153 93 11 | eggplant 0.003 60 8 166 98 12 | mushroom 0.004 94 0 206 109 13 | eggplant 0.004 126 0 227 96 14 | cucumber 0.003 154 0 227 101 15 | eggplant 0.004 0 20 69 144 16 | cucumber 0.004 0 24 105 140 17 | eggplant 0.004 32 24 123 138 18 | eggplant 0.045 39 39 188 151 19 | eggplant 0.022 60 18 203 173 20 | mushroom 0.003 130 40 227 123 21 | cucumber 0.004 164 14 227 142 22 | cucumber 0.006 0 69 71 161 23 | eggplant 0.009 20 40 99 196 24 | mushroom 0.045 26 44 123 161 25 | mushroom 0.928 13 20 199 194 26 | mushroom 0.007 56 7 213 187 27 | mushroom 0.013 162 50 190 202 28 | mushroom 0.004 153 51 227 175 29 | eggplant 0.004 0 73 64 214 30 | eggplant 0.004 0 96 118 201 31 | mushroom 0.016 5 91 149 174 32 | mushroom 0.001 12 45 202 217 33 | mushroom 0.037 88 66 177 199 34 | cucumber 0.004 122 86 227 202 35 | eggplant 0.006 148 98 227 198 36 | cucumber 0.003 0 111 80 227 37 | cucumber 0.003 0 110 110 227 38 | mushroom 0.003 17 112 148 227 39 | mushroom 0.004 42 127 186 224 40 | mushroom 0.004 97 111 197 227 41 | eggplant 0.003 129 108 227 227 42 | cucumber 0.004 139 106 227 227 43 | cucumber 0.004 0 138 55 227 44 | cucumber 0.003 0 149 108 227 45 | eggplant 0.004 28 166 135 227 46 | mushroom 0.004 45 137 188 227 47 | mushroom 0.004 78 159 211 227 48 | eggplant 0.004 124 147 227 227 49 | cucumber 0.004 148 156 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_58.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.003 0 0 57 84 2 | cucumber 0.002 0 0 104 72 3 | mushroom 0.003 22 0 137 92 4 | eggplant 0.003 60 0 167 65 5 | eggplant 0.002 73 0 207 77 6 | cucumber 0.003 127 0 223 80 7 | mushroom 0.003 148 0 227 71 8 | cucumber 0.003 0 0 50 123 9 | mushroom 0.004 0 11 111 88 10 | cucumber 0.003 0 0 152 98 11 | eggplant 0.001 74 0 154 115 12 | mushroom 0.003 97 0 210 110 13 | eggplant 0.002 122 1 227 104 14 | mushroom 0.002 155 1 227 96 15 | eggplant 0.002 0 32 68 125 16 | cucumber 0.002 0 13 120 155 17 | mushroom 0.004 26 15 132 146 18 | mushroom 0.349 31 28 184 131 19 | eggplant 0.035 61 26 202 165 20 | mushroom 0.002 125 39 227 123 21 | mushroom 0.002 157 6 227 152 22 | cucumber 0.004 0 55 90 168 23 | eggplant 0.005 30 39 89 191 24 | mushroom 0.069 32 22 144 210 25 | mushroom 0.015 32 3 185 216 26 | mushroom 0.926 86 0 227 197 27 | mushroom 0.015 167 48 181 202 28 | eggplant 0.004 149 63 227 158 29 | eggplant 0.003 0 81 79 199 30 | eggplant 0.003 3 114 86 172 31 | mushroom 0.019 0 106 149 165 32 | mushroom 0.004 3 43 198 220 33 | mushroom 0.060 97 56 169 215 34 | cucumber 0.002 105 94 227 200 35 | eggplant 0.005 168 94 227 197 36 | eggplant 0.002 0 108 85 227 37 | cucumber 0.003 0 120 113 227 38 | eggplant 0.003 40 119 124 227 39 | mushroom 0.003 53 112 175 227 40 | cucumber 0.002 95 114 197 227 41 | mushroom 0.003 122 112 225 227 42 | cucumber 0.003 163 140 227 215 43 | mushroom 0.004 0 155 64 227 44 | mushroom 0.002 0 149 128 227 45 | eggplant 0.002 20 157 145 227 46 | mushroom 0.002 47 136 184 227 47 | eggplant 0.004 66 169 226 227 48 | eggplant 0.002 122 141 227 227 49 | cucumber 0.003 148 150 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_59.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.005 0 0 59 78 2 | cucumber 0.003 0 0 104 68 3 | mushroom 0.006 24 0 135 82 4 | eggplant 0.004 67 0 167 71 5 | eggplant 0.004 66 0 222 76 6 | cucumber 0.005 120 0 227 80 7 | mushroom 0.005 141 0 227 70 8 | cucumber 0.004 0 0 58 110 9 | mushroom 0.005 0 10 107 85 10 | cucumber 0.005 0 0 159 103 11 | eggplant 0.004 58 0 171 119 12 | cucumber 0.004 81 0 217 102 13 | cucumber 0.004 126 0 226 104 14 | mushroom 0.003 163 0 227 96 15 | eggplant 0.005 0 28 72 137 16 | cucumber 0.004 0 36 97 130 17 | eggplant 0.008 25 15 136 146 18 | mushroom 0.220 97 60 155 123 19 | eggplant 0.018 94 20 208 142 20 | mushroom 0.004 134 46 224 114 21 | mushroom 0.004 153 9 227 148 22 | cucumber 0.006 0 58 84 162 23 | eggplant 0.015 22 45 94 186 24 | mushroom 0.067 37 46 136 155 25 | mushroom 0.051 49 33 183 216 26 | mushroom 0.080 58 10 204 184 27 | mushroom 0.023 170 42 184 203 28 | cucumber 0.005 158 50 227 174 29 | mushroom 0.004 0 75 72 207 30 | eggplant 0.006 4 103 90 187 31 | mushroom 0.128 8 91 139 179 32 | mushroom 0.085 11 59 186 218 33 | mushroom 0.542 94 66 176 207 34 | cucumber 0.004 125 89 218 205 35 | eggplant 0.009 169 87 227 203 36 | eggplant 0.004 0 112 75 227 37 | cucumber 0.005 0 117 105 227 38 | eggplant 0.005 39 112 129 227 39 | mushroom 0.005 57 113 170 227 40 | cucumber 0.007 93 113 203 227 41 | eggplant 0.007 126 113 225 227 42 | cucumber 0.005 158 126 227 227 43 | eggplant 0.004 0 166 59 227 44 | cucumber 0.004 0 148 121 227 45 | cucumber 0.003 0 158 151 227 46 | mushroom 0.005 67 147 164 227 47 | mushroom 0.008 75 166 217 227 48 | eggplant 0.004 112 152 227 227 49 | cucumber 0.006 156 156 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_7.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.004 0 0 66 70 2 | cucumber 0.002 0 0 98 86 3 | mushroom 0.004 19 0 139 70 4 | eggplant 0.003 70 0 155 60 5 | eggplant 0.003 60 0 227 84 6 | cucumber 0.004 129 0 223 80 7 | cucumber 0.004 149 0 227 85 8 | cucumber 0.003 0 0 72 100 9 | mushroom 0.004 0 1 120 96 10 | cucumber 0.004 26 0 132 107 11 | eggplant 0.002 67 3 150 98 12 | mushroom 0.004 85 5 209 98 13 | eggplant 0.003 128 0 227 124 14 | cucumber 0.003 157 0 227 96 15 | eggplant 0.003 0 17 77 146 16 | cucumber 0.003 0 24 97 140 17 | eggplant 0.005 27 26 125 139 18 | eggplant 0.002 40 13 197 144 19 | eggplant 0.022 60 29 204 162 20 | mushroom 0.003 131 44 227 116 21 | cucumber 0.003 162 19 227 142 22 | cucumber 0.004 0 69 76 162 23 | eggplant 0.009 22 45 97 189 24 | mushroom 0.023 35 49 117 154 25 | mushroom 0.990 44 21 186 188 26 | mushroom 0.004 51 3 219 190 27 | mushroom 0.009 162 45 190 204 28 | mushroom 0.003 156 74 227 160 29 | eggplant 0.003 0 66 64 219 30 | eggplant 0.003 2 105 87 190 31 | mushroom 0.009 0 64 204 200 32 | mushroom 0.009 65 65 161 202 33 | mushroom 0.032 90 69 176 195 34 | cucumber 0.003 119 90 223 197 35 | eggplant 0.003 150 101 227 193 36 | cucumber 0.003 0 122 95 227 37 | cucumber 0.003 0 109 97 227 38 | eggplant 0.003 48 110 122 227 39 | mushroom 0.004 41 124 182 225 40 | mushroom 0.003 91 121 203 227 41 | eggplant 0.004 134 100 219 227 42 | mushroom 0.004 162 129 227 227 43 | cucumber 0.003 0 141 78 227 44 | cucumber 0.003 8 166 91 227 45 | eggplant 0.004 32 164 129 227 46 | mushroom 0.003 42 142 189 227 47 | mushroom 0.003 77 140 213 227 48 | eggplant 0.005 127 151 227 227 49 | cucumber 0.003 141 152 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_8.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.005 0 0 62 73 2 | eggplant 0.002 0 0 102 75 3 | mushroom 0.005 25 0 133 72 4 | eggplant 0.003 65 0 158 60 5 | eggplant 0.003 64 0 225 83 6 | cucumber 0.004 125 0 227 65 7 | cucumber 0.004 144 0 227 85 8 | cucumber 0.003 0 0 73 97 9 | cucumber 0.004 0 0 119 99 10 | cucumber 0.005 25 0 135 105 11 | cucumber 0.003 50 7 175 98 12 | mushroom 0.004 80 7 214 96 13 | eggplant 0.004 125 0 227 95 14 | cucumber 0.003 152 0 227 99 15 | eggplant 0.004 0 34 73 131 16 | cucumber 0.003 0 20 104 145 17 | eggplant 0.004 31 21 123 143 18 | eggplant 0.013 31 35 189 155 19 | eggplant 0.014 84 30 206 131 20 | mushroom 0.003 130 42 227 120 21 | cucumber 0.004 162 17 227 142 22 | cucumber 0.005 0 65 77 167 23 | eggplant 0.010 21 46 97 190 24 | mushroom 0.032 35 51 119 152 25 | mushroom 0.981 18 33 207 190 26 | mushroom 0.003 56 5 214 189 27 | mushroom 0.010 164 48 189 203 28 | cucumber 0.004 155 46 227 179 29 | eggplant 0.003 0 73 61 216 30 | eggplant 0.004 0 90 110 209 31 | mushroom 0.015 0 59 205 204 32 | mushroom 0.002 11 52 198 211 33 | mushroom 0.042 92 68 175 198 34 | cucumber 0.004 124 92 221 195 35 | eggplant 0.005 146 102 227 191 36 | cucumber 0.003 0 122 91 227 37 | cucumber 0.003 0 115 102 227 38 | eggplant 0.003 43 116 125 227 39 | mushroom 0.005 41 126 185 222 40 | mushroom 0.004 93 118 201 227 41 | mushroom 0.004 130 106 225 227 42 | mushroom 0.004 156 119 227 227 43 | cucumber 0.003 0 139 58 227 44 | cucumber 0.003 9 166 88 227 45 | eggplant 0.003 24 165 137 227 46 | mushroom 0.004 45 141 186 227 47 | mushroom 0.004 77 137 215 227 48 | eggplant 0.004 122 153 227 227 49 | cucumber 0.004 155 155 227 227 -------------------------------------------------------------------------------- /py/input/detection-results/mushroom_9.txt: -------------------------------------------------------------------------------- 1 | eggplant 0.004 0 0 68 71 2 | cucumber 0.002 0 0 104 81 3 | mushroom 0.003 13 0 145 63 4 | eggplant 0.002 69 0 155 58 5 | eggplant 0.003 65 0 225 80 6 | cucumber 0.004 137 0 217 87 7 | cucumber 0.004 151 0 227 88 8 | cucumber 0.002 0 0 73 104 9 | mushroom 0.003 0 0 122 99 10 | cucumber 0.003 24 0 132 111 11 | cucumber 0.003 66 2 155 102 12 | mushroom 0.003 95 0 207 97 13 | eggplant 0.003 131 0 227 121 14 | cucumber 0.002 158 0 227 99 15 | eggplant 0.003 0 10 76 152 16 | cucumber 0.003 0 12 122 138 17 | eggplant 0.003 25 31 128 132 18 | eggplant 0.004 40 14 194 147 19 | eggplant 0.013 58 21 205 170 20 | mushroom 0.003 131 48 227 115 21 | cucumber 0.003 164 16 227 144 22 | cucumber 0.004 0 71 70 158 23 | eggplant 0.009 22 43 97 195 24 | mushroom 0.036 27 48 114 158 25 | mushroom 0.989 62 43 157 163 26 | mushroom 0.000 56 3 219 191 27 | mushroom 0.008 163 43 192 208 28 | mushroom 0.003 157 68 227 165 29 | eggplant 0.003 0 67 65 220 30 | eggplant 0.003 3 103 84 190 31 | mushroom 0.020 0 65 205 198 32 | mushroom 0.004 81 57 158 217 33 | mushroom 0.021 87 71 178 192 34 | mushroom 0.003 119 91 225 195 35 | eggplant 0.003 144 95 227 199 36 | cucumber 0.002 0 110 82 227 37 | cucumber 0.003 0 111 96 227 38 | eggplant 0.002 50 114 120 227 39 | mushroom 0.003 64 111 164 227 40 | mushroom 0.003 94 114 199 227 41 | eggplant 0.003 132 105 223 227 42 | mushroom 0.002 156 130 227 227 43 | cucumber 0.003 0 135 81 227 44 | cucumber 0.002 0 158 95 227 45 | eggplant 0.003 38 171 121 227 46 | mushroom 0.003 63 145 163 227 47 | mushroom 0.003 75 134 213 227 48 | eggplant 0.005 126 155 227 227 49 | cucumber 0.003 141 156 227 227 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_1.txt: -------------------------------------------------------------------------------- 1 | cucumber 23 42 206 199 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_10.txt: -------------------------------------------------------------------------------- 1 | cucumber 13 70 219 160 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_11.txt: -------------------------------------------------------------------------------- 1 | cucumber 8 42 221 200 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_12.txt: -------------------------------------------------------------------------------- 1 | cucumber 22 67 218 158 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_13.txt: -------------------------------------------------------------------------------- 1 | cucumber 15 56 212 156 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_14.txt: -------------------------------------------------------------------------------- 1 | cucumber 24 82 204 154 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_15.txt: -------------------------------------------------------------------------------- 1 | cucumber 40 89 216 221 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_16.txt: -------------------------------------------------------------------------------- 1 | cucumber 14 44 208 205 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_17.txt: -------------------------------------------------------------------------------- 1 | cucumber 28 71 193 174 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_18.txt: -------------------------------------------------------------------------------- 1 | cucumber 53 86 149 175 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_19.txt: -------------------------------------------------------------------------------- 1 | cucumber 32 74 200 132 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_2.txt: -------------------------------------------------------------------------------- 1 | cucumber 6 74 221 157 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_20.txt: -------------------------------------------------------------------------------- 1 | cucumber 12 51 216 165 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_21.txt: -------------------------------------------------------------------------------- 1 | cucumber 16 82 208 172 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_22.txt: -------------------------------------------------------------------------------- 1 | cucumber 26 22 201 172 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_23.txt: -------------------------------------------------------------------------------- 1 | cucumber 8 71 215 152 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_24.txt: -------------------------------------------------------------------------------- 1 | cucumber 13 129 196 170 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_25.txt: -------------------------------------------------------------------------------- 1 | cucumber 7 82 219 191 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_26.txt: -------------------------------------------------------------------------------- 1 | cucumber 31 73 209 142 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_27.txt: -------------------------------------------------------------------------------- 1 | cucumber 96 63 219 164 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_28.txt: -------------------------------------------------------------------------------- 1 | cucumber 24 61 196 185 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_29.txt: -------------------------------------------------------------------------------- 1 | cucumber 14 97 214 184 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_3.txt: -------------------------------------------------------------------------------- 1 | cucumber 8 38 219 180 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_30.txt: -------------------------------------------------------------------------------- 1 | cucumber 24 26 200 197 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_31.txt: -------------------------------------------------------------------------------- 1 | cucumber 36 11 215 207 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_32.txt: -------------------------------------------------------------------------------- 1 | cucumber 74 37 150 187 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_33.txt: -------------------------------------------------------------------------------- 1 | cucumber 21 29 202 198 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_34.txt: -------------------------------------------------------------------------------- 1 | cucumber 16 52 210 184 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_35.txt: -------------------------------------------------------------------------------- 1 | cucumber 4 35 225 196 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_36.txt: -------------------------------------------------------------------------------- 1 | cucumber 29 74 195 121 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_37.txt: -------------------------------------------------------------------------------- 1 | cucumber 29 77 209 172 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_38.txt: -------------------------------------------------------------------------------- 1 | cucumber 38 57 207 191 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_39.txt: -------------------------------------------------------------------------------- 1 | cucumber 37 25 192 180 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_4.txt: -------------------------------------------------------------------------------- 1 | cucumber 12 47 217 135 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_40.txt: -------------------------------------------------------------------------------- 1 | cucumber 25 67 201 163 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_41.txt: -------------------------------------------------------------------------------- 1 | cucumber 9 85 221 141 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_42.txt: -------------------------------------------------------------------------------- 1 | cucumber 22 22 218 202 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_43.txt: -------------------------------------------------------------------------------- 1 | cucumber 11 136 198 179 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_44.txt: -------------------------------------------------------------------------------- 1 | cucumber 16 77 210 139 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_45.txt: -------------------------------------------------------------------------------- 1 | cucumber 11 31 217 208 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_46.txt: -------------------------------------------------------------------------------- 1 | cucumber 16 66 224 143 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_47.txt: -------------------------------------------------------------------------------- 1 | cucumber 27 62 212 138 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_48.txt: -------------------------------------------------------------------------------- 1 | cucumber 35 71 197 172 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_49.txt: -------------------------------------------------------------------------------- 1 | cucumber 18 78 190 159 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_5.txt: -------------------------------------------------------------------------------- 1 | cucumber 25 70 201 146 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_50.txt: -------------------------------------------------------------------------------- 1 | cucumber 24 63 203 161 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_51.txt: -------------------------------------------------------------------------------- 1 | cucumber 7 17 220 199 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_52.txt: -------------------------------------------------------------------------------- 1 | cucumber 22 91 198 151 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_53.txt: -------------------------------------------------------------------------------- 1 | cucumber 35 81 205 158 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_54.txt: -------------------------------------------------------------------------------- 1 | cucumber 32 48 200 180 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_55.txt: -------------------------------------------------------------------------------- 1 | cucumber 61 84 166 158 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_56.txt: -------------------------------------------------------------------------------- 1 | cucumber 17 98 211 132 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_57.txt: -------------------------------------------------------------------------------- 1 | cucumber 30 80 197 131 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_58.txt: -------------------------------------------------------------------------------- 1 | cucumber 43 43 177 165 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_59.txt: -------------------------------------------------------------------------------- 1 | cucumber 8 37 223 187 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_6.txt: -------------------------------------------------------------------------------- 1 | cucumber 3 13 226 188 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_60.txt: -------------------------------------------------------------------------------- 1 | cucumber 55 58 219 201 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_61.txt: -------------------------------------------------------------------------------- 1 | cucumber 25 35 210 170 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_62.txt: -------------------------------------------------------------------------------- 1 | cucumber 21 26 207 185 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_63.txt: -------------------------------------------------------------------------------- 1 | cucumber 33 55 199 142 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_7.txt: -------------------------------------------------------------------------------- 1 | cucumber 78 17 153 217 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_8.txt: -------------------------------------------------------------------------------- 1 | cucumber 22 62 197 181 -------------------------------------------------------------------------------- /py/input/ground-truth/cucumber_9.txt: -------------------------------------------------------------------------------- 1 | cucumber 29 81 201 180 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_1.txt: -------------------------------------------------------------------------------- 1 | eggplant 2 5 214 225 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_10.txt: -------------------------------------------------------------------------------- 1 | eggplant 22 51 191 197 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_11.txt: -------------------------------------------------------------------------------- 1 | eggplant 49 37 192 172 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_12.txt: -------------------------------------------------------------------------------- 1 | eggplant 56 29 182 220 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_13.txt: -------------------------------------------------------------------------------- 1 | eggplant 25 64 178 184 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_14.txt: -------------------------------------------------------------------------------- 1 | eggplant 59 41 206 149 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_15.txt: -------------------------------------------------------------------------------- 1 | eggplant 23 51 178 215 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_16.txt: -------------------------------------------------------------------------------- 1 | eggplant 11 44 188 143 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_17.txt: -------------------------------------------------------------------------------- 1 | eggplant 41 58 179 157 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_18.txt: -------------------------------------------------------------------------------- 1 | eggplant 16 24 210 173 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_19.txt: -------------------------------------------------------------------------------- 1 | eggplant 15 85 197 149 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_2.txt: -------------------------------------------------------------------------------- 1 | eggplant 32 41 192 198 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_20.txt: -------------------------------------------------------------------------------- 1 | eggplant 50 38 178 213 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_21.txt: -------------------------------------------------------------------------------- 1 | eggplant 44 95 201 182 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_22.txt: -------------------------------------------------------------------------------- 1 | eggplant 38 27 215 155 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_23.txt: -------------------------------------------------------------------------------- 1 | eggplant 15 4 215 185 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_24.txt: -------------------------------------------------------------------------------- 1 | eggplant 44 39 178 154 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_25.txt: -------------------------------------------------------------------------------- 1 | eggplant 25 25 167 198 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_26.txt: -------------------------------------------------------------------------------- 1 | eggplant 40 70 179 168 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_27.txt: -------------------------------------------------------------------------------- 1 | eggplant 71 40 198 152 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_28.txt: -------------------------------------------------------------------------------- 1 | eggplant 54 58 223 190 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_29.txt: -------------------------------------------------------------------------------- 1 | eggplant 1 17 222 226 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_3.txt: -------------------------------------------------------------------------------- 1 | eggplant 19 42 213 186 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_30.txt: -------------------------------------------------------------------------------- 1 | eggplant 62 76 171 191 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_31.txt: -------------------------------------------------------------------------------- 1 | eggplant 34 35 194 186 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_32.txt: -------------------------------------------------------------------------------- 1 | eggplant 20 72 211 152 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_33.txt: -------------------------------------------------------------------------------- 1 | eggplant 22 34 195 165 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_34.txt: -------------------------------------------------------------------------------- 1 | eggplant 7 25 210 222 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_35.txt: -------------------------------------------------------------------------------- 1 | eggplant 28 70 181 177 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_36.txt: -------------------------------------------------------------------------------- 1 | eggplant 32 56 205 184 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_37.txt: -------------------------------------------------------------------------------- 1 | eggplant 34 34 88 201 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_38.txt: -------------------------------------------------------------------------------- 1 | eggplant 19 49 210 169 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_39.txt: -------------------------------------------------------------------------------- 1 | eggplant 17 30 212 186 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_4.txt: -------------------------------------------------------------------------------- 1 | eggplant 36 72 205 187 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_40.txt: -------------------------------------------------------------------------------- 1 | eggplant 5 12 190 209 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_41.txt: -------------------------------------------------------------------------------- 1 | eggplant 20 54 186 156 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_42.txt: -------------------------------------------------------------------------------- 1 | eggplant 16 33 193 161 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_43.txt: -------------------------------------------------------------------------------- 1 | eggplant 56 35 145 212 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_44.txt: -------------------------------------------------------------------------------- 1 | eggplant 21 59 192 171 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_45.txt: -------------------------------------------------------------------------------- 1 | eggplant 6 53 195 178 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_46.txt: -------------------------------------------------------------------------------- 1 | eggplant 64 48 166 148 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_47.txt: -------------------------------------------------------------------------------- 1 | eggplant 29 74 186 172 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_48.txt: -------------------------------------------------------------------------------- 1 | eggplant 8 31 219 220 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_49.txt: -------------------------------------------------------------------------------- 1 | eggplant 35 37 206 155 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_5.txt: -------------------------------------------------------------------------------- 1 | eggplant 38 46 195 200 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_50.txt: -------------------------------------------------------------------------------- 1 | eggplant 12 86 188 190 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_51.txt: -------------------------------------------------------------------------------- 1 | eggplant 51 59 191 164 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_52.txt: -------------------------------------------------------------------------------- 1 | eggplant 56 85 171 182 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_53.txt: -------------------------------------------------------------------------------- 1 | eggplant 29 36 171 198 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_54.txt: -------------------------------------------------------------------------------- 1 | eggplant 52 23 213 202 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_55.txt: -------------------------------------------------------------------------------- 1 | eggplant 17 44 113 176 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_56.txt: -------------------------------------------------------------------------------- 1 | eggplant 31 67 215 160 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_57.txt: -------------------------------------------------------------------------------- 1 | eggplant 57 64 175 155 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_58.txt: -------------------------------------------------------------------------------- 1 | eggplant 26 45 188 200 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_59.txt: -------------------------------------------------------------------------------- 1 | eggplant 8 49 213 214 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_6.txt: -------------------------------------------------------------------------------- 1 | eggplant 24 83 222 144 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_60.txt: -------------------------------------------------------------------------------- 1 | eggplant 24 75 184 161 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_61.txt: -------------------------------------------------------------------------------- 1 | eggplant 24 11 215 212 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_62.txt: -------------------------------------------------------------------------------- 1 | eggplant 67 22 177 215 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_7.txt: -------------------------------------------------------------------------------- 1 | eggplant 51 49 200 198 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_8.txt: -------------------------------------------------------------------------------- 1 | eggplant 17 46 182 186 -------------------------------------------------------------------------------- /py/input/ground-truth/eggplant_9.txt: -------------------------------------------------------------------------------- 1 | eggplant 11 64 179 202 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_1.txt: -------------------------------------------------------------------------------- 1 | mushroom 44 66 155 167 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_10.txt: -------------------------------------------------------------------------------- 1 | mushroom 38 47 127 154 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_11.txt: -------------------------------------------------------------------------------- 1 | mushroom 39 27 204 193 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_12.txt: -------------------------------------------------------------------------------- 1 | mushroom 87 21 205 193 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_13.txt: -------------------------------------------------------------------------------- 1 | mushroom 22 8 200 193 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_14.txt: -------------------------------------------------------------------------------- 1 | mushroom 32 35 191 197 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_15.txt: -------------------------------------------------------------------------------- 1 | mushroom 102 27 207 168 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_16.txt: -------------------------------------------------------------------------------- 1 | mushroom 43 20 197 182 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_17.txt: -------------------------------------------------------------------------------- 1 | mushroom 99 18 211 186 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_18.txt: -------------------------------------------------------------------------------- 1 | mushroom 55 46 144 214 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_19.txt: -------------------------------------------------------------------------------- 1 | mushroom 66 23 196 190 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_2.txt: -------------------------------------------------------------------------------- 1 | mushroom 34 31 188 201 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_20.txt: -------------------------------------------------------------------------------- 1 | mushroom 49 86 183 185 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_21.txt: -------------------------------------------------------------------------------- 1 | mushroom 77 79 144 213 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_22.txt: -------------------------------------------------------------------------------- 1 | mushroom 32 52 196 165 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_23.txt: -------------------------------------------------------------------------------- 1 | mushroom 8 5 226 226 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_24.txt: -------------------------------------------------------------------------------- 1 | mushroom 33 67 191 189 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_25.txt: -------------------------------------------------------------------------------- 1 | mushroom 66 32 164 201 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_26.txt: -------------------------------------------------------------------------------- 1 | mushroom 68 37 156 200 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_27.txt: -------------------------------------------------------------------------------- 1 | mushroom 49 18 181 220 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_28.txt: -------------------------------------------------------------------------------- 1 | mushroom 60 10 196 188 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_29.txt: -------------------------------------------------------------------------------- 1 | mushroom 27 72 182 209 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_3.txt: -------------------------------------------------------------------------------- 1 | mushroom 22 26 206 197 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_30.txt: -------------------------------------------------------------------------------- 1 | mushroom 9 11 223 217 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_31.txt: -------------------------------------------------------------------------------- 1 | mushroom 58 45 162 135 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_32.txt: -------------------------------------------------------------------------------- 1 | mushroom 25 14 199 133 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_33.txt: -------------------------------------------------------------------------------- 1 | mushroom 24 46 205 212 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_34.txt: -------------------------------------------------------------------------------- 1 | mushroom 11 99 141 177 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_35.txt: -------------------------------------------------------------------------------- 1 | mushroom 69 52 164 169 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_36.txt: -------------------------------------------------------------------------------- 1 | mushroom 54 26 185 192 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_37.txt: -------------------------------------------------------------------------------- 1 | mushroom 93 13 158 193 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_38.txt: -------------------------------------------------------------------------------- 1 | mushroom 101 58 155 126 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_39.txt: -------------------------------------------------------------------------------- 1 | mushroom 25 60 128 200 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_4.txt: -------------------------------------------------------------------------------- 1 | mushroom 8 1 225 221 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_40.txt: -------------------------------------------------------------------------------- 1 | mushroom 28 31 143 210 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_41.txt: -------------------------------------------------------------------------------- 1 | mushroom 42 24 180 213 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_42.txt: -------------------------------------------------------------------------------- 1 | mushroom 46 43 174 182 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_43.txt: -------------------------------------------------------------------------------- 1 | mushroom 112 55 203 185 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_44.txt: -------------------------------------------------------------------------------- 1 | mushroom 65 17 151 209 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_45.txt: -------------------------------------------------------------------------------- 1 | mushroom 55 30 167 212 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_46.txt: -------------------------------------------------------------------------------- 1 | mushroom 22 25 150 217 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_47.txt: -------------------------------------------------------------------------------- 1 | mushroom 60 44 163 196 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_48.txt: -------------------------------------------------------------------------------- 1 | mushroom 119 56 191 181 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_49.txt: -------------------------------------------------------------------------------- 1 | mushroom 32 43 193 208 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_5.txt: -------------------------------------------------------------------------------- 1 | mushroom 77 19 165 212 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_50.txt: -------------------------------------------------------------------------------- 1 | mushroom 56 61 173 176 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_51.txt: -------------------------------------------------------------------------------- 1 | mushroom 24 23 202 183 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_52.txt: -------------------------------------------------------------------------------- 1 | mushroom 96 34 203 204 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_53.txt: -------------------------------------------------------------------------------- 1 | mushroom 36 19 212 195 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_54.txt: -------------------------------------------------------------------------------- 1 | mushroom 31 21 206 227 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_55.txt: -------------------------------------------------------------------------------- 1 | mushroom 53 28 187 209 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_56.txt: -------------------------------------------------------------------------------- 1 | mushroom 41 52 177 192 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_57.txt: -------------------------------------------------------------------------------- 1 | mushroom 10 45 205 218 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_58.txt: -------------------------------------------------------------------------------- 1 | mushroom 87 1 221 201 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_59.txt: -------------------------------------------------------------------------------- 1 | mushroom 93 69 177 203 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_6.txt: -------------------------------------------------------------------------------- 1 | mushroom 146 45 197 203 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_60.txt: -------------------------------------------------------------------------------- 1 | mushroom 72 69 217 202 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_61.txt: -------------------------------------------------------------------------------- 1 | mushroom 20 20 210 209 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_7.txt: -------------------------------------------------------------------------------- 1 | mushroom 45 30 185 200 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_8.txt: -------------------------------------------------------------------------------- 1 | mushroom 29 44 194 194 -------------------------------------------------------------------------------- /py/input/ground-truth/mushroom_9.txt: -------------------------------------------------------------------------------- 1 | mushroom 67 38 154 172 -------------------------------------------------------------------------------- /py/metrics/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | """ 4 | @date: 2020/5/25 下午1:47 5 | @file: __init__.py.py 6 | @author: zj 7 | @description: 8 | """ -------------------------------------------------------------------------------- /py/metrics/coco/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | """ 4 | @date: 2020/5/27 上午10:24 5 | @file: __init__.py.py 6 | @author: zj 7 | @description: 8 | """ 9 | 10 | from .build import coco_evaluation 11 | -------------------------------------------------------------------------------- /py/metrics/coco/build.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | """ 4 | @date: 2020/5/28 下午1:53 5 | @file: build.py 6 | @author: zj 7 | @description: 8 | """ 9 | 10 | import os 11 | import glob 12 | import json 13 | import numpy as np 14 | from pycocotools.coco import COCO 15 | from pycocotools.cocoeval import COCOeval 16 | 17 | from .coco_map import compute_gt 18 | from .coco_map import compute_dt 19 | 20 | 21 | def coco_evaluation(ground_truth_dir, detection_result_dir, output_dir): 22 | cocoGt = compute_gt(ground_truth_dir, output_dir) 23 | cocoDt = compute_dt(cocoGt, detection_result_dir, output_dir) 24 | 25 | # initialize CocoEval object 26 | E = COCOeval(cocoGt, cocoDt, iouType='bbox') 27 | # set parameters as desired 28 | # E.params.recThrs = ... 29 | # E.params.catIds = [1] 30 | # E.params.maxDets = [10, 100, 300] 31 | # E.params.iouThrs = [0.5] 32 | # run per image evaluation 33 | E.evaluate() 34 | # accumulate per image results 35 | E.accumulate() 36 | # display summary metrics of results 37 | E.summarize() 38 | 39 | # print(E.params.iouThrs) 40 | # print(E.params.recThrs) 41 | # print(E.stats) 42 | -------------------------------------------------------------------------------- /py/metrics/coco/misc.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | """ 4 | @date: 2020/5/27 下午9:41 5 | @file: misc.py 6 | @author: zj 7 | @description: 8 | """ 9 | 10 | 11 | def file_lines_to_list(path): 12 | """ 13 | Convert the lines of a file to a list 14 | """ 15 | # open txt file lines to a list 16 | with open(path) as f: 17 | content = f.readlines() 18 | # remove whitespace characters like `\n` at the end of each line 19 | content = [x.strip() for x in content] 20 | return content 21 | 22 | 23 | def parse_annotation(ann_dict): 24 | filename = ann_dict['filename'] 25 | 26 | size = ann_dict['size'] 27 | width = size['width'] 28 | height = size['height'] 29 | 30 | object = ann_dict['object'] 31 | cat_name = object['name'] 32 | 33 | bndbox = object['bndbox'] 34 | xmin = bndbox['xmin'] 35 | ymin = bndbox['ymin'] 36 | xmax = bndbox['xmax'] 37 | ymax = bndbox['ymax'] 38 | 39 | return filename, float(width), float(height), cat_name, float(xmin), float(ymin), float(xmax), float(ymax) 40 | -------------------------------------------------------------------------------- /py/metrics/map/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | """ 4 | @date: 2020/5/25 下午3:47 5 | @file: __init__.py.py 6 | @author: zj 7 | @description: 8 | """ 9 | 10 | from .build import voc_evaluation 11 | -------------------------------------------------------------------------------- /py/metrics/model.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | """ 4 | @date: 2020/5/25 下午2:01 5 | @file: model.py 6 | @author: zj 7 | @description: 8 | """ 9 | 10 | import time 11 | 12 | import torch 13 | import torch.nn as nn 14 | from thop import profile 15 | 16 | 17 | def compute_gflops_and_model_size(model): 18 | input = torch.randn(1, 3, 224, 224) 19 | macs, params = profile(model, inputs=(input,), verbose=False) 20 | 21 | GFlops = macs * 2.0 / pow(10, 9) 22 | model_size = params * 4.0 / 1024 / 1024 23 | return GFlops, model_size 24 | 25 | 26 | def compute_params(model): 27 | assert isinstance(model, nn.Module) 28 | return sum([param.numel() for param in model.parameters()]) 29 | 30 | 31 | @torch.no_grad() 32 | def compute_fps(model, shape, epoch=100, device=None): 33 | """ 34 | frames per second 35 | :param shape: 输入数据大小 36 | """ 37 | total_time = 0.0 38 | 39 | if device: 40 | model = model.to(device) 41 | for i in range(epoch): 42 | data = torch.randn(shape) 43 | if device: 44 | data = data.to(device) 45 | 46 | start = time.time() 47 | outputs = model(data) 48 | end = time.time() 49 | 50 | total_time += (end - start) 51 | 52 | return total_time / epoch 53 | -------------------------------------------------------------------------------- /py/requirements.txt: -------------------------------------------------------------------------------- 1 | # Requirements automatically generated by pigar. 2 | # https://github.com/damnever/pigar 3 | 4 | # metrics/map/misc.py: 10 5 | # metrics/map/voc_map.py: 13 6 | # utils/util.py: 10 7 | numpy == 1.17.2 8 | 9 | # metrics/model.py: 14 10 | thop == 0.0.31.post2004272040 11 | 12 | # metrics/acc.py: 10 13 | # metrics/map/misc.py: 13 14 | # metrics/model.py: 12,13 15 | # test_acc_err.py: 10,11 16 | # test_fps.py: 11 17 | # utils/util.py: 13 18 | torch == 1.5.0 19 | 20 | # test_acc_err.py: 12,13,14 21 | # test_fps.py: 10 22 | # test_params_flops.py: 10 23 | torchvision == 0.6.0a0+82fd1c8 24 | -------------------------------------------------------------------------------- /py/test_fps.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | """ 4 | @date: 2020/5/25 下午2:39 5 | @file: test_fps.py 6 | @author: zj 7 | @description: 8 | """ 9 | 10 | from torchvision.models import alexnet 11 | import torch 12 | 13 | from metrics.model import compute_fps 14 | 15 | 16 | def get_device(): 17 | return torch.device('cuda:0' if torch.cuda.is_available() else 'cpu') 18 | 19 | 20 | if __name__ == '__main__': 21 | num_classes = 10 22 | model = alexnet(num_classes=num_classes) 23 | 24 | device = get_device() 25 | fps = compute_fps(model, (1, 3, 224, 224), device=device) 26 | print('device: {} - fps: {:.3f}s'.format(device.type, fps)) 27 | -------------------------------------------------------------------------------- /py/test_map_coco.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | """ 4 | @date: 2020/5/27 下午4:26 5 | @file: test_map_coco.py 6 | @author: zj 7 | @description: 8 | """ 9 | 10 | from metrics.coco import coco_evaluation 11 | 12 | if __name__ == '__main__': 13 | annotation_dir = '/home/zj/data/image-localization-dataset/training_images' 14 | detection_result_dir = './input/detection-results' 15 | output_dir = './input' 16 | coco_evaluation(annotation_dir, detection_result_dir, output_dir) 17 | -------------------------------------------------------------------------------- /py/test_map_voc.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | """ 4 | @date: 2020/5/25 下午3:46 5 | @file: test_map_voc.py 6 | @author: zj 7 | @description: 8 | """ 9 | 10 | from metrics.map import voc_evaluation 11 | 12 | if __name__ == '__main__': 13 | ground_truth_dir = './input/ground-truth' 14 | detection_result_dir = './input/detection-results' 15 | tmp_json_dir = './.tmp_files' 16 | 17 | metrics = voc_evaluation(ground_truth_dir, detection_result_dir, tmp_json_dir) 18 | 19 | for key, item in metrics.items(): 20 | print('{} = {:.3f}%'.format(key, item * 100)) 21 | -------------------------------------------------------------------------------- /py/test_params_flops.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | """ 4 | @date: 2020/5/25 下午2:02 5 | @file: test_params_flops.py 6 | @author: zj 7 | @description: 8 | """ 9 | 10 | from torchvision.models import AlexNet 11 | 12 | from metrics.model import compute_params 13 | from metrics.model import compute_gflops_and_model_size 14 | 15 | 16 | def test_model_param_num(): 17 | """ 18 | 计算模型参数个数,同时返回相应的大小(MB) 19 | size = num * 4.0 / 1024 / 1024 20 | """ 21 | model = AlexNet() 22 | num_params = compute_params(model) 23 | size_params = num_params * 4.0 / 1024 / 1024 24 | 25 | print('num_params: {} - size_params: {:.3f} MB'.format(num_params, size_params)) 26 | return num_params, size_params 27 | 28 | 29 | def test_model_flops(): 30 | """ 31 | 计算模型GFLops,同时返回模型大小(MB) 32 | """ 33 | model = AlexNet() 34 | gflops, model_size = compute_gflops_and_model_size(model) 35 | 36 | print('{:.3f} GFlops - {:.3f} MB'.format(gflops, model_size)) 37 | 38 | 39 | if __name__ == '__main__': 40 | test_model_param_num() 41 | test_model_flops() 42 | -------------------------------------------------------------------------------- /py/voc2coco/labels.txt: -------------------------------------------------------------------------------- 1 | aeroplane 2 | bicycle 3 | bird 4 | boat 5 | bottle 6 | bus 7 | car 8 | cat 9 | chair 10 | cow 11 | diningtable 12 | dog 13 | horse 14 | motorbike 15 | person 16 | pottedplant 17 | sheep 18 | sofa 19 | train 20 | tvmonitor 21 | -------------------------------------------------------------------------------- /py/voc2coco/misc.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | """ 4 | @date: 2020/5/27 下午2:19 5 | @file: misc.py 6 | @author: zj 7 | @description: 8 | """ 9 | 10 | import numpy as np 11 | 12 | voc_labels = ['aeroplane', 'bicycle', 'bird', 'boat', 'bottle', 'bus', 'car', 'cat', 'chair', 'cow', 13 | 'diningtable', 'dog', 'horse', 'motorbike', 'person', 'pottedplant', 'sheep', 'sofa', 14 | 'train', 'tvmonitor'] 15 | 16 | if __name__ == '__main__': 17 | np.savetxt('labels.txt', voc_labels, fmt='%s', delimiter=' ') 18 | -------------------------------------------------------------------------------- /py/voc2coco/voc2coco_json.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | mkdir outputs 4 | 5 | for split in trainval test; do 6 | # echo ${split} 7 | python voc2coco.py \ 8 | --ann_dir ../data/VOCdevkit/VOC2007/Annotations \ 9 | --ann_ids ../data/VOCdevkit/VOC2007/ImageSets/Main/${split}.txt \ 10 | --labels labels.txt \ 11 | --output outputs/${split}.json \ 12 | --ext xml 13 | done 14 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | mkdocs==1.0.4 2 | mkdocs-material==4.6.0 3 | mkdocs-minify-plugin==0.2.1 4 | Markdown==3.1.1 5 | markdown-katex==201912.11b0 --------------------------------------------------------------------------------