如何使用mathematica实现对图片在图形空间的变换(线性与非线性)
mathematica吧
全部回复
仅看楼主
level 5
Dieinbed 楼主
像这样。
并实施下列变换。
2020年02月21日 04点02分 1
吧务
level 10
参考这个
ImageTransformation[Image@Graphics@{Blue, Rectangle[]}, RotationTransform[\[Pi]/4], PlotRange -> All]
2020年02月21日 05点02分 2
任意变换怎么做?
2020年02月21日 08点02分
level 5
Dieinbed 楼主
2020年02月21日 08点02分 3
level 5
Dieinbed 楼主
线性变换解决了,非线性还没解决。
2020年02月21日 09点02分 4
level 5
Dieinbed 楼主
ImageTransformation[Image@Graphics@{Blue, Rectangle[{0, 0}]},
TransformationFunction[F (x, y) = {X^2 - Y^2, X^2 + Y^2}],
PlotRange -> All]不行
2020年02月21日 09点02分 5
这是什么奇怪的语法……你还是先学一学再做事吧
2020年02月21日 10点02分
level 5
Dieinbed 楼主
、怎么改?
2020年02月21日 09点02分 6
ImageForwardTransformation[Image@Graphics@{Blue, Rectangle[{0, 0}]}, {
#1^2 - #
2^2,
#1^2 + #
2^2} & @@ # &, PlotRange -> All]
2020年02月21日 10点02分
level 5
Dieinbed 楼主
如何实现F(x,y)的逆变换
2020年02月21日 11点02分 8
1