how can i make a change in my image ?

1 次查看(过去 30 天)
hi guys . i have an image (257*161) .
im = f(x,y)
how can i change my image equation to im = f(x/8 , y/12 )
could you please help me ?
thanks
  3 个评论
Stephen23
Stephen23 2014-9-1
编辑:Stephen23 2014-9-1
I downloaded your file matlab.mat , and using the MATLAB function image it created a lovely figure showing some torso cross-section, like from a CT scan.
What is the problem with the image? What exactly do you mean by "image equation"? What is the function f ? What are the variables x and y ? How should the image be different?
Do you wish to scale, resize or skew the image?
hamed
hamed 2014-9-1
编辑:hamed 2014-9-1
Hi i want to do scale and translation normalization
i read in a site :
p(x/a+x1,y/a+x2) to p(x,y),where p(x,y) is original image, x1 and x2 are the centroid of p(x,y),x1=m10/m00,x2=m01/m00,a=sqrt(β/m00),β is a predetermined value. In fact, this is doing scale and translation normalization
i computed m= a+x1 and n=a+x2 . now how can i compute P(x/m , y/n)??

请先登录,再进行评论。

回答(1 个)

Image Analyst
Image Analyst 2014-9-1
Do you possibly mean imresize()?
[rows, columns, numberOfColorChannels] = size(im);
% Get new x-width and y-height using formulas x/8 , y/12
% Remember, arrays are (rows, columns) = (y, x) NOT (x,y)!!!!!!!!!!
newRows = round(rows/12); % New y height
newColumns = round(columns / 8); % New x width
% Resize image
resizedImage = imresize(im, [newRows, newColumns]);
  5 个评论
hamed
hamed 2014-9-3
编辑:hamed 2014-9-3
thanks a lot for you answer and attention
i read some paper about Zernike moment and scale invariant problem. some of them solve it with this method :
image MUST first be normalized w.r.t. scale and translation
i.e. centroid of image is at image center, and image
has geometrical moment m00 = fixed number/scale
M00: sum of grey level (for greytone images)
or in another text i read
Moments η i j where i + j ≥ 2 can be constructed to be invariant to both translation and changes in scale by dividing the corresponding central moment by the properly scaled (00)th moment, using the following formula.
i want to write these equation in matlab and change my image scale with this equations but i don't know could you please help me ??
Image Analyst
Image Analyst 2014-9-3
hamed, see my attached demo where I compute the first 4 image moments, mean, standard deviation, skewness, and kurtosis.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Image Processing Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by