mirror of
https://github.com/opencv/opencv.git
synced 2025-01-21 08:37:57 +08:00
11 lines
299 B
C
11 lines
299 B
C
|
#ifndef RESIZEIMG
|
||
|
#define RESIZEIMG
|
||
|
|
||
|
#include "precomp.hpp"
|
||
|
#include "_types.h"
|
||
|
|
||
|
IplImage * resize_opencv (IplImage * img, float scale);
|
||
|
IplImage * resize_article_dp1(IplImage * img, float scale, const int k);
|
||
|
IplImage * resize_article_dp(IplImage * img, float scale, const int k);
|
||
|
|
||
|
#endif
|