c++ - Image Warping. From one image to another -
i'm using word "warping" because word explain want do, i'm not sure suitable term...
what want achieve find operation modify image image.
i'll explain myself : have 2 images similar (the same scene, same moment not same point of view), want know how transform image1 image2, transformations have do. so, thinking :
if want transform i1
i2
:
convert i1 , i2 b&w pictures.
apply sobel filter.
create patches both images (little image part of big images). 15px*15px patches.
find differences between i1.patch(x,y) , i2.patch(x,y) , find transformation transform i1.patch(x,y) i2.patch(x,y).
for patches, apply transformation on coloured image.
do think it's idea that? know method better?
and if think it's idea, have idea point number 4 above? because have idea, think i'm little naive think it'll work: use 2 matrices , find path transform 1 least possible operations or use standard warping algorithm.
i'm use opencv3.0 on windows 7 computer.
thanks reading, , hope understandable.
have nice evening! :)
Comments
Post a Comment