| Author |
Comment/Response |
Kelvin
|
05/14/12 07:42am
Hi Experts,
I am a new learner of Mathematica. I am trying to add ImageReflect to the below codes but not sure what to do.
Anyone can enlighten me?
Thanks, K
Codes:
start = SetAlphaChannel[img];
Manipulate[
Nest[ImageCompose[#,
ImageRotate[
ImageResize[ImageReflect[#, Scaled[scale]], Left -> Right[ref],
rad Degree]]] &, Image &, start,
iters], {{rad, 15.0, "Rotation angle"}, -90.0, 90.0,
Appearance -> "Labeled"},
{{scale, 0.7, "Scale factor"}, 0.25, 1.0, Appearance -> "Labeled"},
{{ref, 0.7, "Reflection"}, 0.2, 1.0, Appearance -> "Labeled"},
{{iters, 5, "Iterations"}, 0, 10, 1, Appearance -> "Labeled"},
SaveDefinitions -> True]
URL: , |
|