| Test passed |
|---|
Matlab implementation of Part-Based Background-Aware Tracking for UAV with Convolutional Features (PBBAT-tracker).
This paper has been published by IEEE Access.
You can find this paper here: https://ieeexplore.ieee.org/document/8736485.
Please cite this paper as:
@ARTICLE{8736485,
author={C. {Fu} and Y. {Zhang} and Z. {Huang} and R. {Duan} and Z. {Xie}},
journal={IEEE Access},
title={Part-Based Background-Aware Tracking for UAV With Convolutional Features},
year={2019},
volume={7},
number={},
pages={79997-80010},}
- Download
imagenet-vgg-verydeep-19.matfrom here and put it in./model. - Download matconvnet toolbox here and put it in
./external. - Run
PBBAT_Demo.m
Note: the original version is using CPU to run the whole program. If GPU version is required, just change false in the following lines in run_PBBAT.m to true:
global enableGPU;
enableGPU = true;
vl_setupnn();
vl_compilenn('enableGpu', true);The parameter settings are partly borrowed from BACF paper and convolutional feature extraction function is borrowed from HCF.