You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey! Thanks for taking an interest in the library!
I'd be interested in getting your feedback. I am working on a new version that is ~3x faster across the board for almost every algorithm and uses a fraction of the memory.
Check it out. If you use the technique in there it should be faster and more memory effectient.
You are converting a color Mat into a grayscale Mat, then moving that data into a vector, and then creating a reference to that vector's memory. In the example above, you can convert the image to grayscale on load, and reference that grayscale data directly without any other memory copying.
Hope that helps! I am new to OpenCV and your repo really helped get me started so I wanted to give back to it. Thanks again!
The text was updated successfully, but these errors were encountered:
Hey! Thanks for taking an interest in the library!
I'd be interested in getting your feedback. I am working on a new version that is ~3x faster across the board for almost every algorithm and uses a fraction of the memory.
I am also updating the demos to include an OpenCV example:
https://github.com/brandonmpetty/Doxa/blob/V3/Demo/Cpp/main.cpp
Check it out. If you use the technique in there it should be faster and more memory effectient.
You are converting a color Mat into a grayscale Mat, then moving that data into a vector, and then creating a reference to that vector's memory. In the example above, you can convert the image to grayscale on load, and reference that grayscale data directly without any other memory copying.
Hope that helps! I am new to OpenCV and your repo really helped get me started so I wanted to give back to it. Thanks again!
The text was updated successfully, but these errors were encountered: