mirror of
https://github.com/ruby-opencv/ruby-opencv
synced 2023-03-27 23:22:12 -04:00
Initial commit, with some minor changes from orig (date, exec bit, line endings, /usr/bin/env)
This commit is contained in:
commit
9196cb13aa
117 changed files with 16536 additions and 0 deletions
106
ext/cvline.cpp
Normal file
106
ext/cvline.cpp
Normal file
|
@ -0,0 +1,106 @@
|
|||
/************************************************************
|
||||
|
||||
cvline.cpp -
|
||||
|
||||
$Author: lsxi $
|
||||
|
||||
Copyright (C) 2005-2006 Masakazu Yonekura
|
||||
|
||||
************************************************************/
|
||||
#include "cvline.h"
|
||||
/*
|
||||
* Document-class: OpenCV::CvLine
|
||||
*
|
||||
*/
|
||||
__NAMESPACE_BEGIN_OPENCV
|
||||
__NAMESPACE_BEGIN_CVLINE
|
||||
|
||||
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, "CvLine", rb_cObject);
|
||||
rb_define_alloc_func(rb_klass, rb_allocate);
|
||||
rb_define_method(rb_klass, "rho", RUBY_METHOD_FUNC(rb_rho), 0);
|
||||
rb_define_method(rb_klass, "rho=", RUBY_METHOD_FUNC(rb_set_rho), 1);
|
||||
rb_define_method(rb_klass, "theta", RUBY_METHOD_FUNC(rb_theta), 0);
|
||||
rb_define_method(rb_klass, "theta=", RUBY_METHOD_FUNC(rb_set_theta), 1);
|
||||
}
|
||||
|
||||
VALUE
|
||||
rb_allocate(VALUE klass)
|
||||
{
|
||||
CvLine *ptr;
|
||||
return Data_Make_Struct(klass, CvLine, 0, -1, ptr);
|
||||
}
|
||||
|
||||
/*
|
||||
* Return parameter on rho.
|
||||
*/
|
||||
VALUE
|
||||
rb_rho(VALUE self)
|
||||
{
|
||||
return rb_float_new(CVLINE(self)->rho);
|
||||
}
|
||||
|
||||
/*
|
||||
* call-seq:
|
||||
* rho = val
|
||||
*
|
||||
* Set rho parameter, return self.
|
||||
*/
|
||||
VALUE
|
||||
rb_set_rho(VALUE self, VALUE rho)
|
||||
{
|
||||
CVLINE(self)->rho = NUM2DBL(rho);
|
||||
return self;
|
||||
}
|
||||
|
||||
/*
|
||||
* Return parameter on theta.
|
||||
*/
|
||||
VALUE
|
||||
rb_theta(VALUE self)
|
||||
{
|
||||
return rb_float_new(CVLINE(self)->theta);
|
||||
}
|
||||
|
||||
/*
|
||||
* call-seq:
|
||||
* y = val
|
||||
*
|
||||
* Set theta parameter, return self.
|
||||
*/
|
||||
VALUE
|
||||
rb_set_theta(VALUE self, VALUE theta)
|
||||
{
|
||||
CVLINE(self)->theta = NUM2DBL(theta);
|
||||
return self;
|
||||
}
|
||||
|
||||
VALUE
|
||||
new_object(CvLine line)
|
||||
{
|
||||
VALUE object = rb_allocate(rb_klass);
|
||||
*CVLINE(object) = line;
|
||||
return object;
|
||||
}
|
||||
|
||||
__NAMESPACE_END_CVLINE
|
||||
__NAMESPACE_END_OPENCV
|
Loading…
Add table
Add a link
Reference in a new issue