Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
2:1 zoom in of pictures
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello everyone.
I want to reduce 4 images of 256 x 256 pixels in a ratio of 2:1.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1401679/image.bmp)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1401684/image.bmp)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1401689/image.bmp)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1401694/image.bmp)
After reducing it, I want to combine it side by side and one under the other so that it is a 2x2 matrix and make it a single picture.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1401699/image.png)
I want to calculate the mean and standard deviation of this image I have obtained.
How can i do it? Is anyone help me?
Best regards.
% Read the four standard images
image1 = imread('image1.jpg');
image2 = imread('image2.jpg');
image3 = imread('image3.jpg');
image4 = imread('image4.jpg');
% Resize the images to the desired size of 256x256 pixels
image1_resized = imresize(image1, [256 256]);
image2_resized = imresize(image2, [256 256]);
image3_resized = imresize(image3, [256 256]);
image4_resized = imresize(image4, [256 256]);
% Create a blank canvas for the combined image
combined_image = uint8(zeros(256, 512, 3));
% Place the resized images side by side in the combined image
combined_image(:, 1:256, :) = image1_resized;
combined_image(:, 257:512, :) = image2_resized;
combined_image(:, 513:768, :) = image3_resized;
combined_image(:, 769:1024, :) = image4_resized;
% Display the combined image
imshow(combined_image);
댓글 수: 0
답변 (0개)
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!