1
0
Fork 0
mirror of https://github.com/ruby-opencv/ruby-opencv synced 2023-03-27 23:22:12 -04:00

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.
This commit is contained in:
Patrick Ting 2011-04-06 22:25:08 -07:00
parent 9f801045b8
commit 08a9655dc1
127 changed files with 826 additions and 540 deletions

34
ext/opencv/curve.h Normal file
View file

@ -0,0 +1,34 @@
/************************************************************
curve.h -
$Author: lsxi $
Copyright (C) 2005-2006 Masakazu Yonekura
************************************************************/
#ifndef RUBY_OPENCV_CVSEQ_CURVE_H
#define RUBY_OPENCV_CVSEQ_CURVE_H
#include"opencv.h"
#define __NAMESPACE_BEGIN_CURVE namespace mCurve{
#define __NAMESPACE_END_CURVE }
__NAMESPACE_BEGIN_OPENCV
__NAMESPACE_BEGIN_CURVE
VALUE rb_module();
void define_ruby_module();
VALUE rb_closed_q(VALUE self);
VALUE rb_convex_q(VALUE self);
VALUE rb_hole_q(VALUE self);
VALUE rb_simple_q(VALUE self);
VALUE rb_arc_length(int argc, VALUE *argv, VALUE self);
__NAMESPACE_END_CURVE
__NAMESPACE_END_OPENCV
#endif // RUBY_OPENCV_CVSEQ_CURVE_H