Reputation: 810
Is there something equivalent to matlab's imtransform in C++? I'm having a hard time wrapping my head around the code for imtransform in matlab, and I'm trying to use or rewrite it in C++.
edit: Not built into C++, but any libraries that you may know of which would do the same thing would be great
Upvotes: 2
Views: 943
Reputation: 10381
Check out OpenCV. I don't remember whether it has that exact transform, but it has a lot of related code to take a look at (it's open source).
Upvotes: 3
Reputation: 106530
No. Neither ISO C nor ISO C++ define any kind of image manipulation functions or formats (even including C1X and C++0x). (Your platform or operating system might though)
Upvotes: 0