Problem with iradon in Matlab 2024b
15 次查看(过去 30 天)
显示 更早的评论
I recently update Matlab 2023a to Matlab 2024b
I am using iradon in iterative image reconstruction from projections. The code requires that the iradon filter be 'None'. That is allowed according to the help on iradon. This worked perfectly in Matlab 2023a but failed in Matlab 2024b
Code is:
sens=iradon(sinogram_ones,azi_angles,'None',128);
Error message is:
Error using iradon>parse_inputs (line 249)
Unknown input string: none.
Error in iradon (line 99)
[p,theta,filter,d,interp,N] = parse_inputs(varargin{:});
Advice welcomed CM
0 个评论
回答(2 个)
Steven Lord
2024-10-23,19:07
Can you confirm that you're using the iradon function included in Image Processing Toolbox? The error message indicates the failure occurs on line 99 in iradon.m but the iradon.m in this toolbox in release R2024b only has 83 lines. It also does not have a parse_inputs local function (and again, doesn't have a line 249.)
What does this show you when you run it in your installation?
which -all iradon
I also checked and the gpuArray overload of iradon has a line 99, but it's in the help text block. That overload is also only 154 lines long and like the "regular" iradon.m does not have a local function named parse_inputs.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Operators and Elementary Operations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!