darknet/src/im2col.h

16 lines
343 B
C
Raw Normal View History

2015-01-23 03:38:24 +03:00
#ifndef IM2COL_H
#define IM2COL_H
void im2col_cpu(float* data_im,
int channels, int height, int width,
int ksize, int stride, int pad, float* data_col);
#ifdef GPU
void im2col_ongpu(float *im, int offset,
int channels, int height, int width,
int ksize, int stride, int pad,float *data_col);
#endif
#endif