-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Matlab implementation is out of date with modern matlab #5
Comments
sedurCode
added a commit
to sedurCode/carfac
that referenced
this issue
Feb 11, 2021
sedurCode
added a commit
to sedurCode/carfac
that referenced
this issue
Mar 1, 2021
# This is the 1st commit message: 9 update cpp build settings and gtest compatability # This is the commit message google#2: Revert back to test suite when using a more uptodate version of gtest than supplied by apt-get # This is the commit message google#3: actually version 1.8 # This is the commit message google#4: scons instructions update # This is the commit message google#5: google#5 Now matlab scripts run correctly with modern matlab # This is the commit message google#6: Update SConstruct to be python 3 compatible.
sedurCode
added a commit
to sedurCode/carfac
that referenced
this issue
Mar 1, 2021
# This is the 1st commit message: 9 update cpp build settings and gtest compatability # This is the commit message google#2: Revert back to test suite when using a more uptodate version of gtest than supplied by apt-get # This is the commit message google#3: actually version 1.8 # This is the commit message google#4: scons instructions update # This is the commit message google#5: google#5 Now matlab scripts run correctly with modern matlab # This is the commit message google#6: Update SConstruct to be python 3 compatible. # This is the commit message google#7: revert matlab-related changes # This is the commit message google#8: whitespace
I think SAI_Run.m is close to what you need.
It at least has an example of how to compute SAI frames from CARFAC segment
outputs.
Dick
…On Wed, Jul 13, 2022 at 6:54 PM Pitaya-Lychee ***@***.***> wrote:
Hello, it is my honor to receive the code you shared. May I ask which
variable in the code I should observe if I want to extract the SAI image of
single frame speech in maltab instead of the log-delayed SAI movie? Looking
forward to your reply.
—
Reply to this email directly, view it on GitHub
<#5 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABGW7DD4P2D6RGECHAKTAVDVT5XMRANCNFSM4XOOTAQA>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Oh, sorry,I just noticed this file, but another problem arose. When dealing with log-delay SAI, we set different width and window_width for each layer to constrain the buffer_width, but the SAI_Run.m file requires a sai_struct. Is it also related to the layer_array of each layer in log-delay SAI? Or take another fixed width and window_width? Looking forward to your reply, have a nice day!
…------------------ 原始邮件 ------------------
发件人: "google/carfac" ***@***.***>;
发送时间: 2022年7月14日(星期四) 中午1:19
***@***.***>;
***@***.******@***.***>;
主题: Re: [google/carfac] Matlab implementation is out of date with modern matlab (#5)
I think SAI_Run.m is close to what you need.
It at least has an example of how to compute SAI frames from CARFAC segment
outputs.
Dick
On Wed, Jul 13, 2022 at 6:54 PM Pitaya-Lychee ***@***.***>
wrote:
> Hello, it is my honor to receive the code you shared. May I ask which
> variable in the code I should observe if I want to extract the SAI image of
> single frame speech in maltab instead of the log-delayed SAI movie? Looking
> forward to your reply.
>
> —
> Reply to this email directly, view it on GitHub
> <#5 (comment)>, or
> unsubscribe
> <https://github.com/notifications/unsubscribe-auth/ABGW7DD4P2D6RGECHAKTAVDVT5XMRANCNFSM4XOOTAQA>
> .
> You are receiving this because you are subscribed to this thread.Message
> ID: ***@***.***>
>
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.Message ID: ***@***.***>
|
I don't recall and don't have the code in front of me right now, but I
believe there's another file by that one called something like
SAI_hacking.m, which might give you a good example of how to use it.
Dick
On Thu, Jul 14, 2022, 12:51 AM Pitaya-Lychee ***@***.***>
wrote:
… Oh, sorry,I just noticed this file, but another problem arose. When
dealing with log-delay SAI, we set different width and window_width for
each layer to constrain the buffer_width, but the SAI_Run.m file requires a
sai_struct. Is it also related to the layer_array of each layer in
log-delay SAI? Or take another fixed width and window_width? Looking
forward to your reply, have a nice day!
------------------ 原始邮件 ------------------
发件人: "google/carfac" ***@***.***>;
发送时间: 2022年7月14日(星期四) 中午1:19
***@***.***>;
***@***.******@***.***>;
主题: Re: [google/carfac] Matlab implementation is out of date with
modern matlab (#5)
I think SAI_Run.m is close to what you need.
It at least has an example of how to compute SAI frames from CARFAC
segment
outputs.
Dick
On Wed, Jul 13, 2022 at 6:54 PM Pitaya-Lychee ***@***.***>
wrote:
> Hello, it is my honor to receive the code you shared. May I ask which
> variable in the code I should observe if I want to extract the SAI
image of
> single frame speech in maltab instead of the log-delayed SAI movie?
Looking
> forward to your reply.
>
> —
> Reply to this email directly, view it on GitHub
> <#5 (comment)>,
or
> unsubscribe
> <
https://github.com/notifications/unsubscribe-auth/ABGW7DD4P2D6RGECHAKTAVDVT5XMRANCNFSM4XOOTAQA>
> .
> You are receiving this because you are subscribed to this
thread.Message
> ID: ***@***.***>
>
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.Message ID: ***@***.***>
—
Reply to this email directly, view it on GitHub
<#5 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABGW7DCH6OZYO4WNRGLEW2LVT7BITANCNFSM4XOOTAQA>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Several changes to matlab have made the matlab scripts for CARFAC slightly out of date.
An example of this is the use of
wavread
andwavwrite
which mathworks deprecated a couple years ago in favour ofaudioread
andaudiowrite
. The example code is also slightly platform specific, but the changes to make it platform agnostic are minimal.The text was updated successfully, but these errors were encountered: