Please consider the following, from the followings from

Can we generate "foveated Image" in Mathematica

Clear[acuity];

acuity[distance_, x_, y_, blindspotradius_] :=

 With[{\[Theta] = ArcTan[distance, Sqrt[x^2 + y^2]]},
      Clip[(Chop@Exp[-Abs[\[Theta]]/(15. Degree)] - .05)/.95, 
                     {0,1}] (1.-Boole[(x + 100.)^2 + y^2 <= blindspotradius^2])]

Plot3D[acuity[250., x, y, 9], {x, -256, 256}, {y, -256, 256}, 
PlotRange -> All, Axes -> False, PlotPoints -> 40, 
ExclusionsStyle -> Automatic, Boxed -> False, Mesh -> None]

enter image description here

How could I add the photo below on the X & Y plane. Then have the surface plotted transparent. Is it possible ? (image obtained with a solution in the question mentioned above).

enter image description here

link|improve this question

I saw that photo before ... it was taken by a famous photographer ... what was his name? – belisarius Oct 8 '11 at 4:53
1  
Henri Cartier Bresson, "Seville" 1933 :-) – 500 Oct 8 '11 at 11:17
Thanks! Poor Spaniards! – belisarius Oct 8 '11 at 15:39
1  
@belisarius : google.com/… . To me only Alex Webb matched his talent for composition adding color ! : google.com/… – 500 Oct 8 '11 at 15:47
feedback

1 Answer

up vote 9 down vote accepted
i = Import["http://i.stack.imgur.com/0EizO.png"];
p = {{0, 0}, {1, 0}, {1, 1}, {0, 1}};
Show@{
  Plot3D[
   acuity[250., x, y, 9], {x, -256, 256}, {y, -256, 256},
   PlotRange -> All, PlotPoints -> 40,ExclusionsStyle -> Automatic,Axes -> False,
   Boxed -> False,   Mesh -> None,    PlotStyle -> Directive[Opacity[0.5]]],
  Graphics3D[{Texture[i],
    Polygon[Join[#, {0}] & /@ (2 p - 1) 256,   VertexTextureCoordinates -> p]}
  ]}

enter image description here

Edit

Dealing with AspectRatio[], as requested in your comments:

p = {{0, 0}, {1, 0}, {1, 1}, {0, 1}};
r = First@#/Last@# &@Dimensions@ImageData@i;
a = 1.4;
Show@{Plot3D[
         acuity[250., a x, a y, 9], {x, -256  , 256 }, {y, -256 r , 256 r }, 
          PlotRange -> All, PlotPoints -> 40, ExclusionsStyle -> Automatic, 
          Axes -> False, Boxed -> False, Mesh -> None, 
          PlotStyle -> Directive[Opacity[0.5]], AspectRatio -> r], 
  Graphics3D[{Texture[i], 
             Polygon[{{-256 , -256 r, 0}, { 256 , -256 r , 0}, 
                      { 256 ,  256 r, 0}, {-256 ,  256 r, 0}}, 
             VertexTextureCoordinates -> p]}]}

enter image description here

link|improve this answer
It is ! thank You belisarius ! – 500 Oct 7 '11 at 23:33
thank you again. in you first version, is there anyway to plot over the picture ratio ? I can`t figure out the PlotRange in 3D Plot :-( – 500 Oct 8 '11 at 13:25
@500 I am not sure what do you mean by "plot over the picture ratio". Please rephrase. :) – belisarius Oct 8 '11 at 15:49
thank you. I can actually rephrase : What I want is the XY plane to have the ratio of the image, 3/2 for example. – 500 Oct 8 '11 at 15:55
@500 See edit, pls – belisarius Oct 8 '11 at 16:16
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.