How to split an image into two and save it to a file
1 回表示 (過去 30 日間)
古いコメントを表示
Hello everyone: I have a project that I am working on and I am currently stuck at the point of dividing the image into two and saving them in a file. Note that I will apply the code to a group of images and I need to divide them into right and left and save them in the same file
0 件のコメント
回答 (1 件)
Matt J
2021 年 9 月 8 日
left=Image(:,1:round(end/2));
right=Image(:,round(end/2)+1:end );
save File.mat left right
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!