Combining an image with a SectorChart graphic.
- To: mathgroup at smc.vnet.net
- Subject: [mg132363] Combining an image with a SectorChart graphic.
- From: Guillermo Sanchez <guillermo.sanchez at hotmail.com>
- Date: Sat, 22 Feb 2014 03:04:33 -0500 (EST)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- Delivered-to: l-mathgroup@wolfram.com
- Delivered-to: mathgroup-outx@smc.vnet.net
- Delivered-to: mathgroup-newsendx@smc.vnet.net
Hi friends
I would combining an image (in my real problem it is a google map image) with a SectorChart graphic.
Below it is shown the method that I have used. Could anyone suggest a better method?
img1 = ExampleData[{"TestImage", "Lena"}];
img2 = Export["imgsector.jpg",
SectorChart[RandomReal[{1, 4}, {10, 2}], PolarAxes -> Automatic,
PolarGridLines -> Automatic, PolarTicks -> {"Direction", Automatic}]]
img3 = Import["imgsector.jpg"]
ImageMultiply[img1, img3]
Thanks
Guillermo