Home My Page Projects MPTK: The Matching Pursuit ToolKit
Summary Activity Forums Tracker Lists Docs News SCM Files

Forum: help

Monitor Forum | Start New Thread Start New Thread
RE: MPTK Instal. Vista, CMake Error, Set Path issue [ Reply ]
By: Andrew McLeod on 2013-02-14 13:10
[forum:110493]
I think you posted that in the wrong thread...

RE: MPTK Instal. Vista, CMake Error, Set Path issue [ Reply ]
By: imen said on 2013-02-14 08:06
[forum:110491]

Yes I find a solution and I fell into another problem :)

Jeff, MPTK forum member, helped me. If you use a gabor dictionnary, you should use the following equation to buil atoms.

atom = amp* window * (1/normalise window) * cos( 2 * pi* freq * t + phase)

t= 0: l , l= scale.

this discution should be useful

https://gforge.inria.fr/forum/forum.php?thread_id=23980&forum_id=109
--------------------------------
size =l; % l: scale

Function [ window ] = Gauss( size )
winVals = zeros(1,size);
optional = 0.02;
optional = 1/(2*optional*(size+1)*(size+1));
counter = 1;
for ii=0:floor(size/2)-1
kk = ii - (size-1)/2;
winVals(counter) = exp(-kk.^2*optional);
winVals(size - counter + 1) = exp(-kk.^2*optional);
counter = counter + 1;
end

RE: MPTK Instal. Vista, CMake Error, Set Path issue [ Reply ]
By: Andrew McLeod on 2013-02-14 03:21
[forum:110490]
Did you ever find a solution to this? I'm on vista as well and having the same problem

MPTK Instal. Vista, CMake Error, Set Path issue [ Reply ]
By: carlo teh on 2012-02-21 15:48
[forum:109302]
Hey
I have tried installing MPTK on couple of computers and seems that I run into problems each time.

I downloaded the MPTK-Source-0.6.1 file, unzipped it on Desktop, Have an output file on Desktop for the build. When I run Cmake it gives me an error of:

1) Matlab MEX compiler is not found and asks me to turn ON the BUILD_MATLAB_MEX_FILES

2)MATLAB_ENG_LIBRARY NOT FOUND
3)MATLAB_INCLUDE-DIR NOT FOUND
4)MATLAB_MEX_COMPILER NOT FOUND
5)MATLB_ROOT NOT FOUND

6)MPTK_GP_ATOM_H NOT FOUND
7)MPTK_MP_POSITION_H NOT FOUND

I need some asap help, as I am in my final stages of research and need a comparison of my program with the MPTK tool box.
I much appreciate anyone's help.