Giter VIP home page Giter VIP logo

context-aware-cf-tracking's People

Contributors

thias15 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

context-aware-cf-tracking's Issues

A bout KCF ,solution in the Dual Domain code .

Thank you very much for your paper. The implementation of the code is only in the primal domain. There is no in dual domain code. How can I change it to a dual domain? Thank you.
kf = conj(xf) .* xf;

    kfn = zeros([size(xf) length(offset)]);
    for j=1:length(offset)
        %obtain a subwindow close to target for regression to 0
        patch = get_subwindow(im, pos+offset(j,:), window_sz);
        xfn = fft2(get_features(patch, features, cell_size, cos_window));
        kfn(:,:,:,j) = conj(xfn) .*xfn;
    end

    %Assumption: Features are independent
    num = bsxfun(@times, conj(xf),yf); 
    den = kf + lambda1 + lambda2.*sum(kfn,4);
    wf = num ./ den;
    
	if frame == 1,  %first frame, train with a single image
		model_wf = wf;
	else
		%subsequent frames, interpolate model
		model_wf = (1 - interp_factor) * model_wf + interp_factor * wf;
	end

Code for CACF tracking

Thanks a lot for posting the different tracking algorithms. I was just wondering do you have any plans to push CACF code for tracking?

Steps to build and run

Hello,

Could you please also include the steps to build and run (with the expected pre-requisites) in the Readme .. or point me to where to find these?

Thank you.

mexResize function compiled for the mac

Thank you for the code.
I tried to run the code for on mac system but there is no compiled mex function for the mexResize.cpp
is it possible for you to provide the compiled mex function for the mac OS?
I tried to install opencv and compile the mex files but never succeed

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.