フィルターのクリア

Problem with non equal dimensions when cropping using imcrop

2 ビュー (過去 30 日間)
Aude Rapet
Aude Rapet 2017 年 2 月 1 日
コメント済み: Aude Rapet 2017 年 2 月 2 日
Hi,
I have 3 pictures, try to write a code to select an area on my a3 picture with getrect, and then crop my a1 and a2 pictures following the same selected area. I wrote this :
clear all
%Tentative de crop
a11 = imread('well5recovered.tif'); %recovered
a1 = rgb2gray(a11);
a22 = imread('well5original.tif'); %original
a2 = rgb2gray(a22);
a3 = imread ('well5 cell.tif');
imshow (a3,[]);
rg2=round (getrect); %selection zone
imgf_a1=imcrop (a1,rg2); %crop a1
figure
imshow (imgf_a1);
imgf_a2=imcrop(a2,rg2); %crop a2
figure
imshow (imgf_a2);
I dont know why I dont have the same dimension for my cropped a1 and a2. A1 is way smaller than a2 and none of them seem to be the exact same size of what I had selected on a3 with getrect.
Thank you for your help!

採用された回答

KSSV
KSSV 2017 年 2 月 1 日
Depending on the resolution image after cropping, the dimensions will change. If you want to have the dimensions of the cropped images same, consider resizing them in to your desired dimensions using imresize. Read about imresize.
  1 件のコメント
Aude Rapet
Aude Rapet 2017 年 2 月 2 日
Thanks KSSV for your answer.
All my pictures have the same dimensions, I am thinking know that maybe it is because a3 is uint16 and a1, a2 uint8
It used
a3 = im2uint8(a33);
and it seems that it is working now

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeExplore and Edit Images with Image Viewer App についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by