Search Comments and Ratings

go

Comments and Ratings

   
Date File Comment by Comment Rating
21 Nov 2009 Toolbox Wavelets Wavelet transform and coding functions, including other more exotic transforms (laplacian, steerable Author: Gabriel Peyre Cheng, Raymond

Thanks for your nice toolbox.

20 Nov 2009 Toolbox Graph A toolbox to perform computations on graph. Author: Gabriel Peyre Ridgway, Ged

Looks really useful. However, isomap seems to fail:
>> xy = isomap(dat);
??? Undefined command/function 'compute_nn_graph'.
Error in ==> isomap at 85
    D = compute_nn_graph(X,options);

19 Nov 2009 Toolbox Wavelets Wavelet transform and coding functions, including other more exotic transforms (laplacian, steerable Author: Gabriel Peyre Singh, Amardeep

Hi,

Thanks a lot for this toolbox. Is it possible to access the details (D) in a translation-invariant wavelet transform (TIWT)?
So that, for example, for a TIWT of depth 3:
signal = D1 + D2 + D3 + A3?

I had a look at the code but could not figure out how to do it.

Thanks a lot!

Amardeep

17 Nov 2009 Toolbox Graph A toolbox to perform computations on graph. Author: Gabriel Peyre Peter

12 Nov 2009 Toolbox Graph A toolbox to perform computations on graph. Author: Gabriel Peyre kamel

Very useful
compute_curvature will generate an error on line 75 ("dp = sum( normal(:,E(:,1)) .* normal(:,E(:,2)), 1 );") for SOME surfaces.
what's the solution of this bug
thanks

18 Oct 2009 Toolbox Wavelets on Meshes A toolbox to compute wavelet transform on 3D meshes Author: Gabriel Peyre Cheng, Raymond

Thanks for your sharing.

18 Oct 2009 Toolbox Graph A toolbox to perform computations on graph. Author: Gabriel Peyre Cheng, Raymond

Thanks for your sharing.

18 Oct 2009 Toolbox image A toolbox that contains image processing functions Author: Gabriel Peyre Cheng, Raymond

Thanks for your sharing.

17 Oct 2009 MATLAB Tips & Tricks A list of useful tips and tricks with concise piece of code and comments. Author: Gabriel Peyre Cheng, Raymond

Thanks for your sharing.

10 Oct 2009 Toolbox Fast Marching A toolbox for the computation of the Fast Marching algorithm in 2D and 3D. Author: Gabriel Peyre Cheng, Raymond

Thanks for sharing.

16 Sep 2009 Toolbox Fast Marching A toolbox for the computation of the Fast Marching algorithm in 2D and 3D. Author: Gabriel Peyre Hassan

Merci beaucoup Peyre for sharing et aussi pour superbe site avec many explanations.

02 Sep 2009 Toolbox Fast Marching A toolbox for the computation of the Fast Marching algorithm in 2D and 3D. Author: Gabriel Peyre Nora

The idea is great, keep on going! The code still needs some improvement though (bug fixing).
I used it for 2D fast marching, but found that matlab bwdist performs way faster, even if I truncate the region to calculate.

26 Aug 2009 Toolbox Graph A toolbox to perform computations on graph. Author: Gabriel Peyre WANG, YUANCHUN

Very useful.

But I have a question: when I tried to use the function "perform_mesh_simplification" to make the simplificatino for mesh. Matlab said that QSlim is not a command. And here is the command where situates the problem: "system(['QSlim tmp.smf -o tmp1.smf -s ' num2str(nface)]);"

I'm afraid this is because the qslim.exe was missed?

thanks for your explaination!

09 Jun 2009 Toolbox Graph A toolbox to perform computations on graph. Author: Gabriel Peyre lee, europe

test_diffusion_wavelet.m file did not work!
Because it miss some functions, such as MakeDiffusion function.
Although I download and install diffusion wavelet code from MAURO MAGGIONI, I find that MakeDiffusion in his code is different from yours,like parameter called 'gauss' in your MakeDiffusion was not included in Mauro's MakeDiffusion.

20 May 2009 Toolbox Graph A toolbox to perform computations on graph. Author: Gabriel Peyre Ofra

Very useful.
Is there a Matlab 2008b version ?

09 May 2009 Toolbox Sparsity Sparsity-based signal processing related functions. Author: Gabriel Peyre Santos, Andrea

Hi, Gabriel your work is really interesting.

Actually, I am working with unmixing techniques for images and I want to apply sparse positive matrix factorization. I find your code could be very useful to me but, I do not have clear how to use the code. Can you help me sending me maybe a readme file with more details. I am really excited to use these functions.
Thanks.

21 Apr 2009 Toolbox Fast Marching A toolbox for the computation of the Fast Marching algorithm in 2D and 3D. Author: Gabriel Peyre Martin

Works fine for me. Thank you very much.

10 Apr 2009 Toolbox image A toolbox that contains image processing functions Author: Gabriel Peyre c0l0jar0

I simply wanted to use the median filter function but already I found that with all of the subfolders added to path there is no create_gaussian_filter function and it would appear that I will be unable to use this filter. Any solutions or have any idea why it is missing?

07 Apr 2009 Toolbox Graph A toolbox to perform computations on graph. Author: Gabriel Peyre zheng, Axel

Cool!!!

07 Apr 2009 Toolbox image A toolbox that contains image processing functions Author: Gabriel Peyre zheng, Axel

Cool!

02 Apr 2009 Toolbox Non-Local Means A toolbox for the non-local means algorithm Author: Gabriel Peyre gaiyan, tsinghua

perform_image_extension(M,m) is used in the function [M1,MW,MW1] = perform_wavelet_matching(M1,M,options),but my running error is "Synthesizing corral, ave=1, T=inf.
??? Undefined function or method 'perform_image_extension' for input arguments of type
'double'.

Error in ==> perform_wavelet_matching at 80
M = perform_image_extension(M,m);

Error in ==> test_nl_synthesis at 216
    M = perform_wavelet_matching(M,Ma,options);"
How can I get the function missed here? Please help me ,thank you!

03 Mar 2009 Toolbox Graph A toolbox to perform computations on graph. Author: Gabriel Peyre S, David

Just wanted to add that the error I mentioned is caused by the flipping of the sign of the surface normal of just one face by rearranging the order of the vertices in the face matrix

03 Mar 2009 Toolbox Graph A toolbox to perform computations on graph. Author: Gabriel Peyre S, David

Very useful, except for a bug in the compute_curvature function:

compute_curvature will generate an error on line 75 ("dp = sum( normal(:,E(:,1)) .* normal(:,E(:,2)), 1 );") for SOME surfaces. The error stems from E containing indices that are out of range which is caused by line 48 ("A = sparse(double(i),double(j),s,n,n);") where A's values eventually entirely make up the E matrix. The problem occurs when the i and j vectors create the same ordered pair twice in which case the sparse function adds the two s vector elements together for that matrix location resulting in a value that is too large to be used as an index on line 75. For example, if i = [1 1] and j = [2 2] and s = [3 4] then A(1,2) will equal 3 + 4 = 7.

The i and j vectors are created here:
i = [face(1,:) face(2,:) face(3,:)];
j = [face(2,:) face(3,:) face(1,:)];

The fact that your code seems to depend on the order of the vertices in the faces matrix worries me because the curvature should be the same regardless of the order, obviously. To be fair, I don't completely understand how your code works so perhaps the way it is written it works out to not matter except that it does certainly matter when it results in an index out of bounds error as previously described.

09 Jan 2009 Toolbox Wavelets Wavelet transform and coding functions, including other more exotic transforms (laplacian, steerable Author: Gabriel Peyre Clark, Thomas

In addition to my previous comment; I've noticed that quite a lot of the code is just copied straight from the wavelab toolbox; but with different function wrappers added.

... so I'm afraid I dropped my rating a bit, as wavelab is reasonably easy to use; their code being easier to understand (less use of things like eval() ), and and produces way less M-Lint errors.

The functional structure is also easier to understand in wavelab; as there are many overloaded functions of the same name in this toolbox.

09 Jan 2009 Toolbox Wavelets Wavelet transform and coding functions, including other more exotic transforms (laplacian, steerable Author: Gabriel Peyre Clark, Thomas

Really versatile and quite comprehensive wavelet toolbox. People should use this before deciding whether they need to spend out on TMW's own Wavelet toolbox.

Beginners may wish to know that they need to compile the MEX files before using the toolbox - add the toolbox to Matlab's search path, navigate to the toolbox's main directory, and type
>> compile_mex
into the command line.

There are a couple of issues with the installation; until Gabriel updates the ZIP file, the Atrou source files and the JPEG2000 source files are missing. To get compile_mex.m to work, then, you'll need to comment out lines 8 through to 58.

The help files are pretty good (certainly better than those for the other wavelet toolboxes here on the FEX) although it would be nice to have example usages for each of the functions, and perhaps one or two lines on suggested application for the different types of transform.

Thanks Gabriel :)

10 Dec 2008 Toolbox Wavelets Wavelet transform and coding functions, including other more exotic transforms (laplacian, steerable Author: Gabriel Peyre max

test for wavelet based denoising
asks for
MWt = keep_above(MW, T);
or
progressbar(nband-1,Nband-1);

29 Nov 2008 Toolbox Wavelets Wavelet transform and coding functions, including other more exotic transforms (laplacian, steerable Author: Gabriel Peyre Kulkarni, sparsh

i am unable to find the matlab function 'perform_arithmetic_coding'. can you help me out ?

30 Sep 2008 Toolbox Wavelets Wavelet transform and coding functions, including other more exotic transforms (laplacian, steerable Author: Gabriel Peyre V, Divya

Where is the perform_shannon_estimation function?

24 Sep 2008 A Numerical Tour of Signal Processing A set of Matlab experiments that illustrates advanced computational signal and image processing. Author: Gabriel Peyre Rahman, Muhammad Mahbubur

Thank you very much.

18 Sep 2008 A Numerical Tour of Signal Processing A set of Matlab experiments that illustrates advanced computational signal and image processing. Author: Gabriel Peyre singh, rahul

 Packers and Movers Delhi- Professional India Packers and Movers offers packers and movers provides best packers and movers

02 Aug 2008 Toolbox Sparsity Sparsity-based signal processing related functions. Author: Gabriel Peyre ffaffb, dafav

There are some file lost in you code.Please give a whole code.

31 Jul 2008 A Numerical Tour of Signal Processing A set of Matlab experiments that illustrates advanced computational signal and image processing. Author: Gabriel Peyre Firmansyah, Heri

good job!!!

18 Jul 2008 Toolbox Non-Local Means A toolbox for the non-local means algorithm Author: Gabriel Peyre Krishnan, Dilip

I downloaded, installed and ran without any problems on Matlab 7 on Linux. Thank you for uploading this and for the convenient test programs.

10 Jul 2008 Toolbox Wavelets on Meshes A toolbox to compute wavelet transform on 3D meshes Author: Gabriel Peyre Haung, terry

thank you

02 Jul 2008 Toolbox Wavelets Wavelet transform and coding functions, including other more exotic transforms (laplacian, steerable Author: Gabriel Peyre Pan, joy

I downloaded it but don't know how to use it. When I run the function perform_wavelet_transform, an error message like:"Undefined function or variable "dps"."
occurs. How can I handle it?

05 Jun 2008 Toolbox Fast Marching A toolbox for the computation of the Fast Marching algorithm in 2D and 3D. Author: Gabriel Peyre w, vincent

too many bugs... please fix them before sharing. othewise what you r doing is just wasting the time of other people.

02 Jun 2008 Toolbox Graph A toolbox to perform computations on graph. Author: Gabriel Peyre vibhute, anup

very useful

17 May 2008 A Numerical Tour of Signal Processing A set of Matlab experiments that illustrates advanced computational signal and image processing. Author: Gabriel Peyre Thanh, Minh

Thank for your contribution

10 May 2008 A Numerical Tour of Signal Processing A set of Matlab experiments that illustrates advanced computational signal and image processing. Author: Gabriel Peyre Porco, Jesus

Requiero teoria de Wavelet

05 May 2008 Toolbox Wavelets Wavelet transform and coding functions, including other more exotic transforms (laplacian, steerable Author: Gabriel Peyre phong, hoang

sdafasdghsffsadsdaf

01 May 2008 Toolbox Fast Marching A toolbox for the computation of the Fast Marching algorithm in 2D and 3D. Author: Gabriel Peyre Tran, Thao

Thank you very much for your sharing.
But when I test in 3D,it warns errors:
:
--> Perform Fast Marching ... ??? Error using ==> perform_front_propagation_3d
end_points must be of size 3 x nb_end_poins.

Error in ==> perform_fast_marching at 121
    [D,S,Q] = perform_front_propagation_3d(W,start_points-1,end_points-1,nb_iter_max, H, L,
    values);

Error in ==> test_vol3d at 61
[D,S] = perform_fast_marching(W, start_point, options);

??? Error using ==> perform_front_propagation_3d
end_points must be of size 3 x nb_end_poins.

Error in ==> perform_fast_marching at 121
    [D,S,Q] = perform_front_propagation_3d(W,start_points-1,end_points-1,nb_iter_max, H, L,
    values);

Error in ==> test_fast_marching_3d at 19
[D,S] = perform_fast_marching(W, start_points, options);

Who can tell me how to solve the problems?

26 Apr 2008 Toolbox Wavelets Wavelet transform and coding functions, including other more exotic transforms (laplacian, steerable Author: Gabriel Peyre Kenney, Colleen

I am unable to compile the toolbox. When I attempt to, I get the error message C:\PROGRA~1\MATLAB\R2007B\BIN\MEX.PL: Error: 'jp2k/jp2_codec.c' not found. How do I fix this?

13 Apr 2008 A Numerical Tour of Signal Processing A set of Matlab experiments that illustrates advanced computational signal and image processing. Author: Gabriel Peyre Relos, Santiago

02 Apr 2008 MATLAB Tips & Tricks A list of useful tips and tricks with concise piece of code and comments. Author: Gabriel Peyre hesham, amr

02 Apr 2008 Toolbox Sparsity Sparsity-based signal processing related functions. Author: Gabriel Peyre Gurlahosur, Prasad

28 Mar 2008 Toolbox diffc A toolbox to perform differential calculus on a matrix. Author: Gabriel Peyre Kamoun, Walid

I AM trying to run it but it keeps on outputting "Undefined function or method 'getoptions' for input arguments of type 'struct'."

11 Mar 2008 A Numerical Tour of Signal Processing A set of Matlab experiments that illustrates advanced computational signal and image processing. Author: Gabriel Peyre lawerence, david

15 Feb 2008 Toolbox Fast Marching A toolbox for the computation of the Fast Marching algorithm in 2D and 3D. Author: Gabriel Peyre Sampat, Mehul

I was trying to run the test_active_contour.m file. I get the following error message: "Undefined function or method 'perform_conjugate_gradient' for input arguments of type 'function_handle'."

I tried to find the perform_conjugate_gradient fn but could not locate it in the toolbox. Could you please provide the source for this function ?
Thanks

12 Feb 2008 Toolbox Wavelets Wavelet transform and coding functions, including other more exotic transforms (laplacian, steerable Author: Gabriel Peyre Kumar, Navin

08 Feb 2008 Toolbox Wavelets on Meshes A toolbox to compute wavelet transform on 3D meshes Author: Gabriel Peyre M, Leo

Thank you for this useful script,
Could I apply this toolbox on free form shapes (3D sculptured surface) to find wavelet transform!

 

MATLAB Central Terms of Use

NOTICE: Any content you submit to MATLAB Central, including personal information, is not subject to the protections which may be afforded information collected under other sections of The MathWorks, Inc. Web site. You are entirely responsible for all content that you upload, post, e-mail, transmit or otherwise make available via MATLAB Central. The MathWorks does not control the content posted by visitors to MATLAB Central and, does not guarantee the accuracy, integrity, or quality of such content. Under no circumstances will The MathWorks be liable in any way for any content not authored by The MathWorks, or any loss or damage of any kind incurred as a result of the use of any content posted, e-mailed, transmitted or otherwise made available via MATLAB Central. Read the complete Terms prior to use.

Contact us at files@mathworks.com