yyy
yyy

Reputation: 425

Image processing on GPU

I have a prospect project for Image processing on GPU, I know some C&C++ but i never spend time on image processing and GPU programming.

Is it a hard project for a 3 months?

Upvotes: 0

Views: 903

Answers (4)

Agnius Vasiliauskas
Agnius Vasiliauskas

Reputation: 11267

Also you need to decide How you will interact with GPU - through GPGPU libs,- such as CUDA/OpenCL or just through Pixel Shaders,- such as GLSL/HLSL.

Upvotes: 0

Salman Ul Haq
Salman Ul Haq

Reputation: 241

To start with, what exactly is the functionality required? We have developed CUVI Lib (CUDA for Vision and Imaging) which is publicly available at: http://www.cuvilib.com

If it's something of interest for us, we would definitely love to team up depending upon the resources we have at that moment. Drop me an email at: [email protected]

Upvotes: 0

kenny
kenny

Reputation: 22334

There are some frameworks, but I haven't used them. Look at CUDA.

Upvotes: 0

Jerry Coffin
Jerry Coffin

Reputation: 490008

That depends on what image processing you need to do. Some image processing is sufficiently complex that doing it in 3 months is almost out of the question, regardless of how you do it. Other things are sufficiently simple that you can copy some code from the OpenGL Red Book (for only one example), compile it, and be on your way.

We'll hope you're dealing with something between those extremes, but you haven't said enough to really even guess.

Upvotes: 1

Related Questions