This is the code accompanying the following ICCV 2017 publication:
Semantic Video CNNs through Representation Warping.
实验结果: 感觉这个模型本身就是PSP net, 它提出了用光流去warp后一帧的feature,可是当你把它给的模型参数打印出来看时却发现warp模块学到的参数为0(发邮件也没不回复),这样整个模型的结果就是PSP net.也没有训练脚本,不知道作者怎么做到他的实验效果的,至少他给的模型测试效果还差了一些。
This is developed and maintained by Raghudeep Gadde, Varun Jampani, Peter V. Gehler.
Please visit the project website http://segmentation.is.tue.mpg.de for more details about the paper and overall methodology.
The code provided in this repository relies on the same installation procedure as the one from Caffe.
Before you start with the NetWarp
code, please install all the requirements of Caffe by following the instructions from this page first.
You will then be able to build Caffe with our code.
The repository also contains external code from https://github.com/tikroeger/OF_DIS to compute the optical flow and https://github.com/mcordts/cityscapesScripts to evaluate results on the Cityscapes dataset.
There are mainly two ways for integrating the additional layers provided by our library into Caffe:
- Dowloading a fresh clone of Caffe and patching it with our source files, so that you will be able to test the code with minimal effort.
- Patching an existing copy of Caffe, so that you can integrate our code with your own development on Caffe.
This can be done just by the following commands:
cd $netwarp
mkdir build
cd build
cmake ..
This will configure the project, you may then run:
-
for building the project (note: you should not do "make -j4" like this because it has some dependcies with optical flow library(OF_DIS) ) ``` make
This will clone a Caffe version from the main Caffe repository into the `build` folder and compiles together with our newly added layers.
-
for running the tests, including the ones of the NetWarp:
make runtest
(this follows the same commands as for Caffe)
Notes
-
Our code has been tested with revision
691febcb83d6a3147be8e9583c77aefaac9945f8
of Caffe, and this is the version that is cloned. You may change the version by passing the optionCAFFE_VERSION
on the command line ofcmake
:cmake -DCAFFE_VERSION=some_hash_or_tag ..
such as cmake -DCAFFE_VERSION=HEAD ..
.
-
If you want to use your fork instead of the original Caffe repository, you may provide the option
CAFFE_REPOSITORY
on thecmake
command line (it works exactly as forCAFFE_VERSION
). -
Any additional command line argument you pass to
cmake
will be forwarded to Caffe, except for those used directly by our code:cmake \ -DCMAKE_BUILD_TYPE=Release \ -DBOOST_ROOT=../osx/boost_1_60_0/ -DBoost_ADDITIONAL_VERSIONS="1.60\;1.60.0" ..
You may patch an existing version of Caffe by providing the CAFFE_SRC
on the command line
cd $netwarp
mkdir build
cd build
cmake -DCAFFE_SRC=/your/caffe/local/copy ..
This will add the files of the NetWarp to the source files of the existing Caffe copy, but will also
overwrite caffe.proto (a backup is made in the same folder).
The command will also create a build folder local to the NetWarp repository (inside the build
folder on the previous example): you may use this one
or use any previous one, Caffe should automatically use the sources of the NetWarp.
The above patching that is performed by cmake
is rather a copying of the files from the folder of the netwarp
to the
corresponding folders of Caffe. Caffe will then add the new files into the project.
Alternatively, you can manually copy all but caffe.proto
source files in netwarp
folder to the corresponding locations in your Caffe repository. Then, for merging the caffe.proto
file of netwarp
to your version of the caffe.proto
:
- the copy the lines 409-412 and 1418-1451 in
caffe.proto
to the correspondingcaffe.proto
file in the destination Caffe repository. - Change the parameter IDs for
BNParameter
,WarpParameter
, andInterpParameter
based on the next availableLayerParameter
ID in your Caffe.
To use the provided code and replicate the results on the Cityscapes val
dataset,
Download leftImg8bit_sequence.zip
from the Cityscapes dataset webpage https://www.cityscapes-dataset.com/ in the data
folder. If you want to compute the accuracy scores on the val
set, also download the gtFine.zip file. Extract content from both the zip files and place them in the data
folder following the same directory structure. Also set the CITYSCAPES_DATASET
environment variable with the path to the dataset.
export CITYSCAPES_DATASET='$netwarp/data/cityscapes/'
Next, compute the optical flow using the following command
export NETWARP_BUILD_DIR='/path/to/build/'
cd $netwarp
python scripts/extract_opticalflow.py VAL
The above command will compute the optical flow on the Cityscapes val set and save them in the Cityscapes dataset folder.
Execute the below command to download a NetWarp model for PSPNet, trained on Cityscapes train
videos.
sh scripts/get_cityscapes_model.sh
This will download the caffemodel in the models
folder. (We shall hopefully release more models in the coming days).
You can run the segmentation using the run_netwarp.py
python script in the $netwarp/scripts
folder which rely on the Python extensions of Caffe.
Syntax for running the segmentation script:
cd $netwarp
python scripts/run_netwarp.py data_split path_to_prototxt path_to_caffemodel path_to_results_dir number_of_gpus_to_use
To run the segmentation on Cityscapes validation set:
python scripts/run_netwarp.py VAL models/pspnet101_cityscapes_conv5_4netwarp_deploy.prototxt models/pspnet101_cityscapes_conv5_4netwarp.caffemodel results/ 2
The above command will save color coded segmentation masks in results/color/
and class indexed segmentation masks suitable for computing IoU using cityscapesScripts
in results/index/
We provide a python script to compute the Trimap IoU score of the obtained segmentations.
cd $netwarp
python scripts/compute_scores.py VAL path_to_results trimap_width
An example to compute Trimap IoU on the obtained results:
python scripts/compute_scores.py VAL results/index/ 3
Please consider citing the below paper if you make use of this work and/or the corresponding code:
@inproceedings{gadde2017semantic,
author = {Gadde, Raghudeep and Jampani, Varun and Gehler, Peter V.},
title = {Semantic Video CNNs Through Representation Warping},
booktitle = {The IEEE International Conference on Computer Vision (ICCV)},
month = {Oct},
year = {2017}
}
If you use the dense inverse search based optical flow, please do not forget citing the relavant paper:
@inproceedings{kroeger2016fast,
title={Fast optical flow using dense inverse search},
author={Kroeger, Till and Timofte, Radu and Dai, Dengxin and Van Gool, Luc},
booktitle={European Conference on Computer Vision},
pages={471--488},
year={2016},
organization={Springer}
}
=======