IMCROP does not support 'XData' or 'YData' specified in [max,min] order.
4 views (last 30 days)
Show older comments
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 Comments
Answers (1)
Walter Roberson
on 30 Apr 2018
The syntax is
J = imcrop(x,y,___)
so both vectors must be specified and they must go before the array to be cropped.
0 Comments
See Also
Categories
Find more on DICOM Format in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!