How can I get 10 times sequentially to an image?

3 次查看(过去 30 天)
I have T (transformation) and inverse T the original image.
  1 个评论
Vidya Viswanathan
Hi Thales,
Could you please elaborate on your question? I am not sure I understand you exact workflow and the query. Additionally, it would be helpful if you could post a sample code.
Regards,
Vidya

请先登录,再进行评论。

回答(1 个)

Walter Roberson
Walter Roberson 2016-4-1
If T is a transformation matrix and invT is its inverse and you want the transformation to work on matrix M then,
Mtran = T^10 * M;
Mrestore = invT^10 * Mtran;
Note those are ^ not .^ operations. Using ^ with a transformation matrix is one of the few times that you should use ^ with a matrix.
The transformation matrix would have to be square of course.

Community Treasure Hunt

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

Start Hunting!

Translated by