Home | History | Annotate | Download | only in include
      1 /**
      2  * @file     morpho_get_image_size.h
      3  * @brief    KvTCY
      4  * @version  1.0.0
      5  * @date     2008-07-01
      6  *
      7  * Copyright (C) 2006-2012 Morpho, Inc.
      8  */
      9 
     10 #ifndef MORPHO_GET_IMAGE_SIZE_H
     11 #define MORPHO_GET_IMAGE_SIZE_H
     12 
     13 #include "morpho_api.h"
     14 
     15 #ifdef __cplusplus
     16 extern "C" {
     17 #endif
     18 
     19 /**
     20  * tH[}bgAi[KvTCY.
     21  *
     22  * @param width       
     23  * @param height      
     24  * @param p_format    tH[}bg
     25  * @return            KvTCY
     26  */
     27 #define morpho_getImageSize mor_noise_reduction_IF_getImageSize
     28 
     29 MORPHO_API(int)
     30 morpho_getImageSize(int width, int height, const char *p_format);
     31 
     32 /**
     33  * Yf[^TCY.
     34  *
     35  * @param width       
     36  * @param height      
     37  * @param p_format    tH[}bg
     38  * @return            Yf[^TCY
     39  */
     40 #define morpho_getImageSizeY mor_noise_reduction_IF_getImageSizeY
     41 
     42 MORPHO_API(int)
     43 morpho_getImageSizeY(int width, int height, const char *p_format);
     44 
     45 /**
     46  * Uf[^TCY.
     47  *
     48  * @param width       
     49  * @param height      
     50  * @param p_format    tH[}bg
     51  * @return            Uf[^TCY
     52  */
     53 #define morpho_getImageSizeU mor_noise_reduction_IF_getImageSizeU
     54 
     55 MORPHO_API(int)
     56 morpho_getImageSizeU(int width, int height, const char *p_format);
     57 
     58 /**
     59  * Vf[^TCY.
     60  *
     61  * @param width       
     62  * @param height      
     63  * @param p_format    tH[}bg
     64  * @return            Vf[^TCY
     65  */
     66 #define morpho_getImageSizeV mor_noise_reduction_IF_getImageSizeV
     67 
     68 MORPHO_API(int)
     69 morpho_getImageSizeV(int width, int height, const char *p_format);
     70 
     71 /**
     72  * UVf[^TCY.
     73  *
     74  * @param width       
     75  * @param height      
     76  * @param p_format    tH[}bg
     77  * @return            UVf[^TCY
     78  */
     79 #define morpho_getImageSizeUV mor_noise_reduction_IF_getImageSizeUV
     80 
     81 MORPHO_API(int)
     82 morpho_getImageSizeUV(int width, int height, const char *p_format);
     83 
     84 
     85 #ifdef __cplusplus
     86 } /* extern "C" { */
     87 #endif
     88 
     89 #endif /* MORPHO_GET_IMAGE_SIZE_H */
     90