user836038
user836038

Reputation: 53

Bicubic image downscale

I want to scale down an image given as a 2 dimensional array using a bicubic filter. Can anyone give me an C++ code snippet to do this?

Upvotes: 2

Views: 1047

Answers (1)

INS
INS

Reputation: 10820

First you need to understand the theory behind it (not very difficult). There are a lot of examples, just use a code search engine.

For example here. Look also at the comments.

Upvotes: 3

Related Questions