comparison Core/Images/ImageProcessing.h @ 3502:c160eafc42a9

new functions in ImageProcessing toolbox: FlipX/Y(), Resize(), Halve()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 26 Aug 2019 10:23:51 +0200
parents ff945b809067
children 46cf170ba121
comparison
equal deleted inserted replaced
3501:27b53c61aa99 3502:c160eafc42a9
136 uint8_t alpha); 136 uint8_t alpha);
137 137
138 void FillPolygon(ImageAccessor& image, 138 void FillPolygon(ImageAccessor& image,
139 const std::vector<ImagePoint>& points, 139 const std::vector<ImagePoint>& points,
140 int64_t value); 140 int64_t value);
141
142 void Resize(ImageAccessor& target,
143 const ImageAccessor& source);
144
145 ImageAccessor* Halve(const ImageAccessor& source,
146 bool forceMinimalPitch);
147
148 void FlipX(ImageAccessor& image);
149
150 void FlipY(ImageAccessor& image);
141 } 151 }
142 } 152 }