Hello Paula,
On 03/07/2013 01:14 PM, Paula Agregán Reboredo wrote:
> I am Paula, I am student and I am working with Olena.
Great! We are looking for your feedback to improve Olena.
> I have a doubt: I
> want to use an array of vectors in Olena, which I'm able to define it,
> but not to insert the values and display them to see the results. Maybe
> I'm defining it wrong:
>
> fun::i2v::array< std::vector<int> >prueba;
>
> Is it well defined? How can I do to insert the values? How can I do to
> display them to see the results?
Yes, it is well defined.
fun::i2v::array has a slightly different interface compared to STL
containers.
You can have a look at this page:
http://www.lrde.epita.fr/dload/olena/2.0/doc/milena/devel-refman/d5/d79/a00…
I also wrote a small example included in the bottom of this message.
Thanks for your interest in Olena!
Regards,
Guillaume
-----------------
#include <vector>
#include <mln/fun/i2v/array.hh>
int main(int argc, char *argv[])
{
using namespace mln;
fun::i2v::array<std::vector<int> > fun_arr;
typedef std::vector<int> arr_t;
arr_t arr;
arr.push_back(2);
arr.push_back(3);
// Add data to fun::i2v::array
fun_arr.append(arr);
// Iterate over fun::i2v::array
for (int i = 0; i < fun_arr.size(); ++i)
// Iterate over std::vector
for (arr_t::const_iterator it = fun_arr(i).begin();
it != fun_arr(i).end(); ++it)
{
// Display data.
std::cout << *it << std::endl;
}
}
Hi,
I am Paula, I am student and I am working with Olena. I have a doubt: I
want to use an array of vectors in Olena, which I'm able to define it, but
not to insert the values and display them to see the results. Maybe I'm
defining it wrong:
fun::i2v::array< std::vector<int> >prueba;
Is it well defined? How can I do to insert the values? How can I do to
display them to see the results?
Thank you.
Best regards.
Paula.
Bonjour,
Je m'appelle Benjamin Crochard, je suis actuellement en 3e année à Epitech Paris. Dans le cadre de ces études, nous avons un projet à réaliser sur 2 ans. Le groupe dans lequel je suis, travaille sur le développement d'une cabine d'essayage virtuelle. Nous avons découvert que vous aviez, vous et vos collaborateurs, développé une plateforme de traitement d'images générique dans votre laboratoire de recherche et développement de l'Epita nommée Olena.
Serait-il possible de vous rencontrer afin de vous parler de notre projet et d'obtenir quelques conseils vis à vis de l'utilisation de votre plateforme.
Merci d'avance.
Je reste à votre disposition pour tout renseignement complémentaire,
Cordialement,
Benjamin Crochard,
Epitech_2015s
Hello,
On 03/03/2013 12:27 AM, Art W Rhyno wrote:
> I was curious about the status of the Olena project and whether it is
> still under active development. It is very impressive!
Thank you for your interest in our project!
Yes, Olena is still under active development!
Currently we are working on improving the build system, compatibility
with latest compilers, and the documentation. This will be included in
the next release.
Beside those aspects, we are actively working on text localization in
natural images, extending Olena's capabilities to videos and improving
our document image analysis tools.
Stay tuned to this mailing list, you will be notified on new releases.
Regards,
Guillaume
Hi,
I was curious about the status of the Olena project and whether it is
still under active development. It is very impressive!
art
---
Art Rhyno
Systems Librarian
University of Windsor