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.
42 lines
913 B
C
42 lines
913 B
C
/************************************************************
|
|
|
|
cvconvexitydefect.h -
|
|
|
|
$Author: lsxi $
|
|
|
|
Copyright (C) 2007 Masakazu Yonekura
|
|
|
|
************************************************************/
|
|
#ifndef RUBY_OPENCV_CVCONVEXITYDEFECT_H
|
|
#define RUBY_OPENCV_CVCONVEXITYDEFECT_H
|
|
|
|
#include "opencv.h"
|
|
|
|
#define __NAMESPACE_BEGIN_CVCONVEXITYDEFECT namespace cCvConvexityDefect{
|
|
#define __NAMESPACE_END_CVCONVEXITYDEFECT }
|
|
|
|
__NAMESPACE_BEGIN_OPENCV
|
|
__NAMESPACE_BEGIN_CVCONVEXITYDEFECT
|
|
|
|
VALUE rb_class();
|
|
|
|
void define_ruby_class();
|
|
|
|
VALUE rb_start(VALUE self);
|
|
VALUE rb_end(VALUE self);
|
|
VALUE rb_depth_point(VALUE self);
|
|
VALUE rb_depth(VALUE self);
|
|
|
|
__NAMESPACE_END_CVCONVEXITYDEFECT
|
|
|
|
inline CvConvexityDefect*
|
|
CVCONVEXITYDEFECT(VALUE object)
|
|
{
|
|
CvConvexityDefect *ptr;
|
|
Data_Get_Struct(object, CvConvexityDefect, ptr);
|
|
return ptr;
|
|
}
|
|
|
|
__NAMESPACE_END_OPENCV
|
|
|
|
#endif // RUBY_OPENCV_CVCONVEXITYDEFECT_H
|