diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-10-14 13:22:47 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-10-14 13:22:47 +0100 |
| commit | 27fac0b4c6d42cb3b47bc1240d50ce11923fb66a (patch) | |
| tree | c59025745f30ef51157304c77f82ac56112ca316 /src/lib/image.h | |
| parent | 429e42c019889e90c9e376170b08614654231337 (diff) | |
Simplify use of Image hierarchy a bit.
Diffstat (limited to 'src/lib/image.h')
| -rw-r--r-- | src/lib/image.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/image.h b/src/lib/image.h index e06a82b7f..970750719 100644 --- a/src/lib/image.h +++ b/src/lib/image.h @@ -65,9 +65,9 @@ public: int components () const; int lines (int) const; - boost::shared_ptr<RGBFrameImage> scale_and_convert_to_rgb (Size, int, Scaler const *) const; + boost::shared_ptr<Image> scale_and_convert_to_rgb (Size, int, Scaler const *) const; boost::shared_ptr<Image> scale (Size, Scaler const *) const; - boost::shared_ptr<SimpleImage> post_process (std::string) const; + boost::shared_ptr<Image> post_process (std::string) const; void make_black (); |
