ircam-ismm / catart-mubu

MuBu based version of CataRT
Other
30 stars 4 forks source link

Filename Note Number + segmentation methods #58

Open christophertrapani opened 2 years ago

christophertrapani commented 2 years ago

Guys: Do I understand correctly that the chop segmentation in tutorials 8 + 9 is where the FilenameNoteNumber column is being created (see image)?

In this case, what's the strategy for how to add a FilenameNoteNumber and make it compatible the methods of segmentation used in most other patches (camu.process.descr-onseg / gate / chop)? Are separate camp segmentation patches that explicitly create FilenameNoteNumber desirable? Or is there an "addcolumn" command that can be tacked on after segmentation? Thanks!

Screen Shot 2022-06-09 at 11 48 31 PM
diemoschwarz commented 2 years ago

Good point, @christophertrapani. There are the two options:

  1. as is: use a second set of camu.process.* modules that create an extra const column with name FilenameNoteNumber to be used by the camu.filenamenotenumber abstraction that fills it.
  2. have camu.filenamenotenumber check if the column exists, create it if not, update menus, fill column

I don't know if option 2 is too volatile (column can be there or not...)?

christophertrapani commented 2 years ago