source: trunk/packages/vizservers/nanovis/GradientFilter.h @ 2376

Last change on this file since 2376 was 2096, checked in by ldelgass, 13 years ago

Normalize line endings, set eol-style to native on *.cpp, *.h files

  • Property svn:eol-style set to native
File size: 417 bytes
Line 
1#ifndef _GRADIENT_FILTER_H
2#define _GRADIENT_FILTER_H
3
4typedef enum {DATRAW_UCHAR, DATRAW_FLOAT, DATRAW_USHORT} DataType;
5
6extern void computeGradients(float *gradients, void* volData, int *sizes, DataType dataType);
7extern void filterGradients(float *gradients, int *sizes);
8extern void quantizeGradients(float *gradientsIn, void *gradientsOut,
9                                           int *sizes, DataType dataType);
10
11#endif /*_GRADIENT_FILTER_H*/
Note: See TracBrowser for help on using the repository browser.