/normxcorr/trunk

To get this branch, use:
bzr branch http://suren.me/webbzr/normxcorr/trunk

« back to all changes in this revision

Viewing changes to dict_hw/src/dict_image.h

  • Committer: Suren A. Chilingaryan
  • Date: 2009-12-13 02:20:05 UTC
  • Revision ID: csa@dside.dyndns.org-20091213022005-m932to8hhihwuw5r
Support for TIFF images in C code and stand-alone console application

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _DICT_HW_IMAGE_H
 
2
#define _DICT_HW_IMAGE_H
 
3
 
 
4
#ifdef DICT_TIFF_SUPPORT
 
5
# include <tiffio.h>
 
6
#endif /* DICT_TIFF_SUPPORT */
 
7
 
 
8
#include "dict_hw.h"
 
9
 
 
10
enum DICTImageType {
 
11
    DICT_IMAGE_TIFF = 0
 
12
};
 
13
 
 
14
int dictImageFree(DICTContext ctx);
 
15
 
 
16
 
 
17
int dictReduceImage(DICTContext ps, unsigned char *image, int width, int height);
 
18
int dictImageFreeBuffer(DICTContext ctx, DICTImageType image_type, void *image_buf);
 
19
int dictImageLoadTemplateImage(DICTContext ctx, const char *filename);
 
20
int dictImageLoadImage(DICTContext ctx, const char *filename);
 
21
 
 
22
 
 
23
#endif /* _DICT_HW_IMAGE_H */