IMCROP does not support 'XData' or 'YData' specified in [max,min] order.
6 次查看(过去 30 天)
显示 更早的评论
I use this script and I get error line in imcrop
for indx=3:m
listing(indx).name
A = dicomread(strcat( 'C:\Echo Images\Stelios\FDB.dcm\' , listing(indx).name));
[t1 t2] = size(A); imshow(A);
A = imcrop(A, [200.5 59.75 591 480]);
%A = imresize(A, [360, 280]);
dicomwrite(A, strcat('C:\Echo Images\Stelios\FDB.dcm\test', int2str(indx-2) , '.dcm'));
end
0 个评论
回答(1 个)
Walter Roberson
2018-4-30
The syntax is
J = imcrop(x,y,___)
so both vectors must be specified and they must go before the array to be cropped.
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!