1
0
Fork 0
mirror of https://github.com/ruby-opencv/ruby-opencv synced 2023-03-27 23:22:12 -04:00
ruby-opencv/ext/opencv/cvset.h
Patrick Ting 08a9655dc1 Added gemspec to be able to bundle install from git.
Added IplImage#smoothness that returns :smooth, :messy, or :blank.
Rake compile will now compile the C extension code.
2011-04-14 12:26:41 -07:00

39 lines
709 B
C

/************************************************************
cvset.h -
$Author: lsxi $
Copyright (C) 2005-2006 Masakazu Yonekura
************************************************************/
#ifndef RUBY_OPENCV_CVSET_H
#define RUBY_OPENCV_CVSET_H
#include "opencv.h"
#define __NAMESPACE_BEGIN_CVSET namespace cCvSet{
#define __NAMESPACE_END_CVSET }
__NAMESPACE_BEGIN_OPENCV
__NAMESPACE_BEGIN_CVSET
VALUE rb_class();
void define_ruby_class();
VALUE rb_active_count(VALUE self);
VALUE rb_free_q(VALUE self);
__NAMESPACE_END_CVSET
inline CvSet*
CVSET(VALUE object)
{
CvSet *ptr;
Data_Get_Struct(object, CvSet, ptr);
return ptr;
}
__NAMESPACE_END_OPENCV
#endif // RUBY_OPENCV_CVSET_H