IMCROP does not support 'XData' or 'YData' specified in [max,min] order.

4 views (last 30 days)
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

Answers (1)

Walter Roberson
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.

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!