-
Notifications
You must be signed in to change notification settings - Fork 4
/
Changelog.raw
1805 lines (1120 loc) · 66.7 KB
/
Changelog.raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2002-11-27 Laurent Jacques <[email protected]>
* tools/display/yashow_matrix.m:
Allowing uint8 images with single layer to be displayed in gray
* tools/misc/yapsnr.m: Specializing this function to uint8 data type
2002-11-26 Laurent Jacques <[email protected]>
* sample/2d/lena.mat: update
* sample/2d/lena.mat:
Adding the most famous pictures of the image processing domain. see the full images here http://www.lenna.org/full/len_full.html
2002-11-22 Laurent Jacques <[email protected]>
* tools/misc/yapsnr.m, tools/misc/yasnr.m:
Adding this Peak Signal to Noise Ratio and simplifying the help header of yasnr.m.
2002-11-21 Laurent Jacques <[email protected]>
* continuous/1dt/cwt1dt.m, continuous/1dt/yashow_cwt1dt.m, continuous/2d/yashow_samcwt2d.m, tools/display/yashow_matrix.m, tools/display/yashow_spheric.m:
Making findstr independent of the matlab version by replacing it with yastrfind
* tools/display/yapbar.m, tools/help/yademo.m, tools/help/yahelp.m, tools/misc/whatin.m:
Making strfind independent of the matlab version with yastrfind
* tools/misc/yastrfind.m:
Adding this independent strfind function to deal with the abscence of strfind or findstr in certain matlab versions.
* doc/devel/yawtb_type.txt: Adding some integer types.
* tools/misc/yasnr.m:
Adding this other compution of signal to noise ratio for signals and images.
* doc/devel/yawtb_type.txt:
Adding this description of the accepted type in the YAWtb
2002-10-30 Laurent Jacques <[email protected]>
* tools/misc/yaspline.m: Error in the interval definition.
* tools/display/yapbar.m:
Deleting the .m extension of the calling function in the title.
* tools/display/yapbar.m:
Adding the name of the calling function in the title.
2002-10-28 Laurent Jacques <[email protected]>
* tools/misc/yaspline.m:
Adding this yawtb implementation of a cardinal B-spline.
2002-10-25 Laurent Jacques <[email protected]>
* tools/display/yashow.m, tools/display/yashow_matrix.m:
Specializing the different modes in yashow_matrix and simplifying the essangle mode.
2002-10-08 Laurent Jacques <[email protected]>
* continuous/sphere/wave_defs/morletsph.c, Changelog: Update
* continuous/sphere/wave_defs/dogsph.c, continuous/sphere/wave_defs/morletsph.c:
matPutVariable() in fact not necessary in R13
* Changelog, continuous/sphere/wave_defs/dogsph.c, continuous/sphere/wave_defs/morletsph.c, yamake.m:
Taking into account the obsolescence of mxSetName() for matlab R13.
2002-09-19 Laurent Jacques <[email protected]>
* tools/misc/yapuls2.m: Allowing size in shape of vector.
* tools/misc/yapuls2.m:
Adding yapuls2 to simplify a little bit our programmer life
2002-08-21 Laurent Jacques <[email protected]>
* tools/display/yashow.m:
Little bug with standard matrix and logical status (second)
* tools/display/yashow.m:
Little bug with standard matrix and logical status
2002-08-06 Laurent Jacques <[email protected]>
* discrete/frames/2d/frame_defs/cauchy2d_wav.m, discrete/frames/2d/frame_defs/gabor2d_wav.m:
Calibrating to center these wavelets on 3*pi/4
* continuous/2d/wave_defs/cauchy2d.m, tools/help/yademo.m, tools/misc/yawopts.m:
Simplifications
* discrete/frames/2d/frame_defs/cauchy2d_app.m, discrete/frames/2d/frame_defs/cauchy2d_wav.m, discrete/frames/2d/frame_defs/gabor2d_app.m, discrete/frames/2d/frame_defs/gabor2d_wav.m, discrete/frames/2d/fwt2d.m, discrete/frames/2d/ifwt2d.m:
Improvements and adding the cauchy frame.
2002-08-01 Laurent Jacques <[email protected]>
* discrete/frames/2d/fwt2d.m, discrete/frames/2d/ifwt2d.m:
Forgetting the HF remainder and improving the scale rule with scfirst
* discrete/frames/2d/frame_defs/box2d_rem.m, discrete/frames/2d/frame_defs/gabor2d_rem.m:
The high frequency remainder are not necessary (useless)
* discrete/frames/2d/fwt2d.m: Adding a demo
* discrete/frames/2d/frame_defs/box2d_app.m, discrete/frames/2d/frame_defs/box2d_rem.m, discrete/frames/2d/frame_defs/box2d_wav.m, discrete/frames/2d/frame_defs/gabor2d_app.m, discrete/frames/2d/frame_defs/gabor2d_rem.m, discrete/frames/2d/frame_defs/gabor2d_wav.m:
Completing each headers to explain what represents each function (must be completed)
2002-07-31 Laurent Jacques <[email protected]>
* discrete/frames/2d/fwt2d.m, discrete/frames/2d/ifwt2d.m:
Correcting a bug with the selection of scales and of angles
* discrete/frames/2d/fwt2d.m, discrete/frames/2d/ifwt2d.m:
Allowing different nang according to scales
* discrete/frames/2d/frame_defs/gabor2d_wav.m:
Bad value of sigma (k0 * sigma must be greater than 5.6)
* discrete/frames/2d/frame_defs/gabor2d_wav.m, discrete/frames/2d/frame_defs/box2d_app.m, discrete/frames/2d/ifwt2d.m:
Improvements and adding an option to gabor when the user want to auto adapt its spread
* tools/misc/yawopts.m:
Updating header and adding an possibility for boolean options
* tools/misc/yawopts.m: Little bug with the '*' detection
2002-07-30 Laurent Jacques <[email protected]>
* discrete/frames/2d/fwt2d.m:
Improving the 'export' option and adding the possibility to export only the sum of all the masks.
2002-07-29 Laurent Jacques <[email protected]>
* discrete/frames/2d/ifwt2d.m:
Adding an import function to rebuild the image only from the approximation, from the wavelet coefficients or from high frequency remainder
* discrete/frames/2d/fwt2d.m:
Adding an export function to compute only approximation, wavelet coefficients or high frequency remainder
* tools/display/yashow.m, tools/display/yashow_matrix.m:
'Mesh' option is becoming 'Surf'
* discrete/frames/2d/fwt2d.m:
Computing really all the mask in out.all_mask
2002-07-26 Laurent Jacques <[email protected]>
* discrete/frames/2d/frame_defs/gabor2d_app.m, discrete/frames/2d/frame_defs/gabor2d_rem.m, discrete/frames/2d/frame_defs/gabor2d_wav.m:
Correcting certain factors
* discrete/frames/2d/frame_defs/box2d_app.m, discrete/frames/2d/frame_defs/box2d_rem.m, discrete/frames/2d/frame_defs/box2d_wav.m, discrete/frames/2d/frame_defs/gabor2d_app.m, discrete/frames/2d/frame_defs/gabor2d_rem.m, discrete/frames/2d/frame_defs/gabor2d_wav.m, discrete/frames/2d/fwt2d.m, discrete/frames/2d/ifwt2d.m:
Adding the framed wavelet transform. Lots of work still to do! Help incomplete, probably better choice of parameter, ... but it exists!
2002-07-25 Laurent Jacques <[email protected]>
* continuous/2d/yashow_cwt2d.m, discrete/packet/2d/wpck2d.m:
Inserting yadiro() for the dilation and rotation actions.
* continuous/2d/cwt2d.m:
Including yadiro for the dilation and the rotation of the frequency plane.
* tools/misc/yadiro.m:
Adding this functions to perform dilation and rotation in the various 2D tranforms
* discrete/frames/2d/frame_defs/.is_in_mpath:
putting discrete/frames/2d/frame_defs in the matlab path
* continuous/2d/wave_defs/gabor2d.m:
Refering to morlet2d.m in the code. Comment about the equivalence with morlet2d.m
* continuous/2d/wave_defs/gabor2d, continuous/2d/wave_defs/gabor2d.m:
mv gabor2d gabor2d.m
* tools/display/yashow.m:
Specializations of yashow have now the format of "yashow_*.m" (instead of "*_yashow.m")
* discrete/packet/2d/wpck2d_yashow.m, discrete/packet/2d/yashow_wpck2d.m:
mv wpck2d_yashow.m yashow_wpck2d.m
* continuous/1d/cgt1d_yashow.m, continuous/1d/yashow_cgt1d.m:
mv cgt1d_yashow.m yashow_cgt1d.m
* continuous/sphere/cwtsph_yashow.m, continuous/sphere/yashow_cwtsph.m:
mv cwtsph_yashow.m yashow_cwtsph.m
* continuous/3d/cwt3d_yashow.m, continuous/3d/yashow_cwt3d.m:
mv cwt3d_yashow.m yashow_cwt3d.m
* continuous/2d/samcwt2d_yashow.m, continuous/2d/yashow_samcwt2d.m:
mv samcwt2d_yashow.m yashow_samcwt2d.m
* continuous/2d/cwt2d_yashow.m, continuous/2d/yashow_cwt2d.m:
mv cwt2d_yashow.m yashow_cwt2d.m
* continuous/1dt/cwt1dt_yashow.m, continuous/1dt/yashow_cwt1dt.m:
mv cwt1dt_yashow.m yashow_cwt1dt.m
* continuous/1d/cwt1d_yashow.m, continuous/1d/yashow_cwt1d.m:
mv yashow_cwt1d.m cwt1d_yashow.m
* continuous/2d/wave_defs/gabor2d:
Adding this function for the persons who know Gabor and not Morlet
2002-07-24 Laurent Jacques <[email protected]>
* tools/display/yashow.m, tools/display/yashow_matrix.m:
amin() and amax() subfunctions belong to yashow_matrix.m and not to yashow.m
* continuous/2d/cwt2d.m, tools/display/yashow_matrix.m:
*** empty log message ***
* continuous/1dt/cwt1dt.m:
Simplifying the code. Deleting the choice of the norm which has no sens in cwt1dt theory.
* tools/help/yademo.m:
Correcting a bug detected in cwt1dt with comments in the code environment.
2002-07-23 Laurent Jacques <[email protected]>
* tools/display/yashow.m, tools/display/yashow_matrix.m, tools/display/yashow_spheric.m, tools/display/yashow_timeseq.m, tools/display/yashow_volume.m:
Simplifying yashow by specialysing standard display methods (matrix, spheric, volume, ...) outside (in yashow_matrix, yashow_spheric, yashow_volume)
2002-07-03 Alain Coron <coron@pcfyma3>
* TODO:
Add new suggestions dealing with 1D+T CWT + one about the filter argument of
yashow.
* continuous/1dt/wave_defs/morlet1dt.m: Documentation improvements.
* continuous/1dt/wave_defs/mexican1dt.m: Doc improvements.
2002-07-02 Alain Coron <coron@pcfyma3>
* continuous/1dt/cwt1dt_yashow.m:
Improve the doc by adding \libfun commands and correcting some sentences.
* continuous/1dt/cwt1dt.m:
Improve the doc by adding a \libfun commands.
* tools/display/yashow.m:
Improve the \mansecSeeAlso section and add some \libfun commands.
* continuous/1d/cgt1d.m, continuous/1d/cgt1d_yashow.m, continuous/1d/cwt1d.m, continuous/1d/cwt1d_yashow.m, continuous/1d/wave_defs/morlet1d.m, continuous/1d/wave_defs/sdog1d.m, continuous/1d/win_defs/gauss1d.m:
Improve the \mansecSeeAlso section.
2002-06-28 Alain Coron <coron@pcfyma3>
* doc/tex/DocProcess.pl:
Adapt the doc to the files that moved from frames/2d to packet/2d.
* doc/tex/YAWTBReferenceManual.tex:
Improve the section "Writing the Matlab headers". Adapt the doc to the
files that moved from frames/2d to packet/2d.
* tools/display/yashow.m: Doc improvements
2002-06-27 Alain Coron <coron@pcfyma3>
* continuous/1dt/cwt1dt.m: Doc improvements.
2002-06-20 Laurent Jacques <[email protected]>
* tools/display/yashow.m:
Adding the possibility to control the threshold of the essangle mode
* discrete/packet/2d/wpck_defs/.is_in_mpath:
Putting discrete/packet/2d/wpck_defs/ in the matlab path
* tools/display/yashow.m:
Adding the essangle mode for the angle of data thresholded at 1% of the modulus value.
* continuous/2d/cwt2d_yashow.m: Simplifying the code
* continuous/2d/cwt2d_yashow.m: Simplifying the code with varargin.
2002-06-20 Alain Coron <coron@pcfyma3>
* continuous/1d/cwt1d_yashow.m:
thresh.m was renamed to yathresh.m. Script modified accordingly.
* tools/misc/thresh.m, tools/misc/yathresh.m:
Renamed thresh.m to yathresh.m
2002-06-19 Alain Coron <coron@pcfyma3>
* continuous/1d/cwt1d_yashow.m:
If the option fig is not specified, use the current figure.
* continuous/1dt/cwt1dt_yashow.m:
if the option fig is not specified, use the current figure.
* tools/misc/thresh.m:
Add mode in the \mansecSyntax section of the doc.
2002-06-17 Laurent Jacques <[email protected]>
* tools/misc/yamax.m:
Adding the 'dir' option and several examples in the header.
* tools/display/yashow.m:
Removing the come back to the preceeding figure.
* YAWTB_TREE: Update to put wavelet packet
* discrete/frames/2d/iwpck2d.m, discrete/frames/2d/wpck2d.m, discrete/frames/2d/wpck2d_yashow.m, discrete/packet/2d/iwpck2d.m, discrete/packet/2d/wpck2d.m, discrete/packet/2d/wpck2d_yashow.m, discrete/packet/2d/wpck_defs/README, discrete/packet/2d/wpck_defs/phin.m, discrete/packet/2d/wpck_defs/pmexican2d.m, discrete/packet/2d/wpck_defs/pseudiff.m:
Moving discrete/frame/2d into discrete/packet/2d
* discrete/packet/2d/.is_in_mpath:
Marking yawtb/discrete/packet/2d to include it in the matlab path
2002-06-13 Laurent Jacques <[email protected]>
* INSTALL, README: Adding some words about the initial release.
* Changelog:
Adding this file to take into account the changelog between each futur version.
* tools/display/yashow.m:
Yashow display an object in the current figure now except if 'fig' is set.
2002-06-12 Alain Coron <coron@pcfyma3>
* continuous/sphere/wave_defs/morletsph.m:
Shorten the description. Add an empty line between each reference
(Otherwise only one paragraph of reference. Hard to read).
2002-06-12 Laurent Jacques <[email protected]>
* continuous/1d/cwt1d_yashow.m, tools/misc/yamax.m:
Updating the calls of thresh correspondingly to its recent change.
* tools/misc/thresh.m:
Changing the definition of level. Now it is comprised inside [0,1].
The usage of thresh is also dispayed at each error.
* continuous/sphere/wave_defs/morletsph.m:
Correcting some latex errors.
* continuous/sphere/wave_defs/morletsph.m:
Adding the L. Demanet's description of his wavelet ;-)
* TODO: Adding this file to don't forget all the things TODO.
2002-06-11 Alain Coron <coron@pcfyma3>
* continuous/sphere/wave_defs/morletsph.m:
Documentation read from the C-file.
* continuous/sphere/wave_defs/morletsph.c:
Move the documentation to the M-file.
* continuous/sphere/wave_defs/dogsph.m:
Documentation read from the C-file.
* continuous/sphere/wave_defs/dogsph.c:
Move the documentation to the M-file.
2002-06-04 Alain Coron <coron@pcfyma3>
* continuous/2d/wave_defs/wheel2d.m, continuous/2d/wave_defs/pethat2d.m:
Add {} and dollars before and after |K|=2^0.5
* continuous/1dt/cwt1dt.m, continuous/1d/cwt1d.m:
Documentation enhancement.
2002-06-03 Laurent Jacques <[email protected]>
* continuous/2d/cwt2d.m:
A bug with the 'Pos' option and the position vector input
2002-05-30 Laurent Jacques <[email protected]>
* continuous/2d/cwt2d_yashow.m:
Adding some words in the title of the fixed position mode about fixed scale or fixed angle
* continuous/2d/cwt2d.m, continuous/2d/cwt2d_yashow.m:
Adding a mode for cwt2d_yashow to display the result of cwt2d on selected point ('pos' mode of cwt2d).
Simplifying the code with wavopts and varargin in their call through eval
2002-05-27 Laurent Jacques <[email protected]>
* continuous/2d/cwt2d.m:
Adding an option ('NoPBAR') to disable the progress bar.
* sample/2d/thedisk.m:
Adding the 'Center' option to control the center of the disk.
2002-05-24 Laurent Jacques <[email protected]>
* sample/2d/thedisk.m:
Changing the type of smoothing. It uses now a square cosine to define edge.
2002-05-13 Laurent Jacques <[email protected]>
* continuous/2d/cwt2d.m: Correcting an error in the (x,y) format of pos
2002-05-10 Laurent Jacques <[email protected]>
* continuous/2d/cwt2d.m:
Rewriting the SelPos like a Pos mode with either the entering of a vector or the selection on the current figure with the keyword 'inter'
2002-05-08 Laurent Jacques <[email protected]>
* continuous/2d/cwt2d.m:
Adding the 'SelPos' mode to select interactively a position b on the current/selected figure where to do the CWT
2002-05-06 Laurent Jacques <[email protected]>
* tools/misc/yamax.m: Little bug in the cache creation position
* tools/misc/yamax.m:
Adding the binary matrix of maxima as a 'cache' field of out in the 'pos' mode.
* tools/misc/yamax.m:
Adding a new field 'lin' to out in case where 'pos' is specified. This is for referring the position of the maxima of mat in a linear way.
2002-05-03 Laurent Jacques <[email protected]>
* tools/display/yashow.m:
Setting a minimal default thresholding when we show minima and maxima of an image.
* continuous/2d/cwt2d.m: Completing the exec function.
* continuous/2d/cwt2d.m:
Adding the option exec to handle the result in a scale-angle computing loop.
Adding a yapbar for the loop
* sample/2d/thedisk.m:
Radius is now controlled by varargin and getopts.
Adding a 'Smoothed' option to smooth the disk by a Gaussian convolution of specified width.
* sample/2d/thedisk.m: Adding the control of the radius.
2002-04-24 Laurent Jacques <[email protected]>
* tools/display/yashow.m:
Adding a 'Normalize' option to normalize any data by the maximum of their absolute value
* tools/misc/getopts.m, continuous/2d/wave_defs/wheel2d.m:
Updating the help header
* continuous/2d/wave_defs/wheel2d.m:
Adding this wavelet which seems like a wheel in frequency
2002-04-23 Laurent Jacques <[email protected]>
* continuous/2d/wave_defs/pethat2d.m:
Inadequate extra parameter herited from the mexican hat.
* continuous/2d/samcwt2d.m, continuous/2d/samcwt2d_yashow.m:
Link sam yashow to the yashow of signal and images.
Correcting some bugs in samcwt2d
* tools/misc/yawopts.m:
The empty case had a bug. It didn't retuen an empty cell {}, but an empty array [].
2002-04-22 Laurent Jacques <[email protected]>
* continuous/2d/wave_defs/pethat2d.m:
Adding the wavelet of Aurell and Frick
2002-04-16 Laurent Jacques <[email protected]>
* tools/display/yashow.m: Suppressing the empty "Reference" section.
* tools/help/yahelp.m: Adding the sectionning and simplifying the code.
* tools/display/yapbar.m: Simplifying the code.
2002-04-02 Laurent Jacques <[email protected]>
* continuous/1d/cgt1d_yashow.m, continuous/1d/cgt1d.m:
Modifying the demo to obtain a prety example
* continuous/1d/cgt1d.m:
Forgot to multiply freqs by 2pi to obtain pulsation
* continuous/1d/cgt1d.m: Changing gabor to Gabor
* continuous/1d/cgt1d.m: Changing the function presentation in header
* doc/tex/DocProcess.pl:
Adding continuous/1d/win_defs to the processed directories
* continuous/1d/cgt1d.m, continuous/1d/cgt1d_yashow.m, continuous/1d/win_defs/gauss1d.m:
Adding the Continuous Gabor Transform and its yashow.
* sample/1d/superpos.mat:
Adding this sample for cgt1d.m (coming from the exercices of PVdG)
* continuous/1d/wave_defs/gauss1d.m, continuous/1d/win_defs/gauss1d.m:
Moving gauss1d.m from the wave_defs to win_defs
* continuous/1d/cwt1d.m: Completing the help.
* continuous/1d/win_defs/.is_in_mpath:
Adding the win_defs subdir for the possible windows of the gabor transform.
2002-03-29 Laurent Jacques <[email protected]>
* continuous/1d/cwt1d_yashow.m:
Changing the sens of graph: signal is now above cwt.
2002-03-27 Laurent Jacques <[email protected]>
* tools/misc/vect.m:
Correcting a bug in 'log2': a 'log' instead of a 'log2' was reamining.
* sample/2d/thedisk.m: Adding this 2D disk sample
2002-03-26 Laurent Jacques <[email protected]>
* continuous/1dt/cwt1dt.m, continuous/2d/cwt2d.m, continuous/2d/samcwt2d.m, continuous/3d/cwt3d.m, discrete/frames/2d/iwpck2d.m, discrete/frames/2d/wpck2d.m:
Suppressing the use of vect(.,.,.,'fftshift') by this of yapuls.
Removing fftshift whis is also not needed anymore.
* tools/misc/yapuls.m:
Removing trailing ^M (coming from the winworld ?)
2002-03-25 Alain Coron <coron@pcfyma3>
* continuous/1d/cwt1d.m: Now use yapuls to generate the frequency line.
* tools/misc/vect.m: Remove fftshift type.
* tools/misc/yapuls.m: Pulsation vector.
2002-03-11 Alain Coron <coron@pcfyma3>
* continuous/1d/cwt1d.m:
Safer way of assigning a default L^2 normalisation.
* continuous/1d/cwt1d.m:
A bug in the default (L^2) normalization exponent of the scale. It is 0.5 and not 1.
2002-03-06 Laurent Jacques <[email protected]>
* continuous/1d/cwt1d.m:
A bug in the normalization exponent of the scale. It is 0.5 and not 1.
* continuous/1d/cwt1d.m:
Rewriting the use of structure wavopts in function callings (with eval)
* continuous/1d/cwt1d.m:
Allowing negative scales by putting sign(a).*abs(a)^norm instead of a^norm
2002-03-06 Alain Coron <coron@pcfyma3>
* doc/tex/YAWTBReferenceManual.tex:
"How to contribute" section: It describes the commands \libfun \libvar
\YAWTB. New advices for the function description.
2002-03-05 Laurent Jacques <[email protected]>
* continuous/1d/cwt1d.m:
Replacing the transposition of scales by scales(:) which is safer in case of column matrix scales.
Adding the conjugaison of the mask which was missing.
* continuous/1d/cwt1d.m: Adding a word about out.extra
2002-03-05 Alain Coron <coron@pcfyma3>
* continuous/1d/wave_defs/sdog1d.m, continuous/1d/wave_defs/morlet1d.m, continuous/1d/wave_defs/gauss1d.m:
Correct the documentation in the header part.
* continuous/1d/wave_defs/README: Typos
* continuous/1d/cwt1d_yashow.m, continuous/1d/cwt1d.m:
Correct the documentation in the header part.
* doc/tex/YAWTBReferenceManual.tex:
Add two commands \libfun and \libvar to respectively highlight a function and
a variable in the documentation.
2002-03-04 Laurent Jacques <[email protected]>
* tools/misc/whatin.m: Adding information about data memory usage.
2002-03-01 Laurent Jacques <[email protected]>
* doc/tex/Makefile:
Removing .pl file in doc/html dir in the "clean" section
* tools/io/pgmread.m, tools/io/pgmwrite.m:
Adding other pgm function in the "see also" section
* tools/io/pgmwrite.m:
Adding the author of the original writepgm which is the base of this file
* doc/tex/DocProcess.pl: Adding the tools/io dir.
* YAWTB_TREE: Adding a line for tools/io dir
* tools/io/pgmwrite.m:
Adding an automatic .pgm extension to all file written by pgmwrite.
* tools/io/pgmwrite.m: Adding this file to be able to write pgm file
* tools/io/pgmread.m: Correcting an inversion between row and column.
* tools/io/pgmread.m: Forgot to close the file
* tools/io/pgmread.m: Adding this file to read pgm file.
* tools/io/.is_in_mpath: Adding io dir in the yawtb path
* tools/misc/whatin.m:
Updating the comments in help header for the use of name instead of variable.
* tools/misc/whatin.m:
Allowing mat to carry the name of the variable instead of the variable
itself.
* tools/misc/whatin.m:
Rewritting the display and adding information about sizes
2002-02-28 Laurent Jacques <[email protected]>
* tools/display/yapbar.m:
Adding the name "Progress Bar" to the window of the yapbar.
* continuous/2d/cwt2d.m:
Allowing a matrix result of cwt2d (instead of yawtb struct) with the
new option 'Export'. Deleting loop in case of 1 scale/1 angle computation.
2002-02-27 Alain Coron <coron@pcfyma3>
* doc/tex/DocProcess.pl:
See Also section: Add a comma between each function
2002-02-27 Laurent Jacques <[email protected]>
* doc/tex/YAWTBReferenceManual.tex:
Modifying the titlepage in latex and in html to better display the logos in each mode.
* doc/tex/Makefile:
Adding the deleting of eventual ps file into the "clean" section.
* doc/tex/YAWTBReferenceManual.tex, doc/tex/logo_bgwhite.eps, doc/tex/yawtb_cwtsph.eps:
Adding logos for the documentation
* doc/tex/Makefile:
Modularizing all the specific compilation part into latex, postscript, pdf, ...
* tools/misc/thresh.m: Correcting a bug with 3D matrices.
Thresholding of yawtb object returns now a yawtb object.
2002-02-23 Laurent Jacques <[email protected]>
* tools/misc/yahist.m:
A little bug with round. Adding an 'eps' effect to correct this.
* tools/misc/yahist.m:
Correcting a bug with 2D histogram due to the last correction
* tools/misc/vect.m:
Correcting the representation of vector in the 'rlopen' mode.
Points of rlopen vectors were not the center of subintervals of
identical lengths.
* tools/misc/yahist.m: A bug for one dimensional histogram.
2002-02-21 Laurent Jacques <[email protected]>
* tools/misc/yahist.m: Error in the last adding.
* tools/misc/yahist.m: Adding an error checking rule.
* tools/misc/yahist.m: Adding support of range of data.
Updating the help.
* tools/misc/yahist.m:
Changing the rules for inputs recognition. It is based now on the size
of varargin{2}
2002-02-19 Laurent Jacques <[email protected]>
* tools/display/yashow.m: Correcting a bug with maxi/mini & histeq
2002-02-15 Laurent Jacques <[email protected]>
* tools/misc/yahist.m: More precise manchap.
* tools/misc/yahist.m:
This is a new implementation of histogram function hist which support 1D and 2D histogram.
2002-02-12 Laurent Jacques <[email protected]>
* yamake.m, sample/2d/theL.m: test
2002-02-11 Laurent Jacques <[email protected]>
* INSTALL: Spelling change.
2002-02-07 Laurent Jacques <[email protected]>
* tools/display/yashow.m:
Adding the mesh option. Updating the help for contour and the new mesh
option.
2002-02-01 Laurent Jacques <[email protected]>
* tools/display/yapbar.m:
Allowing the user to kill the yapbar window during any process without reporting error.
2002-01-25 Laurent Jacques <[email protected]>
* continuous/3d/cwt3d.m, continuous/3d/cwt3d_yashow.m, continuous/3d/wave_defs/morlet3d.m:
Correcting a bug in the spherical representation on the CWT angle. Now, (theta,phi) correspond to the spherical coordinates of a vector perpandicular to the detected objects. Like in 1D!
* tools/display/yashow.m:
Mofication of the help relative to the 'maxi' and 'mini' options.
* tools/display/yashow.m:
Profiting of the new thresholding option of yamax to modify 'maxi' &
'mini' options of yashow::matrix
* tools/misc/yamax.m: Adding a threshold option 'thresh'.
* tools/display/yashow.m:
Adding the 'mini' option for representation of minimum with 'o' on the
figure
2002-01-23 Laurent Jacques <[email protected]>
* continuous/1dt/cwt1dt_yashow.m, include/yawtb.h, tools/display/yashow.m:
English spelling changes.
* tools/display/yashow.m: Little bug in the transparency manipulation.
2002-01-22 Laurent Jacques <[email protected]>
* doc/tex/README: Adding a word about the Makefile
* doc/tex/Makefile:
Adding a 'clean_code' section to removed useless files after documentation building.
* doc/tex/Makefile:
Adding this Makefile to simplify the life of developpers in the documentation building.
* continuous/3d/wave_defs/morlet3d.m:
Matlab syntax error in the header example section.
* continuous/3d/cwt3d_yashow.m: Z label was missing.
* continuous/3d/cwt3d_yashow.m: Forget to add cwt3d_yashow
* continuous/3d/cwt3d.m:
Adding the support of the angles in the cwt3d. This implies the same in cwt3d_yashow
* continuous/3d/wave_defs/morlet3d.m: Adding the 3D morlet wavelet.
* doc/tex/YAWTBReferenceManual.tex: Adding the 3D input.
* sample/3d/the3dL.m: Latex spelling error with & instead of \&
* sample/3d/cube.m: Latex error with the use of & instead of \&
* doc/tex/DocProcess.pl:
Adding the cwt3d subdirs: continuous/3d, continuous/3d/wave_defs, sample/3d.
* tools/display/yashow.m:
Several bug in the axis for the volume section. Simplification in the code.
* tools/display/yashow.m:
A little bug in volume section between transparency and manual values.
2002-01-21 Laurent Jacques <[email protected]>
* tools/display/yashow.m: Hold on bug in volume section.
* tools/display/yashow.m:
Suppressing hold mode in volume section because it does nothing.
* sample/3d/.is_in_mpath, sample/3d/the3dL.m:
Adding the 3D L shape sample. Correct the .is_in_mpath missing in sample/3d
* tools/display/yashow.m: A little bug with hold on in the volume mode.
* tools/help/yademo.m: Minor bug correction.
* continuous/3d/cwt3d.m: Modifying the demo sample.
* sample/3d/cube.m: Adding this short cube sample for cwt3d demo.
* continuous/3d/wave_defs/.is_in_mpath, continuous/3d/wave_defs/mexican3d.m:
Adding the first 3D wavelet: the mexican hat.
* continuous/3d/.is_in_mpath, continuous/3d/cwt3d.m:
Adding the first implementation of the 3D wavelet transform.
* tools/display/yashow.m:
Adding support of the volume through transparent iso layers.
2002-01-11 Laurent Jacques <[email protected]>
* continuous/2d/wave_defs/endstop1.m:
Changing the Example section which was outdated. Error in the header
about epsilon.
* tools/help/yahelp.m:
A little bug with underscore. Prevent the same effect with $.
* continuous/2d/samcwt2d.m, continuous/2d/sarcwt2d.m, continuous/sphere/cwtsph.m, tools/display/yapbar.m:
Simplification of the use of yapbar and modifications associated in each mfile.
* tools/misc/regrep.m:
Some syntax error in the perl analysis due to possible quotes and $ in string.
* doc/tex/README:
Adding this readme to remember the way to generate the doc.
2002-01-10 Laurent Jacques <[email protected]>
* tools/help/yademo.m: Bad sentence in the begin of the header.
* tools/misc/ereg_replace.m, tools/misc/regrep.m:
Renaming ereg_replace (toolong) by regrep.
2002-01-10 Alain Coron <coron@pcfyma3>
* doc/tex/RefManual_1.tex:
This file was generated by the script DocProcess.pl. No need to be in the
CVS repository.
* doc/tex/DocProcess.pl, doc/tex/YAWTBReferenceManual.tex:
Add the category "Help, help!". Replace the autogenerated file
RefManual_1.tex by the more explicit one TMP_cmd_by_alpha.tex.
2002-01-10 Laurent Jacques <[email protected]>
* continuous/1d/cwt1d.m, doc/tex/RefManual_1.tex, tools/display/yashow.m:
An error in the header example section 'cwt2d' -> 'cwt1d'
* tools/help/yademo.m:
Adding this script to execute demo part of each yawtb mfile header.
2002-01-09 Laurent Jacques <[email protected]>
* tools/help/yahelp.m:
Adding this yawtb help parser to obtain a clear help on the matlab command line.
* tools/misc/ereg_replace.m:
Adding this script to perform substring replacement with regexp.
2002-01-08 Laurent Jacques <[email protected]>
* tools/help/.is_in_mpath:
Adding the directory tools/help to the matlab path.
2002-01-07 Laurent Jacques <[email protected]>
* doc/ps/YAWTBReferenceManual.ps:
Removing the postscript documentation like suggested by Alain.
2002-01-06 Alain Coron <coron@pcfyma3>
* tools/display/yashow.m:
Improve regular expressions in "See Also" section.
* tools/devel/xemacs_macro/cfile_header_part.txt, tools/devel/xemacs_macro/mfile_header_part.txt:
Modify the year attached to the Copyright.
* doc/tex/YAWTBReferenceManual.tex, doc/tex/RefManual_1.tex:
Add category sections in the manual.
* doc/tex/DocProcess.pl:
Label are provided with each toolbox command and each sectionning command.
Add automatic writing of category sections.
"See Also" section process the regular expressions, and add to the function
names a link to the functions.
* doc/tex/.latex2html-init:
Add a destination directory and improve the comments.
* discrete/frames/2d/wpck2d_yashow.m, continuous/sphere/cwtsph.m:
Correct typos.
* continuous/2d/wave_defs/cauchy2d.m:
Improve regular expressions in "See Also" section.
* continuous/2d/samcwt2d.m, continuous/2d/cwt2d_yashow.m:
Correct typos.
* continuous/2d/cwt2d.m:
Correct typos + regular expression in See Also section.
* continuous/1dt/cwt1dt.m: Correct typos.
* continuous/1d/cwt1d.m:
Correct typos + regular expression in See Also section.
* AUTHORS:
Add Alain Coron's address at Laboratoire d'Imagerie Paramétrique.
2001-12-18 Laurent Jacques <[email protected]>
* continuous/2d/wave_defs/esmex2d.m: A little bug in esmex.
* continuous/2d/cwt2d_yashow.m: Adding the positional filter display.
2001-12-13 Laurent Jacques <[email protected]>
* continuous/sphere/cwtsph.m:
Adding the yapbar (see tools/display) to show the progression status.
* sample/sphere/sector.mat:
The sector is now defined like in the A.C.H.A. paper.
2001-11-26 Laurent Demanet <demanet@pcfyma3>
* INSTALL: A test modif.
2001-11-14 Laurent Jacques <[email protected]>
* tools/display/yapbar.m, tools/misc/yapbar.m:
Yapbar is more specificely a display tool than a miscellanous tool.
2001-11-06 Laurent Jacques <[email protected]>
* tools/misc/yapbar.m: Tuning the size of the text box.
* tools/misc/yapbar.m: Tuning the text box size around the percentage.
* tools/misc/yapbar.m: A little bug in the figure size.
* tools/misc/yapbar.m:
Adding a white box around the text for a better lisibility.
* tools/misc/yapbar.m:
Adding this progress bar for long computation program.
2001-11-05 Laurent Jacques <[email protected]>
* tools/misc/yamax.m:
Adding the 'strict' modifier to obtain strict maximum, that is maximum strictly greater than their neighbours.
* tools/misc/vect.m: Supressing the restriction of deb<fin.
* tools/display/yashow.m:
The 'matrix' type can have now the 'x' and the 'y' fields for appropriate displays.
* tools/display/yashow.m:
Adding the possibility to display the 'matrix', 'vector', 'spheric', 'timeseq' types defined outside of yashow.
2001-11-04 Laurent Jacques <[email protected]>
* tools/cmap/rgray.m:
Adding this reverse gray colormap for convenience.
* YAWTB_TREE:
Adding the yawtb/tools/cmap subdir for the yawtb special colormaps.
* tools/cmap/.is_in_mpath: Adding yawtb/tools/cmap in the yawtb path.
2001-11-03 Laurent Jacques <[email protected]>
* AUTHORS: Modifying the Alain's email address.
* tools/misc/yamax.m:
Adding the 'pos' option to obtain the position of max as result.
The connection is now also an option.
2001-10-30 Laurent Jacques <[email protected]>
* continuous/2d/wave_defs/esmex2d.m: Epsilon was misplaced.
2001-10-28 Laurent Jacques <[email protected]>
* doc/tex/RefManual_1.tex:
Adding the source code of the reference manual.
* continuous/2d/wave_defs/esmex2d.m: Latex bug.
* doc/ps/YAWTBReferenceManual.ps:
The first YAWTB documentation generated thanks to Alain with his great perl script.
* doc/tex/YAWTBReferenceManual.tex:
Some error in the red color which is understood like the capital RED term. Why?
* continuous/2d/wave_defs/gaussz2d.m, continuous/2d/wave_defs/gaussx2d.m:
Latex bug.
2001-10-26 Laurent Jacques <[email protected]>
* tools/display/yashow.m:
For 'timeseq': adding the 'pause' modifier to allow a pause between each frame.
* tools/display/yashow.m:
For 'TimeSeq' case: a title is now added to give information in the frame evolution.
2001-10-25 Laurent Jacques <[email protected]>
* continuous/2d/wave_defs/esmex2d.m:
Adding this wavelet to prove that an endstop1 wavelet can be formed with a radial (Mex. H.) and and angular part.
* continuous/1dt/cwt1dt_yashow.m:
Bug in compatibility with strfind & findstr.