1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
|
/*
* image.h -- part of FractalNow
*
* Copyright (c) 2011 Marc Pegon <pe.marc@free.fr>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/**
* \file image.h
* \brief Header file related to images.
* \author Marc Pegon
*/
#ifndef __IMAGE_H__
#define __IMAGE_H__
#include "error.h"
#include "color.h"
#include "task.h"
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* \struct Image
* \brief Simple RGB image.
*
* A 2D array of colors representing an image.\n
* RGB8 images pixels are stored using uint32_t (the
* most significant 8 bits are not used (0xFF)).\n
* RGB16 images pixels are stored using uint64_t bytes (the
* most significant 16 bites are not used (0xFFFF)).
*/
/**
* \typedef Image
* \brief Convenient typedef for struct Image.
*/
typedef struct Image {
uint8_t *data;
/*!< Imaga data : 32-bits aligned.*/
int data_is_external;
/*!< 1 if data should not be freed by Image structure.*/
uint_fast32_t width;
/*!< Image width.*/
uint_fast32_t height;
/*!< Image height.*/
uint_fast8_t bytesPerComponent;
/*!< Colors bytes per component.*/
} Image;
/**
* \fn void CreateImage(Image *image, uint_fast32_t width, uint_fast32_t height, uint_fast8_t bytesPerComponent)
* \brief Create an image.
*
* Create a (black) image of given width and height.
*
* \param image Pointer to image structure to create.
* \param width Image width.
* \param height Image height.
* \param bytesPerComponent Colors bytes per component.
*/
void CreateImage(Image *image, uint_fast32_t width, uint_fast32_t height,
uint_fast8_t bytesPerComponent);
/**
* \fn void CreateImage2(Image *image, uint8_t *data, uint_fast32_t width, uint_fast32_t height, uint_fast8_t bytesPerComponent)
* \brief Create an image using an already allocated data array.
*
* Data format must be as described in image structure.\n
* Remark : in this case data will be *not* be free'd
* by FreeImage, and must stay alive as long as image is
* used.
*
* \param image Pointer to image structure to create.
* \param data Image data to use for image.
* \param width Image width.
* \param height Image height.
* \param bytesPerComponent Colors bytes per component.
*/
void CreateImage2(Image *image, uint8_t *data, uint_fast32_t width, uint_fast32_t height,
uint_fast8_t bytesPerComponent);
/**
* \fn Image CloneImage(const Image *image)
* \brief Copy image.
*
* \param image Pointer to image to be copied.
* \return Copy of image.
*/
Image CloneImage(const Image *image);
/**
* \fn uint8_t *ImageToBytesArray(const Image *image)
* \brief Convert image to bytes array.
*
* For RGB8 images : the returned bytes array is the sequence r1 g1 b1 r2 g2 b2, etc.,
* without padding (not 32-bits aligned).\n
* For RGB16 images : the returned bytes array is the sequence r1h r1l g1h g1l
* b1h b1l r2h r2b g2h g2l b2h b2l (h for high (MSB), and l for low (LSB)).
* without padding (not 32-bits aligned). \n
* Return NULL if image is empty (width and/or height = 0).
*
* Thus the array size (in bytes) is width*height*3*bytesPerComponent.\n
* Convenient to write directly a binary PPM file for example.
*
* \param image Image to convert to bytes array.
* \return Copy of image data.
*/
uint8_t *ImageToBytesArray(const Image *image);
/**
* \fn Color iGetPixelUnsafe(const Image *image, uint_fast32_t x, uint_fast32_t y)
* \brief Get some pixel of image.
*
* Get pixel (x,y) of image.\n
* Warning : the function does not check that (x,y)
* is actually a point inside image.
*
* \param image Image to get pixel from.
* \param x X pixel coordinate.
* \param y Y pixel coordinate.
* \return Color at position (x,y) of image.
*/
Color iGetPixelUnsafe(const Image *image, uint_fast32_t x, uint_fast32_t y);
/**
* \fn Color iGetPixel(const Image *image, int_fast64_t x, int_fast64_t y)
* \brief Get some pixel of image.
*
* Get pixel (x,y) of image.\n
* (x,y) can be a point outside image : pixels outside image
* are duplicates of the pixels at the sides of it.
*
* \param image Image to get pixel from.
* \param x X pixel coordinate.
* \param y Y pixel coordinate.
* \return Color at position (x,y) of image.
*/
Color iGetPixel(const Image *image, int_fast64_t x, int_fast64_t y);
/**
* \fn void PutPixelUnsafe(Image *image, uint_fast32_t x, uint_fast32_t y, Color color)
* \brief Put pixel at some particular position in image.
*
* Put pixel at position (x,y) of image.\n
* Warning : the function does not check that (x,y)
* is actually a point inside image.\n
* Color format must be the same as image format
* (undefined behaviour otherwise).
*
* \param image Image to put pixel to.
* \param x X pixel coordinate.
* \param y Y pixel coordinate.
* \param color Color to put at position (x,y) of image.
*/
void PutPixelUnsafe(Image *image, uint_fast32_t x, uint_fast32_t y, Color color);
/**
* \fn void ApplyGaussianBlur(Image *dst, const Image *src, double radius, Threads *threads)
* \brief Apply gaussian blur on image.
*
* This function does no work in place.\n
* Applies successively a horizontal and vertical gaussian filter
* to avoid quadratic computation cost.
*
* \param dst Pointer to already created destination image.
* \param src Pointer to source image (to apply blur on).
* \param radius Gaussian blur radius.
* \param threads Threads to be used for task.
*/
void ApplyGaussianBlur(Image *dst, const Image *src, double radius, Threads *threads);
/**
* \fn Task *CreateApplyGaussianBlurTask(Image *dst, Image *temp, const Image *src, double radius, uint_fast32_t nbThreads)
* \brief Create task applying a gaussian blur.
*
* Create task and return immediately.\n
* Number of threads is used to create a task adapted
* to a specific number of threads.\n
* When launching task, Threads structure should provide
* enough threads (at least number specified here).
*
* \param dst Pointer to already created destination image.
* \param temp Pointer to temporary image (needed to apply blur).
* \param src Pointer to source image (to apply blur on).
* \param radius Gaussian blur radius.
* \param nbThreads Number of threads that action will need to be launched.
* \return Corresponding newly-allocated task.
*/
Task *CreateApplyGaussianBlurTask(Image *dst, Image *temp, const Image *src, double radius,
uint_fast32_t nbThreads);
/**
* \fn void DownscaleImage(Image *dst, const Image *src, Threads *threads)
* \brief Downscale image.
*
* Destination image must already have been created, and its size
* (both with and height) must be greater than that of the source
* (exit with error otherwise).
*
* \param dst Pointer to already created destination image.
* \param src Pointer to source image (to be downscaled).
* \param threads Threads to be used for task.
*/
void DownscaleImage(Image *dst, const Image *src, Threads *threads);
/**
* \fn Task *CreateDownscaleImageTask(Image *dst, const Image *src, uint_fast32_t nbThreads)
* \brief Create task downscaling an image.
*
* Create task and return immediately.\n
* Number of threads is used to create a task adapted
* to a specific number of threads.\n
* When launching task, Threads structure should provide
* enough threads (at least number specified here).
*
* \param dst Pointer to already created destination image.
* \param src Pointer to source image (to be downscaled).
* \param nbThreads Number of threads that action will need to be launched.
* \return Corresponding (newly-allocated) task.
*/
Task *CreateDownscaleImageTask(Image *dst, const Image *src, uint_fast32_t nbThreads);
/**
* \fn void FreeImage(Image image)
* \brief Free image.
*
* \param image Image to free.
*/
void FreeImage(Image image);
#ifdef __cplusplus
}
#endif
#endif
|