├── COCOReader.py ├── EvaluateAccuracy.py ├── FIgure2.png ├── Figure1.png ├── GetCOCOCatNames.py ├── LICENCE ├── README.md ├── Resnet50Attention.py ├── RunbPrediction.py ├── TestImages ├── Test1 │ ├── Image.png │ ├── InputMask1.png │ └── InputMask4.png ├── Test2 │ ├── Image.png │ ├── InputMask1.png │ ├── InputMask2.png │ ├── InputMask3.png │ ├── InputMask4.png │ ├── InputMask5.png │ └── InputMask6.png ├── Test3 │ ├── Image.png │ ├── InputMask1.png │ ├── InputMask2.png │ ├── InputMask3.png │ ├── InputMask4.png │ ├── InputMask5.png │ ├── InputMask6.png │ └── InputMask7.png └── Test4 │ ├── Image.png │ ├── InputMask1.png │ ├── InputMask2.png │ ├── InputMask3.png │ ├── InputMask4.png │ ├── InputMask5.png │ ├── InputMask6.png │ ├── InputMask7.png │ └── InputMask8.png ├── Train.py └── pycocotools ├── .idea ├── misc.xml ├── modules.xml ├── pycocotools.iml └── workspace.xml ├── __init__.py ├── __pycache__ ├── __init__.cpython-36.pyc ├── __init__.cpython-37.pyc ├── coco.cpython-36.pyc ├── coco.cpython-37.pyc ├── mask.cpython-36.pyc └── mask.cpython-37.pyc ├── _mask.c ├── _mask.cpython-36m-x86_64-linux-gnu.so ├── _mask.pyx ├── coco.py ├── cocoeval.py └── mask.py /COCOReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/COCOReader.py -------------------------------------------------------------------------------- /EvaluateAccuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/EvaluateAccuracy.py -------------------------------------------------------------------------------- /FIgure2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/FIgure2.png -------------------------------------------------------------------------------- /Figure1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/Figure1.png -------------------------------------------------------------------------------- /GetCOCOCatNames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/GetCOCOCatNames.py -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/README.md -------------------------------------------------------------------------------- /Resnet50Attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/Resnet50Attention.py -------------------------------------------------------------------------------- /RunbPrediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/RunbPrediction.py -------------------------------------------------------------------------------- /TestImages/Test1/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/TestImages/Test1/Image.png -------------------------------------------------------------------------------- /TestImages/Test1/InputMask1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/TestImages/Test1/InputMask1.png -------------------------------------------------------------------------------- /TestImages/Test1/InputMask4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/TestImages/Test1/InputMask4.png -------------------------------------------------------------------------------- /TestImages/Test2/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/TestImages/Test2/Image.png -------------------------------------------------------------------------------- /TestImages/Test2/InputMask1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/TestImages/Test2/InputMask1.png -------------------------------------------------------------------------------- /TestImages/Test2/InputMask2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/TestImages/Test2/InputMask2.png -------------------------------------------------------------------------------- /TestImages/Test2/InputMask3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/TestImages/Test2/InputMask3.png -------------------------------------------------------------------------------- /TestImages/Test2/InputMask4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/TestImages/Test2/InputMask4.png -------------------------------------------------------------------------------- /TestImages/Test2/InputMask5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/TestImages/Test2/InputMask5.png -------------------------------------------------------------------------------- /TestImages/Test2/InputMask6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/TestImages/Test2/InputMask6.png -------------------------------------------------------------------------------- /TestImages/Test3/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/TestImages/Test3/Image.png -------------------------------------------------------------------------------- /TestImages/Test3/InputMask1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/TestImages/Test3/InputMask1.png -------------------------------------------------------------------------------- /TestImages/Test3/InputMask2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/TestImages/Test3/InputMask2.png -------------------------------------------------------------------------------- /TestImages/Test3/InputMask3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/TestImages/Test3/InputMask3.png -------------------------------------------------------------------------------- /TestImages/Test3/InputMask4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/TestImages/Test3/InputMask4.png -------------------------------------------------------------------------------- /TestImages/Test3/InputMask5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/TestImages/Test3/InputMask5.png -------------------------------------------------------------------------------- /TestImages/Test3/InputMask6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/TestImages/Test3/InputMask6.png -------------------------------------------------------------------------------- /TestImages/Test3/InputMask7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/TestImages/Test3/InputMask7.png -------------------------------------------------------------------------------- /TestImages/Test4/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/TestImages/Test4/Image.png -------------------------------------------------------------------------------- /TestImages/Test4/InputMask1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/TestImages/Test4/InputMask1.png -------------------------------------------------------------------------------- /TestImages/Test4/InputMask2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/TestImages/Test4/InputMask2.png -------------------------------------------------------------------------------- /TestImages/Test4/InputMask3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/TestImages/Test4/InputMask3.png -------------------------------------------------------------------------------- /TestImages/Test4/InputMask4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/TestImages/Test4/InputMask4.png -------------------------------------------------------------------------------- /TestImages/Test4/InputMask5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/TestImages/Test4/InputMask5.png -------------------------------------------------------------------------------- /TestImages/Test4/InputMask6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/TestImages/Test4/InputMask6.png -------------------------------------------------------------------------------- /TestImages/Test4/InputMask7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/TestImages/Test4/InputMask7.png -------------------------------------------------------------------------------- /TestImages/Test4/InputMask8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/TestImages/Test4/InputMask8.png -------------------------------------------------------------------------------- /Train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/Train.py -------------------------------------------------------------------------------- /pycocotools/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/pycocotools/.idea/misc.xml -------------------------------------------------------------------------------- /pycocotools/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/pycocotools/.idea/modules.xml -------------------------------------------------------------------------------- /pycocotools/.idea/pycocotools.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/pycocotools/.idea/pycocotools.iml -------------------------------------------------------------------------------- /pycocotools/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/pycocotools/.idea/workspace.xml -------------------------------------------------------------------------------- /pycocotools/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'tylin' 2 | -------------------------------------------------------------------------------- /pycocotools/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/pycocotools/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /pycocotools/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/pycocotools/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /pycocotools/__pycache__/coco.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/pycocotools/__pycache__/coco.cpython-36.pyc -------------------------------------------------------------------------------- /pycocotools/__pycache__/coco.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/pycocotools/__pycache__/coco.cpython-37.pyc -------------------------------------------------------------------------------- /pycocotools/__pycache__/mask.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/pycocotools/__pycache__/mask.cpython-36.pyc -------------------------------------------------------------------------------- /pycocotools/__pycache__/mask.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/pycocotools/__pycache__/mask.cpython-37.pyc -------------------------------------------------------------------------------- /pycocotools/_mask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/pycocotools/_mask.c -------------------------------------------------------------------------------- /pycocotools/_mask.cpython-36m-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/pycocotools/_mask.cpython-36m-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /pycocotools/_mask.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/pycocotools/_mask.pyx -------------------------------------------------------------------------------- /pycocotools/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/pycocotools/coco.py -------------------------------------------------------------------------------- /pycocotools/cocoeval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/pycocotools/cocoeval.py -------------------------------------------------------------------------------- /pycocotools/mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagieppel/Classification-of-object-in-a-specific-image-region-using-a-convolutional-neural-net-with-ROI-mask-a/HEAD/pycocotools/mask.py --------------------------------------------------------------------------------