How to translate an image?

8 visualizzazioni (ultimi 30 giorni)
Billy
Billy il 4 Dic 2012
I want to know how it would be possible to use a loop to translate an image. I am not looking for full written out code, just something that allows my brain to wrap around so I can at least be given a starting point. Thanks.
  1 Commento
Jurgen
Jurgen il 4 Dic 2012
Why would you want do it with a loop, as opposed to a matrix transform?

Accedi per commentare.

Risposte (2)

Walter Roberson
Walter Roberson il 4 Dic 2012
Presuming you are not talking about optical character recognition and natural language processing:
set the XData and YData properties of the image() handle to move the image on the screen.
Or if you are working with matrices, then construct an output matrix of appropriate size and assign the input matrix (or a suitable portion of it) to the position within the output matrix.
OutMatrix = zeros(512, 512, 3);
OutMatrix(183:214, 7:51, :) = InMatrix;
tranlates InMatrix by 182 in one dimension and by 6 in the other dimension.
  6 Commenti
Billy
Billy il 4 Dic 2012
I tried running the sample, with my files and even though I did not get any error messages, the figure window only showed a white graph with axes that equal the size of my object. I also get some black boxes that flash near the bottom right of the figure window. I added the code to define obj and bg as imread('file.jpg') before running your code.
Billy
Billy il 4 Dic 2012
Here's my code that results in the figure window with the black boxes.
x=900
y=100
sceneFile = 'wind_turbines.jpg';
scene = fLoadImageFile(sceneFile);
objFile = 'airplanes.jpg';
obj = fLoadImageFile(objFile);
gs = 0;
im=fPlaceImageOnScene(scene,obj,gs,x,y);
image(im)
bgh=image(scene)
objh=image(obj)
for K = 1:5
newx = 1+floor(rand*size(bg,1));
newy = 1+floor(rand*size(bg,2));
maxx = newx + size(obj,1)-1;
maxy = newy + size(obj,2)-1;
set(objh, 'XData', [newx maxx], 'YData', [newy maxy]);
pause(1);
image(????)
end

Accedi per commentare.


Image Analyst
Image Analyst il 4 Dic 2012
Modificato: Image Analyst il 4 Dic 2012
Of course if you need your " brain to wrap around" then maybe you also need the image to wrap around and you could use circshift. Search Answers for circshift because I recently posted code to do translation with circshift().

Community Treasure Hunt

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

Start Hunting!

Translated by