2008-08-19 11:01:28 -04:00
|
|
|
/************************************************************
|
|
|
|
|
|
|
|
cvcircle32f.cpp -
|
|
|
|
|
|
|
|
$Author: lsxi $
|
|
|
|
|
|
|
|
Copyright (C) 2005-2006 Masakazu Yonekura
|
|
|
|
|
|
|
|
************************************************************/
|
|
|
|
#include "cvcircle32f.h"
|
|
|
|
/*
|
|
|
|
* Document-class: OpenCV::CvCircle32f
|
|
|
|
*
|
|
|
|
* Combination of center and radius.
|
|
|
|
*
|
|
|
|
* see CvMat#hough_circles
|
|
|
|
*/
|
|
|
|
__NAMESPACE_BEGIN_OPENCV
|
|
|
|
__NAMESPACE_BEGIN_CVCIRCLE32F
|
|
|
|
|
|
|
|
VALUE rb_klass;
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_class()
|
|
|
|
{
|
|
|
|
return rb_klass;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
define_ruby_class()
|
|
|
|
{
|
|
|
|
if (rb_klass)
|
|
|
|
return;
|
|
|
|
/*
|
|
|
|
* opencv = rb_define_module("OpenCV");
|
|
|
|
*
|
|
|
|
* note: this comment is used by rdoc.
|
|
|
|
*/
|
|
|
|
VALUE opencv = rb_module_opencv();
|
|
|
|
|
|
|
|
rb_klass = rb_define_class_under(opencv, "CvCircle32f", rb_cObject);
|
|
|
|
rb_define_alloc_func(rb_klass, rb_allocate);
|
|
|
|
rb_define_method(rb_klass, "center", RUBY_METHOD_FUNC(rb_center), 0);
|
|
|
|
rb_define_method(rb_klass, "radius", RUBY_METHOD_FUNC(rb_radius), 0);
|
|
|
|
|
|
|
|
//rb_define_method(rb_klass, "to_s", RUBY_METHOD_FUNC(rb_to_s), 0);
|
|
|
|
rb_define_method(rb_klass, "to_ary", RUBY_METHOD_FUNC(rb_to_ary), 0);
|
implemented to_a to CvCircle32f, CvPoint, CvPoint2D32f, CvPoint3D32f, CvScalar, CvSize, CvSize2D32f, CvTermCriteria, CvTwoPoints, CvVector, and added tests for them
2011-01-09 11:18:11 -05:00
|
|
|
rb_define_alias(rb_klass, "to_a", "to_ary");
|
2008-08-19 11:01:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_allocate(VALUE klass)
|
|
|
|
{
|
|
|
|
CvCircle32f *ptr;
|
|
|
|
return Data_Make_Struct(klass, CvCircle32f, 0, -1, ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return parameter on center.
|
|
|
|
*/
|
|
|
|
VALUE
|
|
|
|
rb_center(VALUE self)
|
|
|
|
{
|
|
|
|
return cCvPoint2D32f::new_object(CVCIRCLE32F(self)->center);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return parameter on radius.
|
|
|
|
*/
|
|
|
|
VALUE
|
|
|
|
rb_radius(VALUE self)
|
|
|
|
{
|
|
|
|
return rb_float_new(CVCIRCLE32F(self)->radius);
|
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_to_ary(VALUE self)
|
|
|
|
{
|
|
|
|
return rb_ary_new3(2, rb_center(self), rb_radius(self));
|
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
new_object(CvCircle32f circle32f)
|
|
|
|
{
|
|
|
|
VALUE object = rb_allocate(rb_klass);
|
|
|
|
*CVCIRCLE32F(object) = circle32f;
|
|
|
|
return object;
|
|
|
|
}
|
|
|
|
|
|
|
|
__NAMESPACE_END_CVCIRCLE32F
|
|
|
|
__NAMESPACE_END_OPENCV
|