mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
290 B
10 lines
290 B
#ifndef _LSVM_RESIZEIMG_H_ |
|
#define _LSVM_RESIZEIMG_H_ |
|
|
|
#include "_lsvm_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
|
|
|