Page 1 of 1

Problem in makeing a Box

Posted: Wed Mar 01, 2017 12:53 pm
by hamed
Hi all

I read a tutorial about Implementing a signal processing box in OpenVibe
here http://openvibe.inria.fr/tutorial-1-imp ... ssing-box/
I done all step by step but i can't see my box in opevibe main page.
Do you think what's wrong

Re: Problem in makeing a Box

Posted: Wed Mar 01, 2017 2:36 pm
by jtlindgren
Hi Hamed,

when you launch Designer, do you see +1 plugin added from the .dll you're compiling your component into? The OV 1.3.0 says out of the box,

Code: Select all

[  INF  ] Added 15 plugin object descriptor(s) from [C:/Program Files (x86)/openvibe//bin/openvibe-plugins-contrib-signal-processing.dll]
you should see 16 (and the path *should* be different as you're building yourself). If not, either your plugin is not compiled into the .dll or Designer is not loading the correct dll.

- Does your box have a unique name? (try writing part of it in the search slot in designer, top right)
- Does your box have a unique 64 bit identifier? no two box should have the same id.

Both of these are defined in the .h file of the box.

Cheels,
Jussi

Re: Problem in makeing a Box

Posted: Thu Mar 02, 2017 12:18 pm
by hamed
Dear jtlindgren
Thanks a lot for your reply
Do you think i include and declare in right line ?
If you made a Box in Openvibe could you please send a screenshot from your ovp_main.cpp file

Re: Problem in makeing a Box

Posted: Thu Mar 02, 2017 12:19 pm
by hamed
and

Re: Problem in makeing a Box

Posted: Mon Apr 10, 2017 7:58 am
by jtlindgren
Oops, didn't notice the message earlier. Basically you'll see many such ovp_main.cpp / .h files amidst the openvibe source code, every .dll is provided one, so there should be plenty of examples.

Best,
Jussi