VLFeat.org

API docs

  • Home
    • Download and Install
    • API docs
    • Matlab docs
    • About VLFeat
  • Tutorials
    • SIFT
    • MSER
    • IKM
    • HIKM
    • AIB
    • Utils
  • Main Page
  • Related Pages
  • Data Structures
  • Files
  • Examples

imop.h

Go to the documentation of this file.
00001 
00006 /* AUTORIGHTS
00007 Copyright 2007 (c) Andrea Vedaldi and Brian Fulkerson
00008 
00009 This file is part of VLFeat, available in the terms of the GNU
00010 General Public License version 2.
00011 */
00012 
00013 #ifndef VL_IMOP
00014 #define VL_IMOP
00015 
00016 #include "generic.h"
00017 
00021 #define VL_CONV_ZERO 0 
00022 #define VL_CONV_CIRC 1 
00023 #define VL_CONV_CONT 2 
00024 /* @} */
00025 
00029 VL_EXPORT
00030 void vl_convtransp_f(float       *dst,
00031                      float const *src, 
00032                      float const *filt,
00033                      int width, int height, int filt_width,
00034                      int mode) ;
00035 
00036 VL_EXPORT
00037 void vl_convtransp_d(double       *dst,
00038                      double const *src, 
00039                      double const *filt,
00040                      int width, int height, int filt_width,
00041                      int mode) ;
00042 /* @} */
00043 
00044 
00048 VL_EXPORT
00049 void vl_imsmooth_f(float       *dst, 
00050                    float       *temp,
00051                    float const *src,
00052                    int width, int height, double sigma) ;
00053 
00054 VL_EXPORT
00055 void vl_imsmooth_d(double       *dst, 
00056                    double       *temp,
00057                    double const *src,
00058                    int width, int height, double sigma) ;
00061 /* VL_IMOP */
00062 #endif 
Copyright © 2008 Andrea Vedaldi and Brian Fulkerson