How to shift all the pixels position by a specific function and recreate the image of shifted pixel values?

2 views (last 30 days)
The image need to be used is in grayscale and how to create a block of 2x2 using the pixels. How can we implement the below process? Let k0,K1.. be some radom alphanumbers.

Answers (1)

Jonas
Jonas on 9 Jul 2021
for the shifting have a look into circshift() which allows you to shift all elements by specific amounts along x and y.
for the block processing there is the function blockproc()
  4 Comments
c1ph3r
c1ph3r on 9 Jul 2021
Edited: c1ph3r on 9 Jul 2021
K value is the ascii value of a character. circshift may not work because the x' and y' vary with the value of x and y. which changes randomly with position and its a fixed value. If you think circshift works for my requirement, can you please share that part of code so that it helps me understand it.
Jonas
Jonas on 10 Jul 2021
that was not clear to me, i thought the K were random, but constant values that the same for all pixels. what about pixel locations to which multiple pixels are assigned (are the values summed then?)? and what about pixels to which no pixel is transformed, are those 0?

Sign in to comment.

Products


Release

R2021a

Community Treasure Hunt

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

Start Hunting!