mirror of
https://github.com/ruby-opencv/ruby-opencv
synced 2023-03-27 23:22:12 -04:00
removed Point3DSet
This commit is contained in:
parent
d1809bc13f
commit
2ac67221f9
6 changed files with 1 additions and 77 deletions
|
@ -106,8 +106,6 @@ ext/opencv/mouseevent.cpp
|
||||||
ext/opencv/mouseevent.h
|
ext/opencv/mouseevent.h
|
||||||
ext/opencv/opencv.cpp
|
ext/opencv/opencv.cpp
|
||||||
ext/opencv/opencv.h
|
ext/opencv/opencv.h
|
||||||
ext/opencv/point3dset.cpp
|
|
||||||
ext/opencv/point3dset.h
|
|
||||||
ext/opencv/pointset.cpp
|
ext/opencv/pointset.cpp
|
||||||
ext/opencv/pointset.h
|
ext/opencv/pointset.h
|
||||||
ext/opencv/trackbar.cpp
|
ext/opencv/trackbar.cpp
|
||||||
|
|
|
@ -605,7 +605,6 @@ extern "C" {
|
||||||
mOpenCV::cCvSeq::define_ruby_class();
|
mOpenCV::cCvSeq::define_ruby_class();
|
||||||
mOpenCV::mCurve::define_ruby_module();
|
mOpenCV::mCurve::define_ruby_module();
|
||||||
mOpenCV::mPointSet::define_ruby_module();
|
mOpenCV::mPointSet::define_ruby_module();
|
||||||
mOpenCV::mPoint3DSet::define_ruby_module();
|
|
||||||
mOpenCV::cCvSet::define_ruby_class();
|
mOpenCV::cCvSet::define_ruby_class();
|
||||||
mOpenCV::cCvChain::define_ruby_class();
|
mOpenCV::cCvChain::define_ruby_class();
|
||||||
mOpenCV::cCvContour::define_ruby_class();
|
mOpenCV::cCvContour::define_ruby_class();
|
||||||
|
|
|
@ -104,7 +104,6 @@ extern "C" {
|
||||||
#include "cvseq.h"
|
#include "cvseq.h"
|
||||||
#include "curve.h"
|
#include "curve.h"
|
||||||
#include "pointset.h"
|
#include "pointset.h"
|
||||||
#include "point3dset.h"
|
|
||||||
#include "cvset.h"
|
#include "cvset.h"
|
||||||
#include "cvchain.h"
|
#include "cvchain.h"
|
||||||
#include "cvcontour.h"
|
#include "cvcontour.h"
|
||||||
|
|
|
@ -1,41 +0,0 @@
|
||||||
/************************************************************
|
|
||||||
|
|
||||||
point3dset.cpp -
|
|
||||||
|
|
||||||
$Author: lsxi $
|
|
||||||
|
|
||||||
Copyright (C) 2008 Masakazu Yonekura
|
|
||||||
|
|
||||||
************************************************************/
|
|
||||||
#include"point3dset.h"
|
|
||||||
/*
|
|
||||||
* Document-class: OpenCV::Point3DSet
|
|
||||||
*/
|
|
||||||
|
|
||||||
__NAMESPACE_BEGIN_OPENCV
|
|
||||||
__NAMESPACE_BEGIN_POINT3D_SET
|
|
||||||
|
|
||||||
VALUE module;
|
|
||||||
|
|
||||||
VALUE
|
|
||||||
rb_module()
|
|
||||||
{
|
|
||||||
return module;
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
define_ruby_module()
|
|
||||||
{
|
|
||||||
if(module)
|
|
||||||
return;
|
|
||||||
/*
|
|
||||||
* opencv = rb_define_module("OpenCV");
|
|
||||||
*
|
|
||||||
* note: this comment is used by rdoc.
|
|
||||||
*/
|
|
||||||
VALUE opencv = rb_module_opencv();
|
|
||||||
module = rb_define_module_under(opencv, "Point3DSet");
|
|
||||||
}
|
|
||||||
|
|
||||||
__NAMESPACE_END_POINT3D_SET
|
|
||||||
__NAMESPACE_END_OPENCV
|
|
|
@ -1,31 +0,0 @@
|
||||||
/************************************************************
|
|
||||||
|
|
||||||
point3dset.h -
|
|
||||||
|
|
||||||
$Author: lsxi $
|
|
||||||
|
|
||||||
Copyright (C) 2008 Masakazu Yonekura
|
|
||||||
|
|
||||||
************************************************************/
|
|
||||||
#ifndef RUBY_OPENCV_POINT3DSET_H
|
|
||||||
#define RUBY_OPENCV_POINT3DSET_H
|
|
||||||
|
|
||||||
#define __NAMESPACE_BEGIN_POINT3D_SET namespace mPoint3DSet{
|
|
||||||
#define __NAMESPACE_END_POINT3D_SET }
|
|
||||||
|
|
||||||
#include"opencv.h"
|
|
||||||
|
|
||||||
__NAMESPACE_BEGIN_OPENCV
|
|
||||||
__NAMESPACE_BEGIN_POINT3D_SET
|
|
||||||
|
|
||||||
VALUE rb_module();
|
|
||||||
|
|
||||||
void define_ruby_module();
|
|
||||||
|
|
||||||
__NAMESPACE_END_POINT3D_SET
|
|
||||||
|
|
||||||
#define POINT3D_SET_P(object) rb_obj_is_kind_of(object, cCvSeq::rb_class()) && CV_IS_SEQ_POINT3D_SET(CVSEQ(object))
|
|
||||||
|
|
||||||
__NAMESPACE_END_OPENCV
|
|
||||||
|
|
||||||
#endif // RUBY_OPENCV_POINT3DSET_H
|
|
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue