Show HN: Video++, a Real Time Video Processing Framework Using OpenMP4 and C++14
1–9 of 9 posts
Re: Show HN: Video++, a Real Time Video Processing Framework Using OpenMP4 and C++14
#2Re: Show HN: Video++, a Real Time Video Processing Framework Using OpenMP4 and C++14
#3Re: Show HN: Video++, a Real Time Video Processing Framework Using OpenMP4 and C++14
#4Re: Show HN: Video++, a Real Time Video Processing Framework Using OpenMP4 and C++14
#5I was looking for something like this for a project once. I settled with imagemagick and ffmpeg. Maybe this has what I want.
Re: Show HN: Video++, a Real Time Video Processing Framework Using OpenMP4 and C++14
#6I was looking for something like this for a project once. I settled with imagemagick and ffmpeg. Maybe this has what I want.
Re: Show HN: Video++, a Real Time Video Processing Framework Using OpenMP4 and C++14
#7Other than that... they feel kind of old. Video++ feels really new, I'm excited to try it out, but I will miss support for all those weird formats I love so much.
I don't see any video examples though - or is that all handled using opencv?
I've found opencv's png/video decoders to be extremely picky. Opencv doesn't open some files that other libraries will and because of that I've been extremely hesitant about using it as my main image IO.
Re: Show HN: Video++, a Real Time Video Processing Framework Using OpenMP4 and C++14
#8The thing that is amazing about imagemagick/graphicsmagick is the fact that they can open 100+ formats. That is not something to be taken for granted. Other than that... they feel kind of old. Video++ feels really new, I'm excited to try it out, but I will miss support for all those weird formats I love so much. I don't see any video examples though - or is that all handled using opencv? I've found opencv's png/video…
Re: Show HN: Video++, a Real Time Video Processing Framework Using OpenMP4 and C++14
#9The thing that is amazing about imagemagick/graphicsmagick is the fact that they can open 100+ formats. That is not something to be taken for granted. Other than that... they feel kind of old. Video++ feels really new, I'm excited to try it out, but I will miss support for all those weird formats I love so much. I don't see any video examples though - or is that all handled using opencv? I've found opencv's png/video…
The video++ project is still very young. It's goal is not to re-code all the image formats, but just providing nice abstraction to build fast image processing apps. You can easilly load whatever format you like and pass the buffer and its dimensions to vpp::image2d to process it. I am actually using opencv to open images or grab images from videos, and then process them with video++ via the opencv bridge.