RESETDSKCFTRACKERINFO.m re-initializes the data structure for DS-KCF tracker before processing a new frame[1] RESETDSKCFTRACKERINFO re-initializes the data structure for DS-KCF tracker before processing a new frame[1] INPUT: -trackerDSKCF_structIN tracker data structure OUTPUT -trackerDSKCF_struct data structure with re-set tracking info [1] S. Hannuna, M. Camplani, J. Hall, M. Mirmehdi, D. Damen, T. Burghardt, A. Paiement, L. Tao, DS-KCF: A real-time tracker for RGB-D data, Journal of Real-Time Image Processing See also SINGLEFRAMEDSKCF University of Bristol Massimo Camplani and Sion Hannuna massimo.camplani@bristol.ac.uk hannuna@compsci.bristol.ac.uk
0001 function trackerDSKCF_struct=resetDSKCFtrackerInfo(trackerDSKCF_struct) 0002 % RESETDSKCFTRACKERINFO.m re-initializes the data structure for DS-KCF tracker before processing a new frame[1] 0003 % 0004 % RESETDSKCFTRACKERINFO re-initializes the data structure for DS-KCF 0005 % tracker before processing a new frame[1] 0006 % 0007 % INPUT: 0008 % -trackerDSKCF_structIN tracker data structure 0009 % OUTPUT 0010 % -trackerDSKCF_struct data structure with re-set tracking info 0011 % 0012 % [1] S. Hannuna, M. Camplani, J. Hall, M. Mirmehdi, D. Damen, T. 0013 % Burghardt, A. Paiement, L. Tao, DS-KCF: A real-time tracker for RGB-D 0014 % data, Journal of Real-Time Image Processing 0015 % See also SINGLEFRAMEDSKCF 0016 % 0017 % University of Bristol 0018 % Massimo Camplani and Sion Hannuna 0019 % 0020 % massimo.camplani@bristol.ac.uk 0021 % hannuna@compsci.bristol.ac.uk 0022 0023 %trackerDSKCF_struct=trackerDSKCF_structIN; 0024 trackerDSKCF_struct.currentTarget.occBB=[0 0 0 0]; % in the format [topLeftX, topLeftY, bottomRightX, bottomRightY] 0025 trackerDSKCF_struct.currentTarget.totalOcc=0; % total occlusion flag 0026 trackerDSKCF_struct.currentTarget.underOcclusion=0; % under occlusion flag 0027 trackerDSKCF_struct.currentTarget.conf=0; 0028