Account Options

  1. Sign in
The old Google Groups will be going away soon.
Switch to the new Google Groups.
Google Groups Home
« Groups Home
Audiovisual Information on Clicking .DAE model
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  13 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
jinesh patel  
View profile  
 More options Jan 10, 3:07 am
From: jinesh patel <caprikor...@gmail.com>
Date: Tue, 10 Jan 2012 00:07:11 -0800 (PST)
Local: Tues, Jan 10 2012 3:07 am
Subject: Audiovisual Information on Clicking .DAE model
Hi guys,

I am a newbie with FLAR and have a project wherein i need to display
the college campus on detecting its printed marker.
And on clicking a particular building, i need to display audiovisual
information(eg. Dept. details, Dean's Message,etc).

I have installed and experimented with FLAR using the process shown
here-> http://www.youtube.com/watch?v=jU6PcBS1pWw

I really need help with this project.
Thanks.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Daniel Ferenc Szak  
View profile  
 More options Jan 10, 3:17 am
From: Daniel Ferenc Szak <daniels...@gmail.com>
Date: Tue, 10 Jan 2012 09:17:36 +0100
Local: Tues, Jan 10 2012 3:17 am
Subject: Re: [FLARToolKit-userz:5062] Audiovisual Information on Clicking .DAE model

Good day,

do You have any question in particular?
On Jan 10, 2012 9:07 AM, "jinesh patel" <caprikor...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
jinesh patel  
View profile  
 More options Jan 10, 3:22 am
From: jinesh patel <caprikor...@gmail.com>
Date: Tue, 10 Jan 2012 00:22:55 -0800 (PST)
Local: Tues, Jan 10 2012 3:22 am
Subject: Re: Audiovisual Information on Clicking .DAE model
Yes, how to go about starting with this project.
As of now I have been successful displaying a model of just one
building made using sketch-up,and that too a greyscale model, not
color.
I wanted to know how to display information by clicking that model.

Thank you

On Jan 10, 1:17 pm, Daniel Ferenc Szak <daniels...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Daniel Ferenc Szak  
View profile  
 More options Jan 10, 3:26 am
From: Daniel Ferenc Szak <daniels...@gmail.com>
Date: Tue, 10 Jan 2012 09:26:30 +0100
Local: Tues, Jan 10 2012 3:26 am
Subject: Re: [FLARToolKit-userz:5064] Re: Audiovisual Information on Clicking .DAE model

Are You a newbee to Flash/as3 as well?

If so, maybe somebody can help You with a complete sample proyect (there
are some people with a lot of initiative in this mailing list)!

If not, please be more specific.

happy coding.
On Jan 10, 2012 9:22 AM, "jinesh patel" <caprikor...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
jinesh patel  
View profile  
 More options Jan 10, 3:41 am
From: jinesh patel <caprikor...@gmail.com>
Date: Tue, 10 Jan 2012 00:41:05 -0800 (PST)
Local: Tues, Jan 10 2012 3:41 am
Subject: Re: Audiovisual Information on Clicking .DAE model
Yes, I am a newbie to Flash.
Being specific, do the FLARToolkit have function which allows onClick
events?

On Jan 10, 1:26 pm, Daniel Ferenc Szak <daniels...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Daniel Ferenc Szak  
View profile  
 More options Jan 10, 3:55 am
From: Daniel Ferenc Szak <daniels...@gmail.com>
Date: Tue, 10 Jan 2012 09:55:43 +0100
Local: Tues, Jan 10 2012 3:55 am
Subject: Re: [FLARToolKit-userz:5066] Re: Audiovisual Information on Clicking .DAE model

No, it is not what flartoolkit is for. It's only job is to get a video feed
from the webcam and parse it for possible markers and if found any,
calculate the transformation vector matrix out of it.
This matrix is what You 'feed' into the 3d renderer library, doing ALL the
drawing - hence You have to interact with that library/engine for mouse
events on its objects.

Hope this make sense.
happy coding,
daniel
On Jan 10, 2012 9:41 AM, "jinesh patel" <caprikor...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Thangaraj  
View profile  
 More options Jan 10, 6:28 am
From: Thangaraj <thangaraj.thangar...@gmail.com>
Date: Tue, 10 Jan 2012 16:58:58 +0530
Local: Tues, Jan 10 2012 6:28 am
Subject: Re: [FLARToolKit-userz:5067] Re: Audiovisual Information on Clicking .DAE model

Hi Jinesh,

You know to load the 3d models.... check the below code for making 3d
models interactivity

dae1 = new DAE();
dae1.load(daeFile);
dae1.scale = 165;
dae1.addEventListener(Event.COMPLETE, daeLoadComplete);

}

