mirror of
https://github.com/ruby-opencv/ruby-opencv
synced 2023-03-27 23:22:12 -04:00
08a9655dc1
Added IplImage#smoothness that returns :smooth, :messy, or :blank. Rake compile will now compile the C extension code.
51 lines
998 B
C
51 lines
998 B
C
/************************************************************
|
|
|
|
cvtwopoints.h -
|
|
|
|
$Author: lsxi $
|
|
|
|
Copyright (C) 2005-2006 Masakazu Yonekura
|
|
|
|
************************************************************/
|
|
#ifndef RUBY_OPENCV_CVTWOPOINTS_H
|
|
#define RUBY_OPENCV_CVTWOPOINTS_H
|
|
|
|
#include "opencv.h"
|
|
|
|
#define __NAMESPACE_BEGIN_CVTWOPOINTS namespace cCvTwoPoints{
|
|
#define __NAMESPACE_END_CVTWOPOINTS }
|
|
|
|
__NAMESPACE_BEGIN_OPENCV
|
|
|
|
typedef struct CvTwoPoints{
|
|
CvPoint p1;
|
|
CvPoint p2;
|
|
} CvTwoPoints;
|
|
|
|
__NAMESPACE_BEGIN_CVTWOPOINTS
|
|
|
|
VALUE rb_class();
|
|
|
|
void define_ruby_class();
|
|
|
|
VALUE rb_allocate(VALUE klass);
|
|
|
|
VALUE rb_point1(VALUE self);
|
|
VALUE rb_point2(VALUE self);
|
|
VALUE rb_aref(VALUE self, VALUE index);
|
|
VALUE rb_to_ary(VALUE self);
|
|
|
|
VALUE new_object(CvTwoPoints twopoints);
|
|
|
|
__NAMESPACE_END_CVTWOPOINTS
|
|
|
|
inline CvTwoPoints*
|
|
CVTWOPOINTS(VALUE object){
|
|
CvTwoPoints *ptr;
|
|
Data_Get_Struct(object, CvTwoPoints, ptr);
|
|
return ptr;
|
|
}
|
|
|
|
__NAMESPACE_END_OPENCV
|
|
|
|
#endif // RUBY_OPENCV_CVTWOPOINTS_H
|