Giter Site home page Giter Site logo

Comments (5)

cocoa-xu avatar cocoa-xu commented on May 30, 2024 1

Hi, thank you for trying this library! (Also, I checked the stream, that was a great one!)

I can confirm this was a bug when handling one or more enum type arguments that appeared in the function call, for example.

CV_WRAP static Ptr<Stitcher> create(Mode mode = Stitcher::PANORAMA);

d28b1d5 should fix this issue (and other similar cases) by

  • declaring their types as their underlying types in the generated code. std::underlying_type_t<Mode> mode = ...
  • static casting them back to the original type when using them. static_cast<Mode>(...)

from evision.

lawik avatar lawik commented on May 30, 2024 1

Sweet.

Use whatever you like from the stuff I did in the stream :)

Very curious to see if the stitching stuff works well.

Want to find a good example of improving photos as well. That camera is pretty crappy.

I don't know if haar cascades are still a relevant way for finding faces but I'd want some kind of face tracking. That I can actually do extra neat things with. ML isn't my space so now idea where the best bang for the buck is today.

from evision.

lawik avatar lawik commented on May 30, 2024

Sounds great!

I was amazed at what worked. Hope the stream did your work some level of justice.

Let me know if you have some examples you think I should try. I have a decent chunk of Nerves devices and media gear.

from evision.

cocoa-xu avatar cocoa-xu commented on May 30, 2024

Haha, to be honest, I was surprised that a number of functions just worked as we would expect!

I wonder if it is possible for me to use some of your code as examples here? Or, if you would like to create a PR please feel free to do so!

One more thing, in my test run, I observed that the return value was something like {:ok, {:ok, 0}, #Reference} , where the 0 was one of the values in the Status enum in C++.

a099f2a fixed the return value to what it was supposed to be (the correct result should be something like {:ok, 0, #Reference}).

from evision.

cocoa-xu avatar cocoa-xu commented on May 30, 2024

The API works as expected now, and here is an example. I'm gonna close this issue, but feel free to reopen it if there are any glitches. :)

from evision.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.