Skip to content

Commit

Permalink
-added licenses and copyright line
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://lumo.ucsd.edu/projects/p1/svnroot/pdollar/toolbox@6678 52fe0c90-79fe-0310-8a18-a0b98ad248f8
  • Loading branch information
pdollar committed Oct 6, 2007
1 parent 0a7dd3b commit 0801aa2
Show file tree
Hide file tree
Showing 130 changed files with 1,103 additions and 131 deletions.
3 changes: 2 additions & 1 deletion classify/clfDecTree.m
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
% See also NFOLDXVAL, TREEFIT, CLFDECTREEFWD, CLFDECTREETRAIN

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function clf = clfDecTree( p, varargin )

Expand Down
3 changes: 2 additions & 1 deletion classify/clfDecTreeFwd.m
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
% See also CLFDECTREE

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function Y = clfDecTreeFwd( clf, X )

Expand Down
3 changes: 2 additions & 1 deletion classify/clfDecTreeTrain.m
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@
% See also CLFDECTREE

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function clf = clfDecTreeTrain( clf, X, Y )

Expand Down
3 changes: 2 additions & 1 deletion classify/clfEcoc.m
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@
% See also ECOC, NFOLDXVAL, CLFECOCCODE

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function clf = clfEcoc(p,clfInit,clfparams,nclasses,use01targets)

Expand Down
3 changes: 2 additions & 1 deletion classify/clfEcocCode.m
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
% See also CLFECOC

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function [C,nbits] = clfEcocCode( k )

Expand Down
3 changes: 2 additions & 1 deletion classify/clfKnn.m
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@
% See also NFOLDXVAL, CLFKNNTRAIN, CLFKNNFWD, CLFKNNDIST

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function clf = clfKnn( p, k, metric )

Expand Down
3 changes: 2 additions & 1 deletion classify/clfKnnDist.m
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@
% See also CLFKNN

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function IDXpred = clfKnnDist( D, IDX, k )

Expand Down
3 changes: 2 additions & 1 deletion classify/clfKnnFwd.m
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
% See also CLFKNN, CLFKNNTRAIN

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function Y = clfKnnFwd( clf, X )

Expand Down
3 changes: 2 additions & 1 deletion classify/clfKnnTrain.m
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@
% See also CLFKNN, CLFKNNFWD

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function clf = clfKnnTrain( clf, X, Y )

Expand Down
3 changes: 2 additions & 1 deletion classify/clfLda.m
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@
% See also NFOLDXVAL, CLASSIFY, CLFLDATRAIN, CLFLDAFWD

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function clf = clfLda( p, type, prior )

Expand Down
3 changes: 2 additions & 1 deletion classify/clfLdaFwd.m
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
% See also CLFLDA, CLFLDATRAIN

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function Y = clfLdaFwd( clf, X )

Expand Down
3 changes: 2 additions & 1 deletion classify/clfLdaTrain.m
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@
% See also CLFLDA, CLFLDAFWD

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function clf = clfLdaTrain( clf, X, Y )

Expand Down
3 changes: 2 additions & 1 deletion classify/clfSvm.m
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@
% See also SVM, NFOLDXVAL

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function net = clfSvm(varargin)

Expand Down
3 changes: 2 additions & 1 deletion classify/confMatrix.m
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@
% See also CONFMATRIXSHOW

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function CM = confMatrix( IDXtrue, IDXpred, ntypes )

Expand Down
3 changes: 2 additions & 1 deletion classify/confMatrixShow.m
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@
% See also CONFMATRIX, TEXT2

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function confMatrixShow( CM, types, pvPairs, nDigits )

Expand Down
3 changes: 2 additions & 1 deletion classify/demoClassify.m
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@
% See also CLFKNN, CLFLDA, CLFSVM, CLFECOC, CLFDECTREE, VISUALIZEDATA

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function demoClassify

Expand Down
3 changes: 2 additions & 1 deletion classify/demoCluster.m
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@
% See also KMEANS2, MEANSHIFT

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

%%% generate data
if(1) % mixture of gaussians -- see demoGenData
Expand Down
3 changes: 2 additions & 1 deletion classify/demoGenData.m
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@
% See also VISUALIZEDATA, DEMOCLUSTER, DEMOCLASSIFY

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function [X,IDX,T,IDT] = demoGenData(n,m,k,d,c,e,f)

Expand Down
3 changes: 2 additions & 1 deletion classify/distMatrixShow.m
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@
% See also VISUALIZEDATA, KMEANS2

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function [D, Dsm] = distMatrixShow( D, IDX, show )

