├── 81.jpg ├── README.md ├── collect_img.py ├── frcnn-master ├── LICENSE ├── README.md ├── config.pickle ├── explore.py ├── keras_frcnn │ ├── FixedBatchNormalization.py │ ├── FixedBatchNormalization.pyc │ ├── RoiPoolingConv.py │ ├── RoiPoolingConv.pyc │ ├── __init__.pyc │ ├── config.py │ ├── config.pyc │ ├── data_augment.py │ ├── data_augment.pyc │ ├── data_generators.py │ ├── data_generators.pyc │ ├── losses.py │ ├── losses.pyc │ ├── pascal_voc_parser.py │ ├── resnet.py │ ├── resnet.pyc │ ├── roi_helpers.py │ ├── roi_helpers.pyc │ ├── simple_parser.py │ ├── simple_parser.pyc │ └── vgg.py ├── measure_map.py ├── requirements.txt ├── showimg.py ├── test.txt ├── test_frcnn.py ├── train.csv ├── train.txt └── train_frcnn.py ├── images ├── Frcnn_img_results1.png ├── frcc_mAP.png ├── mAP.png └── yolo_img_result1.png ├── imshow.py ├── labels.txt ├── predict_img.py ├── process_video.py ├── report └── BTP report SEM 7 draft.pdf └── yolo ├── 81.jpg ├── cfg ├── coco.names ├── extraction.cfg ├── extraction.conv.cfg ├── tiny-yolo-4c.cfg ├── tiny-yolo-voc-12c.cfg ├── tiny-yolo-voc.cfg ├── tiny-yolo.cfg ├── v1.1 │ ├── person-bottle.cfg │ ├── tiny-coco.cfg │ ├── tiny-yolo-4c.cfg │ ├── tiny-yolov1.cfg │ ├── yolo-coco.cfg │ └── yolov1.cfg ├── v1 │ ├── tiny-old.profile │ ├── tiny.profile │ ├── yolo-2c.cfg │ ├── yolo-4c.cfg │ ├── yolo-full.cfg │ ├── yolo-small.cfg │ ├── yolo-tiny-extract.cfg │ ├── yolo-tiny-extract_.cfg │ ├── yolo-tiny.cfg │ └── yolo-tiny4c.cfg ├── yolo-12c.cfg ├── yolo-voc.cfg └── yolo.cfg ├── collect_img.py ├── imshow.py ├── labels.txt ├── predict_img.py └── process_video.py /81.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/81.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/README.md -------------------------------------------------------------------------------- /collect_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/collect_img.py -------------------------------------------------------------------------------- /frcnn-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/LICENSE -------------------------------------------------------------------------------- /frcnn-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/README.md -------------------------------------------------------------------------------- /frcnn-master/config.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/config.pickle -------------------------------------------------------------------------------- /frcnn-master/explore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/explore.py -------------------------------------------------------------------------------- /frcnn-master/keras_frcnn/FixedBatchNormalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/keras_frcnn/FixedBatchNormalization.py -------------------------------------------------------------------------------- /frcnn-master/keras_frcnn/FixedBatchNormalization.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/keras_frcnn/FixedBatchNormalization.pyc -------------------------------------------------------------------------------- /frcnn-master/keras_frcnn/RoiPoolingConv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/keras_frcnn/RoiPoolingConv.py -------------------------------------------------------------------------------- /frcnn-master/keras_frcnn/RoiPoolingConv.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/keras_frcnn/RoiPoolingConv.pyc -------------------------------------------------------------------------------- /frcnn-master/keras_frcnn/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/keras_frcnn/__init__.pyc -------------------------------------------------------------------------------- /frcnn-master/keras_frcnn/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/keras_frcnn/config.py -------------------------------------------------------------------------------- /frcnn-master/keras_frcnn/config.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/keras_frcnn/config.pyc -------------------------------------------------------------------------------- /frcnn-master/keras_frcnn/data_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/keras_frcnn/data_augment.py -------------------------------------------------------------------------------- /frcnn-master/keras_frcnn/data_augment.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/keras_frcnn/data_augment.pyc -------------------------------------------------------------------------------- /frcnn-master/keras_frcnn/data_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/keras_frcnn/data_generators.py -------------------------------------------------------------------------------- /frcnn-master/keras_frcnn/data_generators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/keras_frcnn/data_generators.pyc -------------------------------------------------------------------------------- /frcnn-master/keras_frcnn/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/keras_frcnn/losses.py -------------------------------------------------------------------------------- /frcnn-master/keras_frcnn/losses.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/keras_frcnn/losses.pyc -------------------------------------------------------------------------------- /frcnn-master/keras_frcnn/pascal_voc_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/keras_frcnn/pascal_voc_parser.py -------------------------------------------------------------------------------- /frcnn-master/keras_frcnn/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/keras_frcnn/resnet.py -------------------------------------------------------------------------------- /frcnn-master/keras_frcnn/resnet.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/keras_frcnn/resnet.pyc -------------------------------------------------------------------------------- /frcnn-master/keras_frcnn/roi_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/keras_frcnn/roi_helpers.py -------------------------------------------------------------------------------- /frcnn-master/keras_frcnn/roi_helpers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/keras_frcnn/roi_helpers.pyc -------------------------------------------------------------------------------- /frcnn-master/keras_frcnn/simple_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/keras_frcnn/simple_parser.py -------------------------------------------------------------------------------- /frcnn-master/keras_frcnn/simple_parser.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/keras_frcnn/simple_parser.pyc -------------------------------------------------------------------------------- /frcnn-master/keras_frcnn/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/keras_frcnn/vgg.py -------------------------------------------------------------------------------- /frcnn-master/measure_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/measure_map.py -------------------------------------------------------------------------------- /frcnn-master/requirements.txt: -------------------------------------------------------------------------------- 1 | h5py 2 | Keras==2.0.3 3 | numpy 4 | opencv-python 5 | sklearn 6 | -------------------------------------------------------------------------------- /frcnn-master/showimg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/showimg.py -------------------------------------------------------------------------------- /frcnn-master/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/test.txt -------------------------------------------------------------------------------- /frcnn-master/test_frcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/test_frcnn.py -------------------------------------------------------------------------------- /frcnn-master/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/train.csv -------------------------------------------------------------------------------- /frcnn-master/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/train.txt -------------------------------------------------------------------------------- /frcnn-master/train_frcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/frcnn-master/train_frcnn.py -------------------------------------------------------------------------------- /images/Frcnn_img_results1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/images/Frcnn_img_results1.png -------------------------------------------------------------------------------- /images/frcc_mAP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/images/frcc_mAP.png -------------------------------------------------------------------------------- /images/mAP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/images/mAP.png -------------------------------------------------------------------------------- /images/yolo_img_result1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/images/yolo_img_result1.png -------------------------------------------------------------------------------- /imshow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/imshow.py -------------------------------------------------------------------------------- /labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/labels.txt -------------------------------------------------------------------------------- /predict_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/predict_img.py -------------------------------------------------------------------------------- /process_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/process_video.py -------------------------------------------------------------------------------- /report/BTP report SEM 7 draft.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/report/BTP report SEM 7 draft.pdf -------------------------------------------------------------------------------- /yolo/81.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/81.jpg -------------------------------------------------------------------------------- /yolo/cfg/coco.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/cfg/coco.names -------------------------------------------------------------------------------- /yolo/cfg/extraction.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/cfg/extraction.cfg -------------------------------------------------------------------------------- /yolo/cfg/extraction.conv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/cfg/extraction.conv.cfg -------------------------------------------------------------------------------- /yolo/cfg/tiny-yolo-4c.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/cfg/tiny-yolo-4c.cfg -------------------------------------------------------------------------------- /yolo/cfg/tiny-yolo-voc-12c.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/cfg/tiny-yolo-voc-12c.cfg -------------------------------------------------------------------------------- /yolo/cfg/tiny-yolo-voc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/cfg/tiny-yolo-voc.cfg -------------------------------------------------------------------------------- /yolo/cfg/tiny-yolo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/cfg/tiny-yolo.cfg -------------------------------------------------------------------------------- /yolo/cfg/v1.1/person-bottle.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/cfg/v1.1/person-bottle.cfg -------------------------------------------------------------------------------- /yolo/cfg/v1.1/tiny-coco.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/cfg/v1.1/tiny-coco.cfg -------------------------------------------------------------------------------- /yolo/cfg/v1.1/tiny-yolo-4c.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/cfg/v1.1/tiny-yolo-4c.cfg -------------------------------------------------------------------------------- /yolo/cfg/v1.1/tiny-yolov1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/cfg/v1.1/tiny-yolov1.cfg -------------------------------------------------------------------------------- /yolo/cfg/v1.1/yolo-coco.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/cfg/v1.1/yolo-coco.cfg -------------------------------------------------------------------------------- /yolo/cfg/v1.1/yolov1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/cfg/v1.1/yolov1.cfg -------------------------------------------------------------------------------- /yolo/cfg/v1/tiny-old.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/cfg/v1/tiny-old.profile -------------------------------------------------------------------------------- /yolo/cfg/v1/tiny.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/cfg/v1/tiny.profile -------------------------------------------------------------------------------- /yolo/cfg/v1/yolo-2c.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/cfg/v1/yolo-2c.cfg -------------------------------------------------------------------------------- /yolo/cfg/v1/yolo-4c.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/cfg/v1/yolo-4c.cfg -------------------------------------------------------------------------------- /yolo/cfg/v1/yolo-full.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/cfg/v1/yolo-full.cfg -------------------------------------------------------------------------------- /yolo/cfg/v1/yolo-small.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/cfg/v1/yolo-small.cfg -------------------------------------------------------------------------------- /yolo/cfg/v1/yolo-tiny-extract.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/cfg/v1/yolo-tiny-extract.cfg -------------------------------------------------------------------------------- /yolo/cfg/v1/yolo-tiny-extract_.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/cfg/v1/yolo-tiny-extract_.cfg -------------------------------------------------------------------------------- /yolo/cfg/v1/yolo-tiny.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/cfg/v1/yolo-tiny.cfg -------------------------------------------------------------------------------- /yolo/cfg/v1/yolo-tiny4c.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/cfg/v1/yolo-tiny4c.cfg -------------------------------------------------------------------------------- /yolo/cfg/yolo-12c.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/cfg/yolo-12c.cfg -------------------------------------------------------------------------------- /yolo/cfg/yolo-voc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/cfg/yolo-voc.cfg -------------------------------------------------------------------------------- /yolo/cfg/yolo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/cfg/yolo.cfg -------------------------------------------------------------------------------- /yolo/collect_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/collect_img.py -------------------------------------------------------------------------------- /yolo/imshow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/imshow.py -------------------------------------------------------------------------------- /yolo/labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/labels.txt -------------------------------------------------------------------------------- /yolo/predict_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/predict_img.py -------------------------------------------------------------------------------- /yolo/process_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwnsingh/Object-Detection-in-Floor-Plan-Images/HEAD/yolo/process_video.py --------------------------------------------------------------------------------