└── img_attack_with_attention ├── .gitignore ├── .idea ├── encodings.xml ├── img_attack_with_attention.iml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml └── workspace.xml ├── BR ├── __init__.py ├── feature_attack_test.py └── generate_adv.py ├── README.md ├── __init__.py ├── attacks.py ├── checkpoints └── 10.path ├── convert2onnx.py ├── data ├── __init__.pyc ├── __pycache__ │ ├── __init__.cpython-35.pyc │ ├── dataset.cpython-35.pyc │ ├── util.cpython-35.pyc │ ├── voc_dataset.cpython-35.pyc │ └── wider_dataset.cpython-35.pyc ├── dataset.py ├── dataset.pyc ├── util.py ├── util.pyc ├── voc_dataset.py ├── voc_dataset.pyc ├── wider_dataset.py └── wider_dataset.pyc ├── feature_and_cls_attack_trainer.py ├── misc ├── convert_caffe_pretrain.py ├── demo.jpg └── train_fast.py ├── model ├── GAN.py ├── GAN_model.py ├── __init__.py ├── __init__.pyc ├── __pycache__ │ ├── GAN.cpython-35.pyc │ ├── GAN_model.cpython-35.pyc │ ├── __init__.cpython-35.pyc │ ├── faster_rcnn.cpython-35.pyc │ ├── faster_rcnn_vgg16.cpython-35.pyc │ ├── region_proposal_network.cpython-35.pyc │ └── roi_module.cpython-35.pyc ├── faster_rcnn.py ├── faster_rcnn.pyc ├── faster_rcnn_vgg16.py ├── faster_rcnn_vgg16.pyc ├── region_proposal_network.py ├── region_proposal_network.pyc ├── roi_module.py ├── roi_module.pyc └── utils │ ├── __init__.pyc │ ├── __pycache__ │ ├── __init__.cpython-35.pyc │ ├── bbox_tools.cpython-35.pyc │ ├── creator_tool.cpython-35.pyc │ └── roi_cupy.cpython-35.pyc │ ├── array_tool.py │ ├── array_tool.pyc │ ├── bbox_tools.py │ ├── bbox_tools.pyc │ ├── config.py │ ├── config.pyc │ ├── creator_tool.py │ ├── creator_tool.pyc │ ├── nms │ ├── __init__.py │ ├── __init__.pyc │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ ├── _nms_gpu_post_py.cpython-35.pyc │ │ └── non_maximum_suppression.cpython-35.pyc │ ├── _nms_gpu_post.c │ ├── _nms_gpu_post.cpython-35m-x86_64-linux-gnu.so │ ├── _nms_gpu_post.pyx │ ├── _nms_gpu_post_py.py │ ├── _nms_gpu_post_py.pyc │ ├── build.py │ ├── build │ │ └── temp.linux-x86_64-3.5 │ │ │ └── _nms_gpu_post.o │ ├── non_maximum_suppression.py │ └── non_maximum_suppression.pyc │ ├── roi_cupy.py │ └── roi_cupy.pyc ├── target_img.jpg ├── test.py ├── trainer.py └── utils ├── __init__.py ├── __init__.pyc ├── __pycache__ ├── __init__.cpython-35.pyc ├── array_tool.cpython-35.pyc ├── config.cpython-35.pyc ├── eval_tool.cpython-35.pyc └── vis_tool.cpython-35.pyc ├── array_tool.py ├── array_tool.pyc ├── config.py ├── config.pyc ├── eval_tool.py ├── eval_tool.pyc ├── vis_tool.py └── vis_tool.pyc /img_attack_with_attention/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .idea/* 3 | -------------------------------------------------------------------------------- /img_attack_with_attention/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/.idea/encodings.xml -------------------------------------------------------------------------------- /img_attack_with_attention/.idea/img_attack_with_attention.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/.idea/img_attack_with_attention.iml -------------------------------------------------------------------------------- /img_attack_with_attention/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /img_attack_with_attention/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/.idea/misc.xml -------------------------------------------------------------------------------- /img_attack_with_attention/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/.idea/modules.xml -------------------------------------------------------------------------------- /img_attack_with_attention/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/.idea/workspace.xml -------------------------------------------------------------------------------- /img_attack_with_attention/BR/__init__.py: -------------------------------------------------------------------------------- 1 | #-*-coding:utf-8-*- -------------------------------------------------------------------------------- /img_attack_with_attention/BR/feature_attack_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/BR/feature_attack_test.py -------------------------------------------------------------------------------- /img_attack_with_attention/BR/generate_adv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/BR/generate_adv.py -------------------------------------------------------------------------------- /img_attack_with_attention/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/README.md -------------------------------------------------------------------------------- /img_attack_with_attention/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/__init__.py -------------------------------------------------------------------------------- /img_attack_with_attention/attacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/attacks.py -------------------------------------------------------------------------------- /img_attack_with_attention/checkpoints/10.path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/checkpoints/10.path -------------------------------------------------------------------------------- /img_attack_with_attention/convert2onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/convert2onnx.py -------------------------------------------------------------------------------- /img_attack_with_attention/data/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/data/__init__.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/data/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/data/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/data/__pycache__/dataset.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/data/__pycache__/dataset.cpython-35.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/data/__pycache__/util.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/data/__pycache__/util.cpython-35.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/data/__pycache__/voc_dataset.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/data/__pycache__/voc_dataset.cpython-35.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/data/__pycache__/wider_dataset.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/data/__pycache__/wider_dataset.cpython-35.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/data/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/data/dataset.py -------------------------------------------------------------------------------- /img_attack_with_attention/data/dataset.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/data/dataset.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/data/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/data/util.py -------------------------------------------------------------------------------- /img_attack_with_attention/data/util.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/data/util.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/data/voc_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/data/voc_dataset.py -------------------------------------------------------------------------------- /img_attack_with_attention/data/voc_dataset.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/data/voc_dataset.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/data/wider_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/data/wider_dataset.py -------------------------------------------------------------------------------- /img_attack_with_attention/data/wider_dataset.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/data/wider_dataset.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/feature_and_cls_attack_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/feature_and_cls_attack_trainer.py -------------------------------------------------------------------------------- /img_attack_with_attention/misc/convert_caffe_pretrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/misc/convert_caffe_pretrain.py -------------------------------------------------------------------------------- /img_attack_with_attention/misc/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/misc/demo.jpg -------------------------------------------------------------------------------- /img_attack_with_attention/misc/train_fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/misc/train_fast.py -------------------------------------------------------------------------------- /img_attack_with_attention/model/GAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/GAN.py -------------------------------------------------------------------------------- /img_attack_with_attention/model/GAN_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/GAN_model.py -------------------------------------------------------------------------------- /img_attack_with_attention/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/__init__.py -------------------------------------------------------------------------------- /img_attack_with_attention/model/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/__init__.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/model/__pycache__/GAN.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/__pycache__/GAN.cpython-35.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/model/__pycache__/GAN_model.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/__pycache__/GAN_model.cpython-35.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/model/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/model/__pycache__/faster_rcnn.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/__pycache__/faster_rcnn.cpython-35.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/model/__pycache__/faster_rcnn_vgg16.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/__pycache__/faster_rcnn_vgg16.cpython-35.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/model/__pycache__/region_proposal_network.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/__pycache__/region_proposal_network.cpython-35.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/model/__pycache__/roi_module.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/__pycache__/roi_module.cpython-35.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/model/faster_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/faster_rcnn.py -------------------------------------------------------------------------------- /img_attack_with_attention/model/faster_rcnn.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/faster_rcnn.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/model/faster_rcnn_vgg16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/faster_rcnn_vgg16.py -------------------------------------------------------------------------------- /img_attack_with_attention/model/faster_rcnn_vgg16.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/faster_rcnn_vgg16.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/model/region_proposal_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/region_proposal_network.py -------------------------------------------------------------------------------- /img_attack_with_attention/model/region_proposal_network.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/region_proposal_network.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/model/roi_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/roi_module.py -------------------------------------------------------------------------------- /img_attack_with_attention/model/roi_module.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/roi_module.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/model/utils/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/utils/__init__.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/model/utils/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/utils/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/model/utils/__pycache__/bbox_tools.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/utils/__pycache__/bbox_tools.cpython-35.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/model/utils/__pycache__/creator_tool.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/utils/__pycache__/creator_tool.cpython-35.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/model/utils/__pycache__/roi_cupy.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/utils/__pycache__/roi_cupy.cpython-35.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/model/utils/array_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/utils/array_tool.py -------------------------------------------------------------------------------- /img_attack_with_attention/model/utils/array_tool.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/utils/array_tool.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/model/utils/bbox_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/utils/bbox_tools.py -------------------------------------------------------------------------------- /img_attack_with_attention/model/utils/bbox_tools.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/utils/bbox_tools.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/model/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/utils/config.py -------------------------------------------------------------------------------- /img_attack_with_attention/model/utils/config.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/utils/config.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/model/utils/creator_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/utils/creator_tool.py -------------------------------------------------------------------------------- /img_attack_with_attention/model/utils/creator_tool.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/utils/creator_tool.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/model/utils/nms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/utils/nms/__init__.py -------------------------------------------------------------------------------- /img_attack_with_attention/model/utils/nms/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/utils/nms/__init__.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/model/utils/nms/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/utils/nms/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/model/utils/nms/__pycache__/_nms_gpu_post_py.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/utils/nms/__pycache__/_nms_gpu_post_py.cpython-35.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/model/utils/nms/__pycache__/non_maximum_suppression.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/utils/nms/__pycache__/non_maximum_suppression.cpython-35.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/model/utils/nms/_nms_gpu_post.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/utils/nms/_nms_gpu_post.c -------------------------------------------------------------------------------- /img_attack_with_attention/model/utils/nms/_nms_gpu_post.cpython-35m-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/utils/nms/_nms_gpu_post.cpython-35m-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /img_attack_with_attention/model/utils/nms/_nms_gpu_post.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/utils/nms/_nms_gpu_post.pyx -------------------------------------------------------------------------------- /img_attack_with_attention/model/utils/nms/_nms_gpu_post_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/utils/nms/_nms_gpu_post_py.py -------------------------------------------------------------------------------- /img_attack_with_attention/model/utils/nms/_nms_gpu_post_py.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/utils/nms/_nms_gpu_post_py.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/model/utils/nms/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/utils/nms/build.py -------------------------------------------------------------------------------- /img_attack_with_attention/model/utils/nms/build/temp.linux-x86_64-3.5/_nms_gpu_post.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/utils/nms/build/temp.linux-x86_64-3.5/_nms_gpu_post.o -------------------------------------------------------------------------------- /img_attack_with_attention/model/utils/nms/non_maximum_suppression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/utils/nms/non_maximum_suppression.py -------------------------------------------------------------------------------- /img_attack_with_attention/model/utils/nms/non_maximum_suppression.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/utils/nms/non_maximum_suppression.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/model/utils/roi_cupy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/utils/roi_cupy.py -------------------------------------------------------------------------------- /img_attack_with_attention/model/utils/roi_cupy.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/model/utils/roi_cupy.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/target_img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/target_img.jpg -------------------------------------------------------------------------------- /img_attack_with_attention/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/test.py -------------------------------------------------------------------------------- /img_attack_with_attention/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/trainer.py -------------------------------------------------------------------------------- /img_attack_with_attention/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/utils/__init__.py -------------------------------------------------------------------------------- /img_attack_with_attention/utils/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/utils/__init__.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/utils/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/utils/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/utils/__pycache__/array_tool.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/utils/__pycache__/array_tool.cpython-35.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/utils/__pycache__/config.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/utils/__pycache__/config.cpython-35.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/utils/__pycache__/eval_tool.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/utils/__pycache__/eval_tool.cpython-35.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/utils/__pycache__/vis_tool.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/utils/__pycache__/vis_tool.cpython-35.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/utils/array_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/utils/array_tool.py -------------------------------------------------------------------------------- /img_attack_with_attention/utils/array_tool.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/utils/array_tool.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/utils/config.py -------------------------------------------------------------------------------- /img_attack_with_attention/utils/config.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/utils/config.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/utils/eval_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/utils/eval_tool.py -------------------------------------------------------------------------------- /img_attack_with_attention/utils/eval_tool.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/utils/eval_tool.pyc -------------------------------------------------------------------------------- /img_attack_with_attention/utils/vis_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/utils/vis_tool.py -------------------------------------------------------------------------------- /img_attack_with_attention/utils/vis_tool.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiangSiyuan21/Adversarial-Attacks-for-Image-and-Video-Object-Detection/HEAD/img_attack_with_attention/utils/vis_tool.pyc --------------------------------------------------------------------------------