Expand Down
3 changes: 2 additions & 1 deletion classify/kmeans2.m
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,9 @@
% See also DEMOCLUSTER

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function [ IDX, C, sumd ] = kmeans2( X, k, prm )

Expand Down
3 changes: 2 additions & 1 deletion classify/meanShift.m
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,9 @@
% See also MEANSHIFTIM, DEMOCLUSTER

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function [IDX,M] = meanShift(X, radius, rate, maxIter, minCsize, blur )

Expand Down
3 changes: 2 additions & 1 deletion classify/meanShiftIm.m
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,9 @@
% See also MEANSHIFT, MEANSHIFTIMEXPLORE

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function [M,Vr,Vc] = meanShiftIm( X,sigSpt,sigRng,softFlag,maxIter,minDel )

Expand Down
3 changes: 2 additions & 1 deletion classify/meanShiftImExplore.m
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@
% See also MEANSHIFTIM

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function meanShiftImExplore( I, X, sigSpt, sigRng, show )

Expand Down
3 changes: 2 additions & 1 deletion classify/nfoldxval.m
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,9 @@
% See also CLFKNN, CLFLDA, CLFSVM, CLFECOC, CLFDECTREE, DEMOCLASSIFY

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function CM=nfoldxval( data, IDX, clfInit, clfparams, ...
types, ignoreT, fname, show )
Expand Down
3 changes: 2 additions & 1 deletion classify/pca.m
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,9 @@
% VISUALIZEDATA, SUBSAMPLEMATRIX

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function [ U, mu, vars ] = pca( X )

Expand Down
3 changes: 2 additions & 1 deletion classify/pcaApply.m
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@
% See also PCA, PCAVISUALIZE

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function varargout = pcaApply( X, U, mu, k )

Expand Down
3 changes: 2 additions & 1 deletion classify/pcaRandVec.m
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@
% See also PCA IMNORMALIZE

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function Xr = pcaRandVec( U, mu, vars, k, n, hypershpere, show )

Expand Down
3 changes: 2 additions & 1 deletion classify/pcaVisualize.m
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@
% See also PCA, PCAAPPLY

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function varargout=pcaVisualize( U, mu, vars, X, index, ks, fname, show )

Expand Down
3 changes: 2 additions & 1 deletion classify/pdist2.m
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,9 @@
% See also PDIST, DISTMATRIXSHOW

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function D = pdist2( X, Y, metric )

Expand Down
3 changes: 2 additions & 1 deletion classify/private/IDX2order.m
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@
% See also DISTMATRIXSHOW

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function order = IDX2order( IDX )

Expand Down
3 changes: 2 additions & 1 deletion classify/private/meanShiftPost.m
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@
% See also MEANSHIFT, KMEANS2

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function [IDX,C] = meanShiftPost( X, IDX, C, minCl, forceOutl )

Expand Down
3 changes: 2 additions & 1 deletion classify/rbfComputeBasis.m
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,9 @@
% See also RBFDEMO, RBFCOMPUTEFTRS

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function rbfBasis = rbfComputeBasis( X, k, cluster, scale, show )

Expand Down
3 changes: 2 additions & 1 deletion classify/rbfComputeFtrs.m
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@
% See also RBFDEMO, RBFCOMPUTEBASIS

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function Xrbf = rbfComputeFtrs( X, rbfBasis )

Expand Down
3 changes: 2 additions & 1 deletion classify/rbfDemo.m
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@
% See also RBFCOMPUTEBASIS, RBFCOMPUTEFTRS

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function rbfDemo( dataType, noiseSig, scale, k, cluster, show )

Expand Down
3 changes: 2 additions & 1 deletion classify/softMin.m
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,9 @@
% See also PDIST2, SOFTMAX

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function M = softMin( D, sigma )

Expand Down
3 changes: 2 additions & 1 deletion classify/visualizeData.m
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@
% See also KMEANS2, DEMOCLUSTER

% Piotr's Image&Video Toolbox Version 2.0
% Written and maintained by Piotr Dollar pdollar-at-cs.ucsd.edu
% Copyright (C) 2007 Piotr Dollar. [pdollar-at-caltech.edu]
% Please email me if you find bugs, or have suggestions or questions!
% Liscensed under the Lesser GPL [see external/lgpl.txt]

function visualizeData( X, k, IDX, types, C )

Expand Down
Loading

0 comments on commit 0801aa2

Please sign in to comment.