1
0
Fork 0
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:
Ryan Baumann 2008-08-19 11:01:28 -04:00
commit 9196cb13aa
117 changed files with 16536 additions and 0 deletions

49
ext/cvchaincode.cpp Normal file
View file

@ -0,0 +1,49 @@
/************************************************************
cvchaincode.cpp -
$Author: lsxi $
Copyright (C) 2007 Masakazu Yonekura
************************************************************/
#include "cvchaincode.h"
/*
* Document-class: OpenCV::CvChainCode
*
* Freeman chain code.
*/
__NAMESPACE_BEGIN_OPENCV
__NAMESPACE_BEGIN_CVCHAINCODE
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, "CvChainCode", rb_cObject);
}
VALUE
rb_to_i(VALUE self)
{
return CHR2FIX(CVCHAINCODE(self)->code);
}
__NAMESPACE_END_CVCHAINCODE
__NAMESPACE_END_OPENCV