Skip to content

qilimk/strike-with-a-pose

 
 

Repository files navigation

Strike (With) A Pose

This is the companion tool to the paper:

Michael A. Alcorn, Qi Li, Zhitao Gong, Chengfei Wang, Long Mai, Wei-Shinn Ku, and Anh Nguyen. Strike (with) a pose: Neural networks are easily fooled by strange poses of familiar objects. arXiv 1811.11553. 2018.

The tool allows you to generate adversarial poses of objects with a graphical user interface. Please note that the included jeep object (freely available here) does not meet the realism standards set in the paper. Unfortunately, the school bus object shown in the GIF is proprietary and cannot be distributed with the tool. A web port of the tool (created by Zhitao Gong) can be found here.

If you use this tool for your own research, please cite:

@article{alcorn-2018-strike-with-a-pose,
    Author = {Alcorn, Michael A. and Li, Qi and Gong, Zhitao and Wang, Chengfei and Mai, Long and Ku, Wei-Shinn and Nguyen, Anh},
    Title = {{Strike (with) a Pose: Neural Networks Are Easily Fooled by Strange Poses of Familiar Objects}},
    Journal = {arXiv preprint},
    Year = {2018}
}

Requirements

  • Git (Linux users only)
  • OpenGL ≥ 3.3 (many computers satisfy this requirement)
    • On Linux, you can check your OpenGL version with the following command (requires glx-utils on Fedora or mesa-utils on Ubuntu):
    glxinfo | grep "OpenGL version"
  • Python 3 (Mac, Windows)
    /Applications/Python\ 3.x/Install\ Certificates.command
    where x is the minor version of your particular Python 3 install. If you used the above link to install Python, the file will be at:
    /Applications/Python\ 3.6/Install\ Certificates.command

Install/Run

Note: the tool takes a little while to start the first time it's run because it has to download the neural network.

Linux

In the terminal, enter the following commands:

# Clone the strike-with-a-pose repository.
git clone https://github.com/airalcorn2/strike-with-a-pose.git
# Move to the strike-with-a-pose directory.
cd strike-with-a-pose
# Install strike-with-a-pose.
pip3 install .
# Run strike-with-a-pose.
strike-with-a-pose

You can also run the tool (after installing) by starting Python and entering the following:

from strike_with_a_pose import app
app.run_gui()

Mac

  1. Click here to download the tool ZIP.
  2. Extract the ZIP somewhere convenient (like your desktop).
  3. Double-click install.command in the strike-with-a-pose-master/ directory.
  1. Double-click strike-with-a-pose.command in the strike-with-a-pose-master/run/ directory.

Windows

  1. Click here to download the tool ZIP.
  2. Extract the ZIP somewhere convenient (like your desktop).
  3. Double-click install.bat in the strike-with-a-pose-master\ directory.
  • Note: you may need to click "More info" and then "Run anyway".
  1. Double-click strike-with-a-pose.bat in the strike-with-a-pose-master\run\ directory.

For Experts

Using Different Objects and Backgrounds

Users can test their own objects and backgrounds in Strike (With) A Pose by:

  1. Adding the appropriate files to the scene_files/ directory.
  2. Modifying the BACKGROUND_F and OBJ_AND_TEXTURE_FS variables in settings.py accordingly.
  3. Running the following command inside the strike-with-a-pose/ directory:
PYTHONPATH=strike_with_a_pose python3 -m strike_with_a_pose.app

Using Different Machine Learning Models

Users can experiment with different machine learning models in Strike (With) A Pose by:

  1. Defining a model class that implements the get_gui_comps, init_scene_comps, predict, render, and clear functions (e.g., image_classifier.py, object_detector.py, image_captioner.py, and class_activation_mapper.py [with major contributions by Qi Li]).
  2. Setting the MODEL variable in settings.py accordingly.
  3. Running the following command inside the strike-with-a-pose/ directory:
PYTHONPATH=strike_with_a_pose python3 -m strike_with_a_pose.app

To use the image captioner model, first download and install the COCO API:

git clone https://github.com/pdollar/coco.git
cd coco/PythonAPI/
make
python3 setup.py build
python3 setup.py install

Image Classifier

Object Detector

"The Elephant in the Room"-like (Rosenfeld et al., 2018) examples:

Image Captioner

Class Activation Mapper

"Learning Deep Features for Discriminative Localization"-like (Zhou et al., 2016) examples.

Additional Modes

Pressing L will toggle Live mode. When on, the neural network will continuously generate predictions. Note, Live mode can cause considerable lag if you do not have each of (1) a powerful GPU, (2) CUDA installed, and (3) a PyTorch version with CUDA support installed.

Pressing X will toggle the object's teXture, which is useful for making sure the directional light is properly interacting with your object. If the light looks funny, swapping/negating the vertex normal coordinates can usually fix it. See the fix_normals.py script for an example.

About

A simple GUI application for generating adversarial poses of objects.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 66.0%
  • Python 31.6%
  • HTML 1.6%
  • Other 0.8%