how can i extract symbols in leftbottom and rightbottom panals to separate images
1 view (last 30 days)
Show older comments

Answers (1)
Voss
on 31 Dec 2021
im = imread('image.jpeg');
im_top = im(1:30,:,:);
im_bottom_left = im(31:end,1:69,:);
im_bottom_right = im(31:end,70:end,:);
imwrite(im_top,'image_top.jpeg');
imwrite(im_bottom_left,'image_bottom_left.jpeg');
imwrite(im_bottom_right,'image_bottom_right.jpeg');
figure();
subplot(2,2,1);
imshow(im);
subplot(2,2,2);
imshow(imread('image_top.jpeg'));
subplot(2,2,3);
imshow(imread('image_bottom_left.jpeg'));
subplot(2,2,4);
imshow(imread('image_bottom_right.jpeg'));
4 Comments
Voss
on 31 Dec 2021
I think you'll most likely need to use some image processing techniques like Image Analyst uses in his answer over there. I'm not really familiar with those techniques, sorry.
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!