private function daeLoadComplete(e:Event):void {
stage.addEventListener(MouseEvent.MOUSE_DOWN, Pressed);

}

private function Pressed (e:MouseEvent):void {
// your code  here

}

On Tue, Jan 10, 2012 at 2:25 PM, Daniel Ferenc Szak <daniels...@gmail.com>wrote:

--
Thanks,
Thangaraj.S

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Vera Chan  
View profile  
 More options Jan 10, 6:59 am
From: Vera Chan <bubunc...@gmail.com>
Date: Tue, 10 Jan 2012 19:59:49 +0800
Local: Tues, Jan 10 2012 6:59 am
Subject: Re: [FLARToolKit-userz:5069] Re: Audiovisual Information on Clicking .DAE model

hallo.. Thangaraj
did you suitable using java script ? if you can, you can try using unity3D.
i ever make interaction button for augmented, but using other software and
for android mobile.
it just for changing material, the rest still in explore.
you can see this one as references http://youtu.be/gvVONFC079E
is it that what you mean?


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Thangaraj  
View profile  
 More options Jan 10, 7:10 am
From: Thangaraj <thangaraj.thangar...@gmail.com>
Date: Tue, 10 Jan 2012 17:40:06 +0530
Local: Tues, Jan 10 2012 7:10 am
Subject: Re: [FLARToolKit-userz:5070] Re: Audiovisual Information on Clicking .DAE model

Vera Chan

Thank you, Its not for me...

On Tue, Jan 10, 2012 at 5:29 PM, Vera Chan <bubunc...@gmail.com> wrote:
> hallo.. Thangaraj
> did you suitable using java script ? if you can, you can try using unity3D.
> i ever make interaction button for augmented, but using other software and
> for android mobile.
> it just for changing material, the rest still in explore.
> you can see this one as references http://youtu.be/gvVONFC079E
> is it that what you mean?

--
Thanks,
Thangaraj.S

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Vera Chan  
View profile  
 More options Jan 10, 7:25 am
From: Vera Chan <bubunc...@gmail.com>
Date: Tue, 10 Jan 2012 20:25:11 +0800
Local: Tues, Jan 10 2012 7:25 am
Subject: Re: [FLARToolKit-userz:5071] Re: Audiovisual Information on Clicking .DAE model

oh sorry :)


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Shachar Oz  
View profile  
 More options Jan 11, 4:23 am
From: Shachar Oz <shachar...@gmail.com>
Date: Wed, 11 Jan 2012 01:23:39 -0800 (PST)
Local: Wed, Jan 11 2012 4:23 am
Subject: Re: Audiovisual Information on Clicking .DAE model
Hi Jinesh,
please try an
Search for the free project in flartoolkit i published in these
forums. it would ease your learning curve.

On 10 ינואר, 14:25, Vera Chan <bubunc...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
jinesh patel  
View profile   Translate to Translated (View Original)
 More options Jan 11, 12:28 pm
From: jinesh patel <caprikor...@gmail.com>
Date: Wed, 11 Jan 2012 09:28:31 -0800 (PST)
Local: Wed, Jan 11 2012 12:28 pm
Subject: Re: Audiovisual Information on Clicking .DAE model
I will definitely try this code and let you know about the result
soon.
Hope this works.. Thank you.

On Jan 10, 4:28 pm, Thangaraj <thangaraj.thangar...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
jinesh patel  
View profile  
 More options Jan 11, 12:32 pm
From: jinesh patel <caprikor...@gmail.com>
Date: Wed, 11 Jan 2012 09:32:10 -0800 (PST)
Local: Wed, Jan 11 2012 12:32 pm
Subject: Re: Audiovisual Information on Clicking .DAE model
Sure, i will go through the forum at let you know!

FLARManager might make things simpler i suppose.
Thanks!

On Jan 11, 2:23 pm, Shachar Oz <shachar...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »