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

2 visualizzazioni (ultimi 30 giorni)
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

Risposte (1)

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

Categorie

Scopri di più su DICOM Format in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by