Ask a Question related to Macromedia Director 3D, Design and Development.
-
NROM #1
Grab Image from camera to cast member
I create xtra that connect to web camera and grab image into unsigned char*
buffer.
How can I load this buffer into cast member?
I tried to work with NewMediaInfo function but it didn?t work.
Please help me.
Noam
NROM Guest
-
3D cast member access
hi all, i want to exchange 3d model data with a director app and a 3rd party application at runtime. because the data must go both ways and... -
How to let objects in a cast member be a child of agroup(or a model) in another cast member?
I want to add a model to the scene. I try this code: member('world').newgroup('gr2') member('world').group('gr2').addchild(member('r2').model(1)) ... -
3d cast member with transparent bg
Hello. I'm trying to implement a simple game like this: - When reached a frame, some new #shockwave3d cast members are created, and each of them... -
save an image cast member to hard disk ?
How can I save a cast member I generated with imaging lingo on the hard disk ? Thanks -
How to dynamically load new image to cast member from file..
I'm trying to load a new image from a file into an existing cast member during run-time and I'm sure not sure how to do this. Can you help? ... -
fideozonico #2
Re: Grab Image from camera to cast member
I'm using something like you need, with 3d, but i think is the same thing,
you need this script and the
"SharpExport Xtra"
[url]http://www.sharp-software.com/products/sharpexportinfo.htm[/url]
on MouseUp
x = new(#bitmap)
nHeight = sprite(3).height
nWidth = sprite(3).width
n = image(nWidth, nHeight, 24)
n = (member("modelo2").image).duplicate()
x.image = n
put n
xtraInst = new (xtra "SharpExport")
result = xtraInst.exportJPG(member(24,1), "c\filename.jpg", 85)
put result
end MouseUp
fideozonico Guest
-
NROM #3
Re: Grab Image from camera to cast member
I'm writing Xtra that grab image from camera and I want to push it into cast
member.
I try to use MoaDrMediaInfo object and NewMediaInfo functionto insert to image
object into director but with no success.
Noam
NROM Guest
-
Agustín María Rodríguez #4
Re: Grab Image from camera to cast member
NROM wrote:
Hhmm.. Why? There are a couple of ways of doing this within Lingo. The> I'm writing Xtra that grab image from camera and I want to push it into cast
> member.
most performance-wise is turning DTS off, finding the rect of the camera
you want and grabbing that rect (plus the offset of the eD sprite) with
copyPixels from the stage´s image. Then you set the member´s image to
that image you´ve just grabbed.
Tell me if I wasn´t clear enough. Good luck,
--
Agustín María Rodríguez | [email]agustin@OnWine.com.ar[/email] | [url]www.OnWine.com.ar[/url]
Agustín María Rodríguez Guest
-
NROM #5
Re: Grab Image from camera to cast member
I don't understand how can I do this.
I have the API of the camera (connect to fireware) and I know how to grab
image - VC++.
I'm getting the image from the camera in the xtra but I can't save it on the
cast member.
I don't familiar with you solution so if you have any sample or article it
will be wonderful.
10x
Noam
NROM Guest
-
Agustín María Rodríguez #6
Re: Grab Image from camera to cast member
NROM wrote:
ooohh!!! You mean a REAL camera... oops. As we´re on the 3d newsgroup I> I don't understand how can I do this.
> I have the API of the camera (connect to fireware) and I know how to grab
> image - VC++.
> I'm getting the image from the camera in the xtra but I can't save it on the
> cast member.
thought you meant a camera from a shockwave
3D member. I suggest you ask this in a mailing list about xtra
development. For example: [url]http://www.pm-studio.pl/xtraforum/[/url]
Good luck!
--
Agustín María Rodríguez | [email]agustin@OnWine.com.ar[/email] | [url]www.OnWine.com.ar[/url]
Agustín María Rodríguez Guest
-
Agustín María Rodríguez #7
Re: Grab Image from camera to cast member
<http://www.director3d.de/stories/2003/08/21/writingXtrasUsingTheMacromediaXdkAndVisualC60.html >
<http://www.director3d.de/stories/2003/07/18/quickstartForXtraProgramming.html>
More links...
--
Agustín María Rodríguez | [email]agustin@OnWine.com.ar[/email] | [url]www.OnWine.com.ar[/url]
Agustín María Rodríguez Guest



Reply With Quote

