Just to clarify here is a small example program that shows what I am trying to do:

<pre>from vtk import *
import time

video = vtkVideoSource()
video.SetFrameRate(30)
video.SetFrameSize(640, 400, 1)
video.Record()

mapper = vtkImageMapper()
mapper.SetInputConnection(video.GetOutputPort())
mapper.SetColorWindow(233)
mapper.SetColorLevel(138.5)

actor = vtkActor2D()
actor.GetProperty().SetOpacity(0.3)
actor.SetMapper(mapper)

cone = vtkConeSource()
cone.SetHeight( 3.0 )
cone.SetRadius( 1.0 )
cone.SetResolution( 10 )

coneMapper = vtkPolyDataMapper()
coneMapper.SetInputConnection( cone.GetOutputPort() )

coneActor = vtkActor()
coneActor.SetMapper( coneMapper )

ren = vtkRenderer()
ren.AddActor2D(actor)
ren.AddActor(coneActor)

renWind = vtkRenderWindow()
renWind.AddRenderer(ren)

for i in range (0, 2000):
    time.sleep(0.03)
    renWind.Render()</pre>

You can't see the cone behind the video source despite setting the opacity. Any ideas?

<blockquote class="quote light-black dark-border-color"><div class="quote light-border-color">
<div class="quote-author" style="font-weight: bold;">dream_noir wrote:</div>
<div class="quote-message">
I have a vtkActor2D object .that I'm putting a video source in to display in my app. I add this actor to a renderer with the AddActor2D method. Now I want this Actor2D to be transparent so I can see the scene behind it. Unfortunately, using the GetProperty()/SetProperty() methods to get or set the Property2D object and change the opacity there does nothing. The video is still opaque and completely blocks the scene behind it. What can I do? Is this a bug or am I going about it wrong?
</div>
</div></blockquote>


<br><hr align="left" width="300">
View this message in context: <a href="http://www.nabble.com/Opacity-of-vtkActor2D-tp18385577p18405991.html">Re: Opacity of vtkActor2D</a><br>
Sent from the <a href="http://www.nabble.com/VTK---Users-f14274.html">VTK - Users mailing list archive</a> at Nabble.com.<br>