フィルターのクリア

moving the center of an image from point to another?

7 ビュー (過去 30 日間)
mmm ssss
mmm ssss 2012 年 1 月 29 日
Hi All
i have this image
i want to moving it to the center of the whole figure , how this can be done in matlab i.e how can i raise this image to the center of the whole figure.
for example the first center point coordinates is 160 173 and the second center point coordinates is 160 121
how can i moving the center from first point to the second point?
i tried this code
y=imread('.......bmp');
[r c]=size(y);
for i=0:1:r
for j=1:1:c
y(i,j)=y(i,j+50);
end
end
imshow(y);
but the result was this error:
??? Attempted to access y(0,52); index must be a positive integer or logical.
any help? my regards

採用された回答

Image Analyst
Image Analyst 2012 年 1 月 29 日
Copy and paste this:
% Demo to shift a region in a binary image.
% By ImageAnalyst
clc; % Clear the command window.
close all; % Close all figures (except those of imtool.)
imtool close all; % Close all imtool figures.
clear; % Erase all existing variables.
workspace; % Make sure the workspace panel is showing.
fontSize = 14;
grayImage = peaks(200);
imshow(grayImage, []);
subplot(2,2,1);
imshow(grayImage, []);
title('Original Grayscale Image', 'FontSize', fontSize);
axis on;
% Enlarge figure to full screen.
set(gcf, 'units','normalized','outerposition',[0 0 1 1]); % Maximize figure.
set(gcf,'name','Demo by ImageAnalyst','numbertitle','off')
% imtool(z)
binaryImage = grayImage > 5;
subplot(2,2,2);
imshow(binaryImage, []);
title('Binary Image', 'FontSize', fontSize);
axis on;
% Find the centroid of that binary region
measurements = regionprops(binaryImage, 'Centroid')
[rows columns] = size(binaryImage);
rowsToShift = round(rows/2- measurements.Centroid(2))
columnsToShift = round(columns/2 - measurements.Centroid(1))
% Call circshift to move region to the center.
shiftedImage = circshift(binaryImage, [rowsToShift columnsToShift]);
subplot(2,2,3);
imshow(shiftedImage, []);
title('Shifted Binary Image', 'FontSize', fontSize);
axis on;

その他の回答 (2 件)

Image Analyst
Image Analyst 2012 年 1 月 29 日
Is zero a positive integer? No. Indexing starts at 1 in MATLAB. Anyway, that won't move it. That's more like a copy and paste rather than a cut and paste. Try circshift
out = circshift(in, [-50, 0]);
  8 件のコメント
mmm ssss
mmm ssss 2012 年 1 月 29 日
i try it and it worked on your image , now how can i make it work on my images , i have about 250 image.
please , give me simple and specific explanation
mmm ssss
mmm ssss 2012 年 1 月 29 日
also , why you use these
rowsToShift = round(rows/2- measurements.Centroid(2))
columnsToShift = round(columns/2 - measurements.Centroid(1))

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


mmm ssss
mmm ssss 2012 年 1 月 29 日
clear all
img=imread(.........);%reading image.
imshow(img);
level=graythresh(img);
x=im2bw(img,level);
figure,imshow(x);
measurements = regionprops(im2double(x), 'Centroid')
[rows columns] = size(x);
rowsToShift = round(rows/2- measurements.Centroid(2))
columnsToShift = round(columns/2 - measurements.Centroid(1))
shiftedImage = circshift(x, [rowsToShift columnsToShift]);
figure,
imshow(shiftedImage, []);
nnew=img.*cast(x,class(img));
medimage=medfilt2(nnew,[5 5]);%median Filtering image
figure,imshow(medimage);
z=adapthisteq(medimage);
figure,imshow(z);
H = fspecial('unsharp');
y=imfilter(z,H);
figure,imshow(y);
mIm=imfilter(y,fspecial('average',31),'replicate');
sIm=y-mIm;
bw=im2bw(sIm,0); % Convert to binary image
ALT_img=imcomplement(bw); % Complement binary image
figure,imshow(ALT_img);
%%%%%%morphological on binary images.
open_img =bwmorph(ALT_img,'open' ,Inf);
figure,imshow(open_img);title('open_img');
major_img =bwmorph(open_img,'majority' ,Inf);
figure,imshow(major_img);title('major_img');
ske_img = bwmorph(major_img,'skel',100);
figure,imshow(ske_img);
please only coy and paste the above code
  2 件のコメント
mmm ssss
mmm ssss 2012 年 1 月 29 日
*please only copy and paste the above code on this image to see the error by your eyes
http://www.2shared.com/photo/SAsZ1IeT/0002hv3.html
really i am confused , i dont know what can i do to manipulate this error
mmm ssss
mmm ssss 2012 年 1 月 30 日
Image Analyst , what are your opinion on my code

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

Community Treasure Hunt

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

Start Hunting!

Translated by