我正在根据条件旋转图像并将其显示在轴上,但未显示旋转图像。这是代码。
if(a== 1.000000)
r=imrotate(I,90);
axes(handles.axes1);
imshow(r);
elseif(a==0.000000)
r=imrotate(I,45);
axes(handles.axes1);
imshow(r);
我正在根据条件旋转图像并将其显示在轴上,但未显示旋转图像。这是代码。
if(a== 1.000000)
r=imrotate(I,90);
axes(handles.axes1);
imshow(r);
elseif(a==0.000000)
r=imrotate(I,45);
axes(handles.axes1);
imshow(r);