class methods
This class extends others, you can call their methods on an instance of ofAbstractImage too:
An abstract class representing an image.
This empty class primarily exists to allow templated subclasses of different types to be stored as raw or shared pointers in collections such as std::vector.
Example: \code{.cpp}
std::vector imageProviders;
ofImage image; ofFloatImage floatImage; ofShortImage shortImage;
// ...
imageProviders.push_back(&image); imageProviders.push_back(&floatImage); imageProviders.push_back(&shortImage);
\endcode
Destroy the ofAbstractImage.
If you have any doubt about the usage of this module you can ask in the forum.
If you want to contribute better documentation or start documenting this section you can do so here
If you find anything wrong with this docs you can report any error by opening an issue
openFrameworks is developed and maintained by several voluntary contributors.
Donations help support the development of openFrameworks, improve the documentation and pay for third party services needed for the project.
If you are using openFrameworks commercially or would simply like to support openFrameworks development, please consider donating to the project.
If you have any doubt about the usage of this module you can ask in the forum.
If you want to contribute better documentation or start documenting this section you can do so here
If you find anything wrong with this docs you can report any error by opening an issue