plateform
stringclasses
1 value
repo_name
stringlengths
13
113
name
stringlengths
3
74
ext
stringclasses
1 value
path
stringlengths
12
229
size
int64
23
843k
source_encoding
stringclasses
9 values
md5
stringlengths
32
32
text
stringlengths
23
843k
github
naydden/astrea-master
cartesian.m
.m
astrea-master/1.ENTREGA/2.Report_attachments/Attachment_6/sections/MatlabCodes/Codes/cartesian.m
520
utf_8
ce1d270d5bf8ea81d97ff795ddd7b352
% This function converts kepler orbit elements to cartesian coordinates % a: semimajor axis % e: eccentricity % i: inclination [rad] % Omega: longitude of the ascending node [rad] % w: Argument of periapsis [rad] % nu: True anomaly [rad] function [X] = cartesian(a,e,i,Omega,w,nu) % Position in cylindrical coordinate...
github
naydden/astrea-master
cartesian2.m
.m
astrea-master/Carpeta a banda/2.Report_attachments/Attachment_6/sections/MatlabCodes/Codes/cartesian2.m
818
utf_8
4c7acb11811f4f26b84130d176fc00cc
% This function converts kepler orbit elements to cartesian coordinates % a: semimajor axis % e: eccentricity % i: inclination [rad] % Omega: longitude of the ascending node [rad] % w: Argument of periapsis [rad] % nu: True anomaly [rad] function [y] = cartesian2(a,e,i,Omega,w,nu) global mu; % Position in cylindrical...
github
naydden/astrea-master
cartesian.m
.m
astrea-master/Carpeta a banda/2.Report_attachments/Attachment_6/sections/MatlabCodes/Codes/cartesian.m
520
utf_8
ce1d270d5bf8ea81d97ff795ddd7b352
% This function converts kepler orbit elements to cartesian coordinates % a: semimajor axis % e: eccentricity % i: inclination [rad] % Omega: longitude of the ascending node [rad] % w: Argument of periapsis [rad] % nu: True anomaly [rad] function [X] = cartesian(a,e,i,Omega,w,nu) % Position in cylindrical coordinate...
github
basp-group/SARA-dimensionality-reduction-main
rsing_admm.m
.m
SARA-dimensionality-reduction-main/rsing_admm.m
13,824
utf_8
4eabd588064096c27217d57661509b1c
function [SNR, DR, M, histogrampeakiness, tend] = rsing_admm(visibSize, input_snr, imgfile, coveragefile, run) % inputs % 1. visibSize = total number of visibilities in the data vector [usually some % multiple of signal vector size p*(imgSize)] % 2. input_snr = input signal to noise ratio, to define the sigma of the ad...
github
basp-group/SARA-dimensionality-reduction-main
rsing_discardsingvalues_admm.m
.m
SARA-dimensionality-reduction-main/rsing_discardsingvalues_admm.m
15,164
utf_8
3783bfaa9e8bdf3666143428ad9de21b
function [SNR, DR, M, histogrampeakiness, tend] = rsing_discardsingvalues_admm(visibSize, input_snr, imgfile, coveragefile, klargestpercent, run) % inputs % 1. visibSize = total number of visibilities in the data vector [usually some % multiple of signal vector size p*(imgSize)] % 2. input_snr = input signal to noise r...
github
basp-group/SARA-dimensionality-reduction-main
realdata_rsing_pdfb.m
.m
SARA-dimensionality-reduction-main/realdata_rsing_pdfb.m
11,614
utf_8
73bed4b2d0958dbb79f11e8dc884d0fb
addpath data/ addpath data/vis addpath lib/ try run('src/irt/setup.m'); catch ME error('NUFFT library not found in location src/irt'); end %% run parameters % 0 - loads new data from file based on the dataset number supplied % 1 - generates new data % 2 - uses the data in matlab's workspace gen_data = 1; gen_...
github
basp-group/SARA-dimensionality-reduction-main
solver_prox_L1_par.m
.m
SARA-dimensionality-reduction-main/lib/solver_prox_L1_par.m
4,977
utf_8
dee9e99614810c96587cd343c6f4135e
function [sol, norm_l1] = solver_prox_L1_par(x, lambda, param) % PROJ_L1 - Proximal operator with L1 norm % % sol = prox_L1(x, lambda, param) solves: % % min_{z} 0.5*||x - z||_2^2 + lambda * ||Psit x||_1 % % The input argument param contains the following fields: % % - Psit: Sparsifying transform (default: Id). % %...
github
basp-group/SARA-dimensionality-reduction-main
op_sp_wlt_basis.m
.m
SARA-dimensionality-reduction-main/lib/op_sp_wlt_basis.m
1,942
utf_8
fcf7e62dfc4864012d0c4516eabd4837
function [Psi, Psit] = op_sp_wlt_basis(basis, nlevel, Ny, Nx) % Resturns the operator to the sparsity wavelet basis passed as argument % % in: % basis{:} - cell of strigs with the names of the wavelets to be used % eg: {'db1', 'db2', 'self'} % nlevel - decomposition level % Ny, Nx - image size ...
github
basp-group/SARA-dimensionality-reduction-main
solver_proj_elipse.m
.m
SARA-dimensionality-reduction-main/lib/solver_proj_elipse.m
3,898
utf_8
8d2f937288f7b66526cc4acdd79c0f3a
function [x, k] = solver_proj_elipse(a, U, r, p, y, max_itr, min_itr, eps) r = r^2 - y' * y; U = [U; U].^2; a = [real(a); imag(a)]; y = [real(y); imag(y)]; p = [real(p); imag(p)]; ysrt = sqrt(U) .* y; fa = a' * (U .* a) - 2 * a' * ysrt; ga = U .* a - ysrt; k = 0; if ( f...
github
basp-group/SARA-dimensionality-reduction-main
op_p_sp_wlt_basis.m
.m
SARA-dimensionality-reduction-main/lib/op_p_sp_wlt_basis.m
2,020
utf_8
91d19629e1e645bd8accce44321cc129
function [Psi, Psit] = op_p_sp_wlt_basis(basis, nlevel, Ny, Nx) % Resturns the operator to the sparsity wavelet basis passed as argument % Each basis is considered to be distributed to a different node % % in: % basis{:} - cell of strigs with the names of the wavelets to be used % eg: {'db1', 'db2', 'sel...
github
basp-group/SARA-dimensionality-reduction-main
solver_find_elipse_point.m
.m
SARA-dimensionality-reduction-main/lib/solver_find_elipse_point.m
2,256
utf_8
ae14a83cd053edcfd8b352350238dcfb
function [proj] = solver_find_elipse_point(y, pU, A, T, xsol, v2, W, epsilont, max_iterations, min_iterations, eps, use_fb, max_no_el) if ~exist('use_fb', 'var') use_fb = 1; end if ~exist('max_no_el', 'var') max_no_el = 500; end R = size(y, 1); proj = cell(R, 1); if ~use_fb for q = 1:R nel = min...
github
basp-group/SARA-dimensionality-reduction-main
afclean.m
.m
SARA-dimensionality-reduction-main/lib/afclean.m
3,480
utf_8
2a12e08df957acbe3942c9cd0c0ae9fb
function fh_clean=afclean(fh) %AFCLEAN - Tries to purge an anonymous function of all non-essential workspace data % % fh_clean=afclean(fh) % %in: % % fh: an anonymous funtion % %out: % % fh_clean: The same as fh, but with its workspace reduced to the % essential variables. % % DISCLAIMERS: The cleaning process will...
github
oceansites/software-master
make_osfile_move1_12.m
.m
software-master/Matthias_Matlab_Code/make_osfile_move1_12.m
38,281
utf_8
161784bd6da5d6b6367918315da5e45d
% MAKE_OSFILE_MOVE... Generate OceanSITES data files for MOVE % moorings % % Time-stamp: <2018-06-19 17:35:16 mlankhorst> function make_osfile_move1_12 opt_skip_adjust=1; %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Output file name: %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%...
github
oceansites/software-master
make_osfile_cce1_10_temphumipres.m
.m
software-master/Matthias_Matlab_Code/make_osfile_cce1_10_temphumipres.m
19,052
utf_8
dc98c3a61c3f3b9e2ccb93faff66384c
% MAKE_OSFILE_CCE1_10_TEMPHUMIPRES % % Read and process met data from this particular deployment. % % Time-stamp: <2017-11-15 11:42:46 mlankhorst> % % If you want to re-use this file, look for comments that read % "UPDATE HERE"; these mark places that you will likely have to % change for every new deployment. function...
github
oceansites/software-master
generate_OS_EXAMPLEFILE.m
.m
software-master/Matthias_Matlab_Code/generate_OS_EXAMPLEFILE.m
17,705
utf_8
44ce41d69bcf34fc0fe313d6851c42b9
% generate_OS_EXAMPLEFILE % % Generic script to create an OceanSITES data file. % % CAUTION: This was meant for OceanSITES format 1.2. The format has % since changed. However, the basic concept of writing a netCDF % file is still the same. % % OceanSITES data files are netCDF files with a certain metadata % syntax and ...
github
oceansites/software-master
apply_flags.m
.m
software-master/Nathan_Code/Deep_TSP_Nathan/+sal/apply_flags.m
970
utf_8
3bd4bb9ffa5b8ddf64d6e63cd16b1dd6
function [flags,dft] = apply_flags(time,inputs,flags,dft) % Applies flags from config.m. if isfield(inputs,'sflags') flags.S = flag_routine(time,inputs.sflags,flags.S); dft.sal(flags.S==5 | flags.S==0) = NaN; end if isfield(inputs,'cflags') flags.C = flag_routine(time,inputs.cflags,flags.C); dft.cond(f...
github
oceansites/software-master
davg.m
.m
software-master/Nathan_Code/Deep_TSP_Nathan/+sal/davg.m
3,759
utf_8
77df719807fcafc080c9c07c3d5e1415
function [time_dy,davg,flags] = davg(time,time_hr,temp_dft,cond_flt,pres_dft,sal_flt,dens_flt,flags) % This function takes 10 minute T & P data and calculates daily data. % This function takes 1 hourly C, S, & D data and calculates daily data. % Pad to start/end of day. startdt = datevec(time(1)); start_hr = datevec(t...
github
oceansites/software-master
hanning_qc.m
.m
software-master/Nathan_Code/Deep_TSP_Nathan/+sal/hanning_qc.m
7,812
utf_8
97d1500f841a9ef3d281bcf72e37ff29
function [time_hr,flt,flags] = hanning_qc(time,dft,filter_width,flags) % Uses a Hanning filter to compute hourly values from 10min data. % Matlab hanning filter is two shorter than python's. % Divide filter weights by sum of their total, so weights add to 1 (100%). wts = hann(filter_width+2)/sum(hann(filter_width+2));...
github
oceansites/software-master
InstLookup.m
.m
software-master/L22/InstLookup.m
2,579
utf_8
478462bf5ce0138f0601cdae23c2b4c8
function[stdInst]=InstLookup(localInsts) % get standardized info from xml Instruments.xml file, for OceanSITES output % 20191227 ngalbraith WHOI/UOP % % input argument(s): % localInsts: cell of strings, or single string, with local instrument name(s), % e.g. mcat, tpod, vmcm % NOTE: these names must be in your inst...
github
wittawatj/smir-master
smir.m
.m
smir-master/smir.m
5,078
utf_8
709361a2df4a102d086c99ae25ff218b
function SM = smir(X, Yc, options) % % Squared-loss Mutual Information Regularization (SMIR) % % - X: input data matrix of d x n % where d is dimension, and n is the sample size. % % - Yc: output values in {1,...,c} of size 1 x l % where c is the number of classes. % l is the number of labeled points. So, the...
github
wittawatj/smir-master
ipdm.m
.m
smir-master/helper/ipdm.m
38,831
utf_8
dff9a997561db408ab898c6597b8eca5
function d = ipdm(data1,varargin) % ipdm: Inter-Point Distance Matrix % usage: d = ipdm(data1) % usage: d = ipdm(data1,data2) % usage: d = ipdm(data1,prop,value) % usage: d = ipdm(data1,data2,prop,value) % % Arguments: (input) % data1 - array of data points, each point is one row. p dimensional % data will be...
github
wittawatj/smir-master
myProcessOptions.m
.m
smir-master/helper/myProcessOptions.m
708
utf_8
9133beb47feeddc3d6d720733accdfc2
function [varargout] = myProcessOptions(options,varargin) % Similar to processOptions, but case insensitive and % using a struct instead of a variable length list % % Taken from Mark Schmidt code. options = toUpper(options); for i = 1:2:length(varargin) if isfield(options,upper(varargin{i})) v = getfiel...
github
amkatrutsa/QPFeatureSelection-master
stability.m
.m
QPFeatureSelection-master/mcode/criteria/stability.m
1,898
utf_8
f4577bccf53efa9aa9015d3c16600de0
function [ d ] = stability( X, y, w, par ) % Function computes the number of features, % after their deleting the error function is less than par.s_0. % Deleting features is implemented through the Belsley procedure. % % Input: % X - [m, p] - design matrix with shrinkage number of predictors % y - [m, 1] - ta...
github
amkatrutsa/QPFeatureSelection-master
TestMask.m
.m
QPFeatureSelection-master/mcode/alg/TestMask.m
1,029
utf_8
18d2185ae9198ea480417ba235a77997
function [error] = TestMask(mask, features, target, param) % Function TestMask estimates parameter with OLS and computes computes % the error function used features from mask vector. % % Input: % mask - features mask (column) or masks (matrix) % features - [n, m] - design matrix, where rows are objects, and colu...
github
amkatrutsa/QPFeatureSelection-master
LARS.m
.m
QPFeatureSelection-master/mcode/alg/LARS.m
9,584
utf_8
0253d1c0eca947e720a3fb1a34abcf54
function [b info] = LARS(X, y, par, stop, storepath, verbose) %LAR Compute least angle regression solutions using the LARS algorithm. % % BETA = LAR(X, y) performs least angle regression (LAR) [1] on the % variables in X to approximate the response y. Variables X (n x p) are % assumed to be normalized (zero ...
github
joelgallant/visual-trackers-master
ndhistogram_coeff.m
.m
visual-trackers-master/trackers/SIR-PF/ndhistogram_coeff.m
716
utf_8
d8d7e52b8549f887e4375cc0feddb0c9
% Both histograms must be normalised % (i.e. bin values lie in range 0->1 and SUM(bins(i)) = 1 % for i = {histogram1, histogram2} ) function [coef, normal] = ndhistogram_coeff(q,p) %,type %{ if size(q) ~= size(p), coef = inf; normal = 0; end %} %% ----Bhattacharyya %if strcmp(type,'Bhattach...
github
joelgallant/visual-trackers-master
weights_hist_particles.m
.m
visual-trackers-master/trackers/SIR-PF/weights_hist_particles.m
2,606
utf_8
0348ffd401c8d59a39022d3024586aed
%function [W, HistY, HistCb, HistCr] = weights_hist_particles(height, width, d, bPadd, w_size, X, Y, iY, iCb, iCr, refHist, edges, bins) function [W, Hist] = weights_hist_particles(I, height, width, d, w_size, X, Y, refHist, v_u, edges, bins) if (X<1 || X > width || Y<1 || Y > height), W = 1; Hist = zero...
github
joelgallant/visual-trackers-master
pos.m
.m
visual-trackers-master/trackers/ORIA/RASL_toolbox/pos.m
276
utf_8
bc362d6934988c70855253b6fcb2e1b8
% Yigang Peng, Arvind Ganesh, November 2009. % Questions? abalasu2@illinois.edu % % Copyright: Perception and Decision Laboratory, University of Illinois, Urbana-Champaign % Microsoft Research Asia, Beijing function P = pos(A) P = A .* double( A > 0 );
github
joelgallant/visual-trackers-master
gamma_decompress.m
.m
visual-trackers-master/trackers/ORIA/RASL_toolbox/gamma_decompress.m
803
utf_8
285502ccd215edddf35026b5b0f7064e
% Yigang Peng, Arvind Ganesh, November 2009. % Questions? abalasu2@illinois.edu % % Copyright: Perception and Decision Laboratory, University of Illinois, Urbana-Champaign % Microsoft Research Asia, Beijing % Un-encode an sRGB image into linear intensities. uint8 to double. function outputImage = gamma_...
github
joelgallant/visual-trackers-master
vec.m
.m
visual-trackers-master/trackers/ORIA/RASL_toolbox/vec.m
266
utf_8
6b68d1b3a774ed0865955d75a625b27f
% Yigang Peng, Arvind Ganesh, November 2009. % Questions? abalasu2@illinois.edu % % Copyright: Perception and Decision Laboratory, University of Illinois, Urbana-Champaign % Microsoft Research Asia, Beijing function vecA = vec(A) vecA = A(:);
github
joelgallant/visual-trackers-master
list_image_files.m
.m
visual-trackers-master/trackers/ORIA/RASL_toolbox/list_image_files.m
1,425
utf_8
8d89f69220eddd2f256e6b2128687548
% Yigang Peng, Arvind Ganesh, November 2009. % Questions? abalasu2@illinois.edu % % Copyright: Perception and Decision Laboratory, University of Illinois, Urbana-Champaign % Microsoft Research Asia, Beijing % A more convenient directory listing command. Only outputs the files within the passed folder. % F...
github
joelgallant/visual-trackers-master
parameters_to_projective_matrix.m
.m
visual-trackers-master/trackers/ORIA/RASL_toolbox/parameters_to_projective_matrix.m
1,035
utf_8
dfee648fa200122674ad8c5578a60f94
% Yigang Peng, Arvind Ganesh, November 2009. % Questions? abalasu2@illinois.edu % % Copyright: Perception and Decision Laboratory, University of Illinois, Urbana-Champaign % Microsoft Research Asia, Beijing % Computes projective matrix based on input parameters and transformation % type. function T = para...
github
joelgallant/visual-trackers-master
image_Jaco.m
.m
visual-trackers-master/trackers/ORIA/RASL_toolbox/image_Jaco.m
1,838
utf_8
f5f4b07ad41c33d23fdc600a01fae62b
% Yigang Peng, Arvind Ganesh, November 2009. % Questions? abalasu2@illinois.edu % % Copyright: Perception and Decision Laboratory, University of Illinois, Urbana-Champaign % Microsoft Research Asia, Beijing % Compute image Jacobians wrt various parametric domain transformations function J = imag...
github
joelgallant/visual-trackers-master
normalize.m
.m
visual-trackers-master/trackers/ORIA/RASL_toolbox/normalize.m
764
utf_8
56ef40b8deab371d6732950ba5028128
% Yigang Peng, Arvind Ganesh, November 2009. % Questions? abalasu2@illinois.edu % % Copyright: Perception and Decision Laboratory, University of Illinois, Urbana-Champaign % Microsoft Research Asia, Beijing % Normalize each column of an array to be of unit length. % Usage: % normalize(X) normalizes the c...
github
joelgallant/visual-trackers-master
list_directories.m
.m
visual-trackers-master/trackers/ORIA/RASL_toolbox/list_directories.m
1,092
utf_8
d25ccf81a5ece4244196907e3a1c8b6f
% Yigang Peng, Arvind Ganesh, November 2009. % Questions? abalasu2@illinois.edu % % Copyright: Perception and Decision Laboratory, University of Illinois, Urbana-Champaign % Microsoft Research Asia, Beijing % A more convenient directory listing command. Only outputs the directories within the passed folde...
github
joelgallant/visual-trackers-master
gauss_pyramid.m
.m
visual-trackers-master/trackers/ORIA/RASL_toolbox/gauss_pyramid.m
1,515
utf_8
c9eff9c199e05dd2e07bfc6506625496
% Yigang Peng, Arvind Ganesh, November 2009. % Questions? abalasu2@illinois.edu % % Copyright: Perception and Decision Laboratory, University of Illinois, Urbana-Champaign % Microsoft Research Asia, Beijing % Take a single image and create a cell array of progressively downsampled images. functi...
github
joelgallant/visual-trackers-master
projective_matrix_to_parameters.m
.m
visual-trackers-master/trackers/ORIA/RASL_toolbox/projective_matrix_to_parameters.m
1,104
utf_8
f5a3f78aaa7aa1ea2137490878c6500a
% Yigang Peng, Arvind Ganesh, November 2009. % Questions? abalasu2@illinois.edu % % Copyright: Perception and Decision Laboratory, University of Illinois, Urbana-Champaign % Microsoft Research Asia, Beijing function xi = projective_matrix_to_parameters( transformType, T ) xi = []; if strcmp(transformType...
github
joelgallant/visual-trackers-master
findTarget.m
.m
visual-trackers-master/trackers/DFT/findTarget.m
1,690
utf_8
9209af9946927c86d8323aef6231b019
% *********************************************************************** % Copyright (c) Laura Sevilla-Lara and Erik G. Learned-Miller, 2012. % *********************************************************************** function pt = findTarget(df1, df2, pt, wsize) % Compute the flow of a patch % Use a map of the dista...
github
joelgallant/visual-trackers-master
trackDF.m
.m
visual-trackers-master/trackers/DFT/trackDF.m
3,892
utf_8
2638bb9dbd9dfa5bd5d3dfedae9172b2
% *********************************************************************** % Copyright (c) Laura Sevilla-Lara and Erik G. Learned-Miller, 2012. % *********************************************************************** function results = trackDF(params,res_path) %%% INPUT PARAMETERS FOR IMAGE SEQUENCE % -- file_path:...
github
joelgallant/visual-trackers-master
findTargetHier.m
.m
visual-trackers-master/trackers/DFT/findTargetHier.m
726
utf_8
4fbd03620d6117742d71a9812d010336
% *********************************************************************** % Copyright (c) Laura Sevilla-Lara and Erik G. Learned-Miller, 2012. % *********************************************************************** function pts = findTargetHier(target_models, f2, init_pos, wsize, sp_width, sp_sig, feat_width, feat_s...
github
joelgallant/visual-trackers-master
drawRect.m
.m
visual-trackers-master/trackers/DFT/drawRect.m
1,562
utf_8
3e84cf21ec207a3a542bbef89ed23142
% *********************************************************************** % Copyright (c) Laura Sevilla-Lara and Erik G. Learned-Miller, 2012. % *********************************************************************** function im = drawRect(im, pos, wsize, edgecolor, linewidth) rgb_val = name2rgb(edgecolor); startx =...
github
joelgallant/visual-trackers-master
isBorderPixel.m
.m
visual-trackers-master/trackers/DFT/isBorderPixel.m
393
utf_8
01036a41cef8079d8bfec2385b6f8f94
% *********************************************************************** % Copyright (c) Laura Sevilla-Lara and Erik G. Learned-Miller, 2012. % *********************************************************************** function b = isBorderPixel(Isize, pt, wsize) if pt(1)<=1 || pt(1)+wsize(1) >= Isize(1)-1 || pt(2)<=1 ...
github
joelgallant/visual-trackers-master
computeCropParams.m
.m
visual-trackers-master/trackers/DFT/computeCropParams.m
1,141
utf_8
a9c139a3d00320a2add59f82a620c23a
% *********************************************************************** % Copyright (c) Laura Sevilla-Lara and Erik G. Learned-Miller, 2012. % *********************************************************************** function cropParams = computeCropParams(currPos, imsize, wsize, maxShift, gaussWidth) % Computes the...
github
joelgallant/visual-trackers-master
img2df.m
.m
visual-trackers-master/trackers/DFT/img2df.m
541
utf_8
acb91a5eef6bfe09ca48d42d3a7b4d1e
% *********************************************************************** % Copyright (c) Laura Sevilla-Lara and Erik G. Learned-Miller, 2012. % *********************************************************************** function df = img2df(im, numBins) % im should be double to avoid integer division im = double(im); ...
github
joelgallant/visual-trackers-master
track2video.m
.m
visual-trackers-master/trackers/DFT/track2video.m
723
utf_8
bdfc5cede871205623d41e74a351d935
% *********************************************************************** % Copyright (c) Laura Sevilla-Lara and Erik G. Learned-Miller, 2012. % *********************************************************************** function track2video(data, res_path, seq_name, s_frames, wsize, show_track) linewidth = 2; mov = ...
github
joelgallant/visual-trackers-master
smoothDF.m
.m
visual-trackers-master/trackers/DFT/smoothDF.m
1,748
utf_8
4bffe6f5543d073be55f4e95f595b234
% *********************************************************************** % Copyright (c) Laura Sevilla-Lara and Erik G. Learned-Miller, 2012. % *********************************************************************** function df = smoothDF(df, size_kernel, sig_kernel) %fill in borders with uniform distributions df_fu...
github
joelgallant/visual-trackers-master
computeStartingPoint.m
.m
visual-trackers-master/trackers/DFT/computeStartingPoint.m
795
utf_8
29bd4ad15a73b435029f825be7640609
% *********************************************************************** % Copyright (c) Laura Sevilla-Lara and Erik G. Learned-Miller, 2012. % *********************************************************************** function pt = computeStartingPoint(pt, last_motion, wsize, imsize) % returns the initial pt displace...
github
joelgallant/visual-trackers-master
distanceDF.m
.m
visual-trackers-master/trackers/DFT/distanceDF.m
392
utf_8
edc4754e242eac3d2fafd02e15c87647
% *********************************************************************** % Copyright (c) Laura Sevilla-Lara and Erik G. Learned-Miller, 2012. % *********************************************************************** function dist = distanceDF(dfc1, dfc2) diff_df = dfc1(:) - dfc2(:); dist = sum(sum(sum(abs(diff_df))...
github
joelgallant/visual-trackers-master
run_DFT.m
.m
visual-trackers-master/trackers/DFT/run_DFT.m
4,799
utf_8
6b69a6d6b63a046776b36730a087a798
% *********************************************************************** % Copyright (c) Laura Sevilla-Lara and Erik G. Learned-Miller, 2012. % *********************************************************************** function results = run_DFT(seq, res_path, bSaveImage) close all s_frames = seq.s_frames; % default...
github
joelgallant/visual-trackers-master
run_tracker.m
.m
visual-trackers-master/trackers/CF2/run_tracker.m
4,331
utf_8
aef0702241156e8f98ec391c1cd30955
% RUN_TRACKER: process a specified video using CF2 % % Input: % - video: the name of the selected video % - show_visualization: set to True for visualizing tracking results % - show_plots: set to True for plotting quantitative results % Output: % - precision: precision thre...
github
joelgallant/visual-trackers-master
tracker_ensemble.m
.m
visual-trackers-master/trackers/CF2/tracker_ensemble.m
7,947
utf_8
610b3a9a2bd353121cef30792685d704
% tracker_ensemble: Correlation filter tracking with convolutional features % % Input: % - video_path: path to the image sequence % - img_files: list of image names % - pos: intialized center position of the target in (row, col) % - target_sz: intialized target size ...
github
joelgallant/visual-trackers-master
get_features.m
.m
visual-trackers-master/trackers/CF2/utility/get_features.m
866
utf_8
610958422bd8e266d66f7ee220801c45
% GET_FEATURES: Extracting hierachical convolutional features function feat = get_features(im, cos_window, layers) global net global enableGPU if isempty(net) initial_net(); end sz_window = size(cos_window); % Preprocessing img = single(im); % note: [0, 255] range img = imResample(img, net.normalization...
github
joelgallant/visual-trackers-master
get_subwindow.m
.m
visual-trackers-master/trackers/CF2/utility/get_subwindow.m
844
utf_8
6d98ab20898d9f62b02062481caf2a0c
function out = get_subwindow(im, pos, sz) %GET_SUBWINDOW Obtain sub-window from image, with replication-padding. % Returns sub-window of image IM centered at POS ([y, x] coordinates), % with size SZ ([height, width]). If any pixels are outside of the image, % they will replicate the values at the borders. % % J...
github
joelgallant/visual-trackers-master
p_getImageFilenamesFromDirectory.m
.m
visual-trackers-master/trackers/CF2/external/tools/p_getImageFilenamesFromDirectory.m
2,073
utf_8
65a1bafeaa60531c73f5acc8148a7dd0
% Copyright (c) 2009 % Jakob Santner % Institute for Computer Graphics and Vision (ICG) % Graz University of Technology % Inffeldgasse 16/II % 8010 Graz, AUSTRIA % % Permission is hereby granted, free of charge, to any person obtaining a % copy of this software and associated documentation files (the % "Software"), ...
github
joelgallant/visual-trackers-master
p_writeLog.m
.m
visual-trackers-master/trackers/CF2/external/tools/p_writeLog.m
1,741
utf_8
58a8994d8d0440fb8411cabbcc221319
% Copyright (c) 2009 % Jakob Santner % Institute for Computer Graphics and Vision (ICG) % Graz University of Technology % Inffeldgasse 16/II % 8010 Graz, AUSTRIA % % Permission is hereby granted, free of charge, to any person obtaining a % copy of this software and associated documentation files (the % "Software"), ...
github
joelgallant/visual-trackers-master
p_drawRect.m
.m
visual-trackers-master/trackers/CF2/external/tools/p_drawRect.m
1,863
utf_8
cf21589b84dd8763dbc3f35822455ee6
% Copyright (c) 2009 % Jakob Santner % Institute for Computer Graphics and Vision (ICG) % Graz University of Technology % Inffeldgasse 16/II % 8010 Graz, AUSTRIA % % Permission is hereby granted, free of charge, to any person obtaining a % copy of this software and associated documentation files (the % "Software"), to ...
github
joelgallant/visual-trackers-master
p_readLog.m
.m
visual-trackers-master/trackers/CF2/external/tools/p_readLog.m
1,641
utf_8
2a4ae33234fb76fd9a65fbec9d5138a8
% Copyright (c) 2009 % Jakob Santner % Institute for Computer Graphics and Vision (ICG) % Graz University of Technology % Inffeldgasse 16/II % 8010 Graz, AUSTRIA % % Permission is hereby granted, free of charge, to any person obtaining a % copy of this software and associated documentation files (the % "Software"), ...
github
joelgallant/visual-trackers-master
p_computeCenterDistanceRect.m
.m
visual-trackers-master/trackers/CF2/external/tools/p_computeCenterDistanceRect.m
1,654
utf_8
3e9490f8aba83c4e483380f9e1e4412f
% Copyright (c) 2009 % Jakob Santner % Institute for Computer Graphics and Vision (ICG) % Graz University of Technology % Inffeldgasse 16/II % 8010 Graz, AUSTRIA % % Permission is hereby granted, free of charge, to any person obtaining a % copy of this software and associated documentation files (the % "Software"), ...
github
joelgallant/visual-trackers-master
p_createVideoSequence.m
.m
visual-trackers-master/trackers/CF2/external/tools/p_createVideoSequence.m
3,243
utf_8
25d1272582b6261f8ad50caa69313ac2
% Copyright (c) 2009 % Jakob Santner % Institute for Computer Graphics and Vision (ICG) % Graz University of Technology % Inffeldgasse 16/II % 8010 Graz, AUSTRIA % % Permission is hereby granted, free of charge, to any person obtaining a % copy of this software and associated documentation files (the % "Software"), ...
github
joelgallant/visual-trackers-master
p_evalSequence.m
.m
visual-trackers-master/trackers/CF2/external/tools/p_evalSequence.m
3,336
utf_8
782b0e2a79b65b10fb2c77816ee35169
% Copyright (c) 2009 % Jakob Santner % Institute for Computer Graphics and Vision (ICG) % Graz University of Technology % Inffeldgasse 16/II % 8010 Graz, AUSTRIA % % Permission is hereby granted, free of charge, to any person obtaining a % copy of this software and associated documentation files (the % "Software"), ...
github
joelgallant/visual-trackers-master
p_computePascalScoreRect.m
.m
visual-trackers-master/trackers/CF2/external/tools/p_computePascalScoreRect.m
2,002
utf_8
8a4a3e85f392e8fec2fccb17fba5771f
% Copyright (c) 2009 % Jakob Santner % Institute for Computer Graphics and Vision (ICG) % Graz University of Technology % Inffeldgasse 16/II % 8010 Graz, AUSTRIA % % Permission is hereby granted, free of charge, to any person obtaining a % copy of this software and associated documentation files (the % "Software"), ...
github
joelgallant/visual-trackers-master
cnn_cifar.m
.m
visual-trackers-master/trackers/CF2/external/matconvnet/examples/cnn_cifar.m
5,513
utf_8
59f780e7e4c836f62caeede920e50afa
function cnn_cifar(varargin) % CNN_CIFAR Demonstrates MatConvNet on CIFAR run(fullfile(fileparts(mfilename('fullpath')), ... '..', 'matlab', 'vl_setupnn.m')) ; opts.dataDir = fullfile('data','cifar') ; opts.expDir = fullfile('data','cifar-baseline') ; opts.imdbPath = fullfile(opts.expDir, 'imdb.mat'); opts.train....
github
joelgallant/visual-trackers-master
cnn_imagenet.m
.m
visual-trackers-master/trackers/CF2/external/matconvnet/examples/cnn_imagenet.m
9,564
utf_8
c367d3378c58c3fcd280ecb7fe40237d
function cnn_imagenet(varargin) % CNN_IMAGENET Demonstrates training a CNN on ImageNet run(fullfile(fileparts(mfilename('fullpath')), ... '..', 'matlab', 'vl_setupnn.m')) ; opts.dataDir = fullfile('data','imagenet12') ; opts.expDir = fullfile('data','imagenet12-baseline') ; [opts, varargin] = vl_argparse(opts, va...
github
joelgallant/visual-trackers-master
cnn_mnist.m
.m
visual-trackers-master/trackers/CF2/external/matconvnet/examples/cnn_mnist.m
4,802
utf_8
de07039a31bdf53e479516978eb49b40
function [net, info] = cnn_mnist(varargin) % CNN_MNIST Demonstrated MatConNet on MNIST run(fullfile(fileparts(mfilename('fullpath')),'..','matlab','vl_setupnn.m')) ; opts.dataDir = fullfile('data','mnist') ; opts.expDir = fullfile('data','mnist-baseline') ; opts.imdbPath = fullfile(opts.expDir, 'imdb.mat'); opts.tra...
github
joelgallant/visual-trackers-master
cnn_train.m
.m
visual-trackers-master/trackers/CF2/external/matconvnet/examples/cnn_train.m
9,795
utf_8
f7fea080c42f15bf429eda82b48b102f
function [net, info] = cnn_train(net, imdb, getBatch, varargin) % CNN_TRAIN Demonstrates training a CNN % CNN_TRAIN() is an example learner implementing stochastic gradient % descent with momentum to train a CNN for image classification. % It can be used with different datasets by providing a suitable % g...
github
joelgallant/visual-trackers-master
cnn_imagenet_evaluate.m
.m
visual-trackers-master/trackers/CF2/external/matconvnet/examples/cnn_imagenet_evaluate.m
2,726
utf_8
2f3d1847fbe22a45f35687ae096a0376
function info = cnn_imagenet_evaluate(varargin) % CNN_IMAGENET_EVALUATE Evauate MatConvNet models on ImageNet run(fullfile(fileparts(mfilename('fullpath')), ... '..', 'matlab', 'vl_setupnn.m')) ; opts.dataDir = fullfile('data', 'imagenet12') ; opts.expDir = fullfile('data', 'imagenet12-eval-vgg-f') ; opts.imdbPat...
github
joelgallant/visual-trackers-master
vl_compilenn.m
.m
visual-trackers-master/trackers/CF2/external/matconvnet/matlab/vl_compilenn.m
20,725
utf_8
bcbc23d4f290bcdbb238588847fc34de
function vl_compilenn( varargin ) % VL_COMPILENN Compile the MatConvNet toolbox % The `vl_compilenn()` function compiles the MEX files in the % MatConvNet toolbox. See below for the requirements for compiling % CPU and GPU code, respectively. % % `vl_compilenn('OPTION', ARG, ...)` accepts the following opt...
github
joelgallant/visual-trackers-master
vl_simplenn_display.m
.m
visual-trackers-master/trackers/CF2/external/matconvnet/matlab/vl_simplenn_display.m
5,109
utf_8
8db9db2733c5d41b239d87806680a068
function info = vl_simplenn_display(net, res) % VL_SIMPLENN_DISPLAY Simple CNN statistics % VL_SIMPLENN_DISPLAY(NET) prints statistics about the network NET. % Copyright (C) 2014 Andrea Vedaldi. % All rights reserved. % % This file is part of the VLFeat library and is made available under % the terms of the BSD li...
github
joelgallant/visual-trackers-master
bb_isdef.m
.m
visual-trackers-master/trackers/TLD/bbox/bb_isdef.m
732
utf_8
1911c216dcf53052fa1e497573834331
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
bb_height.m
.m
visual-trackers-master/trackers/TLD/bbox/bb_height.m
741
utf_8
6d7277c3472c784c9c53d3f0eda4ecf8
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
bb_burn.m
.m
visual-trackers-master/trackers/TLD/bbox/bb_burn.m
1,175
utf_8
acc90a8e4518d726de86c2141e1dba25
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
bb_square.m
.m
visual-trackers-master/trackers/TLD/bbox/bb_square.m
903
utf_8
3458eefd11e60ce622e450b3558ad54d
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
bb_scan.m
.m
visual-trackers-master/trackers/TLD/bbox/bb_scan.m
2,046
utf_8
ae24572e546e70ee24940ae7a9c9df03
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
bb_size.m
.m
visual-trackers-master/trackers/TLD/bbox/bb_size.m
745
utf_8
a583129dbbebd247c1dd3bb123d7f530
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
bb_distance.m
.m
visual-trackers-master/trackers/TLD/bbox/bb_distance.m
826
utf_8
0ee0b871301af032107c3737be1458ec
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
bb_predict.m
.m
visual-trackers-master/trackers/TLD/bbox/bb_predict.m
1,025
utf_8
5aa21d6b12c0d9707a0f2bc04780d2bb
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
bb_cluster.m
.m
visual-trackers-master/trackers/TLD/bbox/bb_cluster.m
1,326
utf_8
2742daa26d0d81fb7c6db11ea05cc707
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
bb_scale.m
.m
visual-trackers-master/trackers/TLD/bbox/bb_scale.m
804
utf_8
454ed5f8e993a84eb0d2aa5f5064a337
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
bb_rescale_relative.m
.m
visual-trackers-master/trackers/TLD/bbox/bb_rescale_relative.m
912
utf_8
ad87dc76f67de2068a9f1808d313ee46
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
bb_width.m
.m
visual-trackers-master/trackers/TLD/bbox/bb_width.m
740
utf_8
9362e273a835829d0de7d40c96239d63
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
bb_get_similar.m
.m
visual-trackers-master/trackers/TLD/bbox/bb_get_similar.m
784
utf_8
db1d2f79a46c7ebdac8cefc1977518db
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
bb_click.m
.m
visual-trackers-master/trackers/TLD/bbox/bb_click.m
1,105
utf_8
8be105ff1e78e341477b283c9b2fbefa
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
bb_isout.m
.m
visual-trackers-master/trackers/TLD/bbox/bb_isout.m
808
utf_8
779e56379651316cafbfccacfe5b21a4
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
bb_hull.m
.m
visual-trackers-master/trackers/TLD/bbox/bb_hull.m
790
utf_8
ca09f538a86cf63e22404d5aaefad906
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
bb_isin.m
.m
visual-trackers-master/trackers/TLD/bbox/bb_isin.m
803
utf_8
45b983accd3e42de44963d9ea40d0d60
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
bb_draw.m
.m
visual-trackers-master/trackers/TLD/bbox/bb_draw.m
1,155
utf_8
28bdce4ae624e796995b29d5034d959b
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
bb_normalize.m
.m
visual-trackers-master/trackers/TLD/bbox/bb_normalize.m
980
utf_8
b312f50bdd94a926d446f2b33c4e8f59
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
bb_shift_absolute.m
.m
visual-trackers-master/trackers/TLD/bbox/bb_shift_absolute.m
846
utf_8
6c1838f152b86c2b0f99344fc37c3e7e
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
bb_click_move.m
.m
visual-trackers-master/trackers/TLD/bbox/bb_click_move.m
862
utf_8
6d617aeb74431afdbf7b6bb09b205097
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
bb_rescale_absolute.m
.m
visual-trackers-master/trackers/TLD/bbox/bb_rescale_absolute.m
813
utf_8
071c6af95702f513508d30af111d847a
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
bb_center.m
.m
visual-trackers-master/trackers/TLD/bbox/bb_center.m
808
utf_8
5ada95fd1ef912475d45243c66291d0c
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
bb_cluster_confidence.m
.m
visual-trackers-master/trackers/TLD/bbox/bb_cluster_confidence.m
1,551
utf_8
6331470e8f82e25481ffe1da8a478afb
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
bb_points.m
.m
visual-trackers-master/trackers/TLD/bbox/bb_points.m
1,312
utf_8
b43873b44ea7379ee282558c6fd2db23
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
bb_shift_relative.m
.m
visual-trackers-master/trackers/TLD/bbox/bb_shift_relative.m
932
utf_8
7b5118e2267558eb484122a9c3a8f8e5
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
bb_correct.m
.m
visual-trackers-master/trackers/TLD/bbox/bb_correct.m
1,353
utf_8
b0e79b0b80fc5246f1b60eabf84c95f4
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
idx2id.m
.m
visual-trackers-master/trackers/TLD/utils/idx2id.m
750
utf_8
574d29cdf4f4b5a9faf3a03594679489
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
uniquecount.m
.m
visual-trackers-master/trackers/TLD/utils/uniquecount.m
859
utf_8
8563d64ec1cc8dcc6043b38a065fae44
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
mat2img.m
.m
visual-trackers-master/trackers/TLD/utils/mat2img.m
1,360
utf_8
33584080e1db51e5748523903c887797
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
median2.m
.m
visual-trackers-master/trackers/TLD/utils/median2.m
752
utf_8
fa7cb1fb75e29a57bbde1af0fb49fafc
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...
github
joelgallant/visual-trackers-master
pseudorandom_indexes.m
.m
visual-trackers-master/trackers/TLD/utils/pseudorandom_indexes.m
754
utf_8
dbc5ffed0a95ba76aa1afca772698716
% Copyright 2011 Zdenek Kalal % % This file is part of TLD. % % TLD is free software: you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation, either version 3 of the License, or % (at your option) any later version. % % TLD is distri...