ruby-opencv 0.0.9.pre → 0.0.9.pre2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 33cfd3a0cd131a4b59cb89d8d9f65ba91066fe2e
4
- data.tar.gz: 1036803c9deb609d417a1d10f3e59fad87dbc627
3
+ metadata.gz: 76b5c449b23681d57637a4aa297ec186beff22a1
4
+ data.tar.gz: ca8989e49637be04808b124c98c73e87148214fe
5
5
  SHA512:
6
- metadata.gz: 040e94477fd9d6e00314334b1889f10fda54ff78e541986003c5d71e48601aef8c596b11bef17d9b0cb24485b250e993cccb1d87cf364dda7c15121db9f15ef0
7
- data.tar.gz: c8b503a23b21c54f9b9723d4e721c1d12fb8cfbe5cc361db434d8ed168da714981922eefd2dce9526ad086b70a1d2c6181afc4f7e13ae0332254089ca5a3a48f
6
+ metadata.gz: c0c32717d6b1ea151f8a2d6c3f11cc76569b61170c787fd8803e1d009ed4b0734f86bc1867e74a63488b15652c995498e7963794fdcdadcf902335efa18d05ef
7
+ data.tar.gz: 2c02f63a2970da1dd51194189aafe828329e571691cf9b66759d48cc72ffe0c7f0d8af3af6e53655d7c384e01708bab6582c95322290b93b239b62b9a828fcc6
data/DEVELOPERS_NOTE.md CHANGED
@@ -14,12 +14,11 @@
14
14
  * [hoe](https://github.com/seattlerb/hoe)
15
15
  * [hoe-gemspec](https://github.com/flavorjones/hoe-gemspec)
16
16
  * [rake-compiler](https://github.com/luislavena/rake-compiler)
17
- * [gem-compile](https://github.com/frsyuki/gem-compile)
18
17
 
19
18
 
20
19
  ## Create ruby-opencv gem
21
20
  Run the following commands.
22
- When you use mingw32, use **MSYS console**, or when you use mswin32,
21
+ When you use mingw32, use **MSYS console**, or when you use mswin32,
23
22
  use [**Visual Studio Command Prompt**](http://msdn.microsoft.com/en-us/library/ms229859.aspx)
24
23
  instead of cmd.exe.
25
24
 
@@ -32,16 +31,34 @@ $ git ls-files > Manifest.txt
32
31
  $ rake gem:spec
33
32
  $ rake gem
34
33
  ```
35
- **ruby-opencv-x.y.z.gem** will be created in pkg/ directory.
34
+ **ruby-opencv-x.y.z.gem** will be created in **pkg** directory.
36
35
 
37
- To create pre-build binaries, run the following commands in Windows.
36
+ To create pre-build binaries, create a config file firstly:
38
37
 
38
+ ```yml
39
+ # config.yml
40
+ platform: mingw32
41
+ rubies:
42
+ - C:/ruby-1.9.3-p392-mingw32/bin/ruby.exe
43
+ - C:/ruby-2.0.0-p0-mingw32/bin/ruby.exe
44
+ extopts:
45
+ - --with-opencv-include=C:/opencv/build/include
46
+ - --with-opencv-lib=C:/opencv/build/x86/mingw/lib
39
47
  ```
40
- $ cd pkg
41
- $ gem compile ruby-opencv-*.gem
48
+
49
+ Entries are below:
50
+
51
+ - **platform**: Target platform (e.g. mingw32, mswin32)
52
+ - **rubies**: Array of target versions of ruby's paths (You can create fat gems if you specify multiple versions of ruby)
53
+ - **extopts**: Array of options to be passed to **extconf.rb**
54
+
55
+ Then, run the following command:
56
+
57
+ ```
58
+ $ rake gem:precompile CONFIG=config.yml
42
59
  ```
43
60
 
44
- **ruby-opencv-x.y.z-x86-mingw32.gem** will be created when you use mingw32, or
61
+ **ruby-opencv-x.y.z-mingw32.gem** will be created when you use mingw32, or
45
62
  **ruby-opencv-x.y.z-x86-mswin32.gem** when you use mswin32.
46
63
 
47
64
 
data/Gemfile CHANGED
@@ -4,6 +4,5 @@ group :development do
4
4
  gem "hoe"
5
5
  gem "hoe-gemspec"
6
6
  gem "rake-compiler"
7
- gem "gem-compile"
8
7
  end
9
8
 
data/Manifest.txt CHANGED
@@ -6,6 +6,7 @@ License.txt
6
6
  Manifest.txt
7
7
  README.md
8
8
  Rakefile
9
+ config.yml
9
10
  examples/alpha_blend.rb
10
11
  examples/box.png
11
12
  examples/box_in_scene.png
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  An OpenCV wrapper for Ruby.
4
4
 
5
5
  * Web site: <https://github.com/ruby-opencv/ruby-opencv>
6
- * Ruby 1.9.3, 2.0.0 and OpenCV 2.4.4 are supported.
6
+ * Ruby 1.9.3, 2.0.0 and OpenCV 2.4.5 are supported.
7
7
 
8
8
  ## Requirement
9
9
 
data/Rakefile CHANGED
@@ -1,8 +1,13 @@
1
1
  # -*- mode: ruby; coding: utf-8 -*-
2
2
  require 'rubygems'
3
- require './lib/opencv/psyched_yaml'
3
+ require "rubygems/ext"
4
+ require "rubygems/installer"
4
5
  require 'hoe'
5
6
  require 'rake/extensiontask'
7
+ require 'fileutils'
8
+ require './lib/opencv/psyched_yaml'
9
+
10
+ SO_FILE = 'opencv.so'
6
11
 
7
12
  Hoe.plugin :gemspec
8
13
 
@@ -16,14 +21,16 @@ hoespec = Hoe.spec 'ruby-opencv' do |s|
16
21
 
17
22
  s.readme_file = 'README.md'
18
23
  s.history_file = 'History.txt'
24
+
19
25
  s.spec_extras = { :extensions => ['ext/opencv/extconf.rb'] }
26
+
20
27
  s.test_globs = ['test/test_*.rb']
21
28
  s.urls = ['https://github.com/ruby-opencv/ruby-opencv/']
22
29
 
23
30
  s.extra_dev_deps << ['rake-compiler', '>= 0'] << ['hoe-gemspec']
24
31
 
25
32
  Rake::ExtensionTask.new('opencv', spec) do |ext|
26
- ext.lib_dir = File.join('lib', 'opencv')
33
+ ext.lib_dir = 'lib'
27
34
  end
28
35
  end
29
36
 
@@ -31,4 +38,53 @@ hoespec.spec.files.delete('.gemtest')
31
38
 
32
39
  Rake::Task[:test].prerequisites << :compile
33
40
 
41
+ desc 'Create a pre-compiled gem'
42
+ task 'gem:precompile' => ['gem'] do
43
+ tmp_dir = Dir.mktmpdir('tmp', '.')
44
+ gemfile = Dir.glob("pkg/*.gem")[0]
45
+ target_dir = File.join(tmp_dir, File.basename(gemfile, '.gem'))
46
+
47
+ installer = Gem::Installer.new(gemfile)
48
+ installer.unpack(target_dir)
49
+
50
+ gemspec = installer.spec
51
+ extension = gemspec.extensions[0]
52
+ gemspec.extensions.clear
53
+
54
+ config = ENV['CONFIG'] ? YAML.load_file(ENV['CONFIG']) : {}
55
+ rubies = config['rubies'] || [Gem.ruby]
56
+ args = config['extopts'] || []
57
+ gemspec.platform = config['platform'] || Gem::Platform::CURRENT
58
+
59
+ multi = rubies.size > 1
60
+ rubies.each { |ruby|
61
+ lib_dir = 'lib'
62
+ if multi
63
+ major, minor, _ = `#{ruby} -e "print RUBY_VERSION"`.chomp.split('.')
64
+ lib_dir = File.join(lib_dir, [major, minor].join('.'))
65
+ end
66
+
67
+ make_cmd = (`#{ruby} -e "print RUBY_PLATFORM"` =~ /mswin/) ? 'nmake' : 'make'
68
+ Dir.chdir(target_dir) {
69
+ cmd = [ruby, extension, *args].join(' ')
70
+ results = []
71
+ Gem::Ext::ExtConfBuilder.run(cmd, results)
72
+ Gem::Ext::ExtConfBuilder.make('', results)
73
+
74
+ FileUtils.mkdir_p lib_dir
75
+ FileUtils.mv SO_FILE, lib_dir
76
+ sh "#{make_cmd} clean"
77
+ }
78
+
79
+ gemspec.files << File.join(lib_dir, SO_FILE)
80
+ }
81
+
82
+ Dir.chdir(target_dir) {
83
+ gemfile = Gem::Package.build(gemspec)
84
+ FileUtils.mv gemfile, File.dirname(__FILE__)
85
+ }
86
+
87
+ FileUtils.rm_rf tmp_dir
88
+ end
89
+
34
90
  # vim: syntax=ruby
data/config.yml ADDED
@@ -0,0 +1,7 @@
1
+ platform: mingw32
2
+ rubies:
3
+ - C:/ruby-1.9.3-p392-mingw32/bin/ruby.exe
4
+ - C:/ruby-2.0.0-p0-mingw32/bin/ruby.exe
5
+ extopts:
6
+ - --with-opencv-include=C:/opencv/build/include
7
+ - --with-opencv-lib=C:/opencv/build/x86/mingw/lib
@@ -187,21 +187,25 @@ VALUE
187
187
  rb_retrieve(VALUE self)
188
188
  {
189
189
  VALUE image = Qnil;
190
+ IplImage *frame = NULL;
190
191
  try {
191
- IplImage *frame = cvRetrieveFrame(CVCAPTURE(self));
192
- if (!frame)
192
+ if (!(frame = cvRetrieveFrame(CVCAPTURE(self)))) {
193
193
  return Qnil;
194
- image = cIplImage::new_object(cvSize(frame->width, frame->height),
195
- CV_MAKETYPE(CV_8U, frame->nChannels));
196
- if (frame->origin == IPL_ORIGIN_TL)
194
+ }
195
+ image = cIplImage::new_object(frame->width, frame->height,
196
+ CV_MAKETYPE(IPL2CV_DEPTH(frame->depth), frame->nChannels));
197
+ if (frame->origin == IPL_ORIGIN_TL) {
197
198
  cvCopy(frame, CVARR(image));
198
- else
199
+ }
200
+ else {
199
201
  cvFlip(frame, CVARR(image));
202
+ }
200
203
  }
201
204
  catch (cv::Exception& e) {
202
205
  raise_cverror(e);
203
206
  }
204
207
  return image;
208
+
205
209
  }
206
210
 
207
211
  /*
@@ -214,16 +218,19 @@ VALUE
214
218
  rb_query(VALUE self)
215
219
  {
216
220
  VALUE image = Qnil;
221
+ IplImage *frame = NULL;
217
222
  try {
218
- IplImage *frame = cvQueryFrame(CVCAPTURE(self));
219
- if (!frame)
223
+ if (!(frame = cvQueryFrame(CVCAPTURE(self)))) {
220
224
  return Qnil;
221
- image = cIplImage::new_object(cvSize(frame->width, frame->height),
222
- CV_MAKETYPE(CV_8U, frame->nChannels));
223
- if (frame->origin == IPL_ORIGIN_TL)
225
+ }
226
+ image = cIplImage::new_object(frame->width, frame->height,
227
+ CV_MAKETYPE(IPL2CV_DEPTH(frame->depth), frame->nChannels));
228
+ if (frame->origin == IPL_ORIGIN_TL) {
224
229
  cvCopy(frame, CVARR(image));
225
- else
230
+ }
231
+ else {
226
232
  cvFlip(frame, CVARR(image));
233
+ }
227
234
  }
228
235
  catch (cv::Exception& e) {
229
236
  raise_cverror(e);
@@ -37,31 +37,28 @@ raise_compatible_typeerror(VALUE object, const char* expected_class_name)
37
37
 
38
38
  /*
39
39
  * Allocates a memory buffer
40
- * When memory allocation is failed, run GC and retry it
40
+ * see cv::fastMalloc()
41
41
  */
42
42
  void*
43
- rb_cvAlloc(size_t size)
43
+ rbFastMalloc(size_t size)
44
44
  {
45
- void* ptr = NULL;
46
- try {
47
- ptr = cvAlloc(size);
45
+ uchar* udata = (uchar*)xmalloc(size + sizeof(void*) + CV_MALLOC_ALIGN);
46
+ if(!udata) {
47
+ rb_raise(rb_eNoMemError, "Failed to allocate memory");
48
48
  }
49
- catch(cv::Exception& e) {
50
- if (e.code != CV_StsNoMem)
51
- rb_raise(rb_eRuntimeError, "%s", e.what());
49
+ uchar** adata = cv::alignPtr((uchar**)udata + 1, CV_MALLOC_ALIGN);
50
+ adata[-1] = udata;
51
+ return adata;
52
+ }
52
53
 
53
- rb_gc_start();
54
- try {
55
- ptr = cvAlloc(size);
56
- }
57
- catch (cv::Exception& e) {
58
- if (e.code == CV_StsNoMem)
59
- rb_raise(rb_eNoMemError, "%s", e.what());
60
- else
61
- rb_raise(rb_eRuntimeError, "%s", e.what());
62
- }
63
- }
64
- return ptr;
54
+ /*
55
+ * Allocates a memory buffer
56
+ * When memory allocation is failed, run GC and retry it
57
+ */
58
+ void*
59
+ rb_cvAlloc(size_t size)
60
+ {
61
+ return rbFastMalloc(size);
65
62
  }
66
63
 
67
64
  /*
@@ -69,28 +66,31 @@ rb_cvAlloc(size_t size)
69
66
  * When memory allocation is failed, run GC and retry it
70
67
  */
71
68
  CvMat*
72
- rb_cvCreateMat(int height, int width, int type)
69
+ rb_cvCreateMat(int rows, int cols, int type)
73
70
  {
74
- CvMat* ptr = NULL;
71
+ CvMat* mat = NULL;
75
72
  try {
76
- ptr = cvCreateMat(height, width, type);
73
+ mat = cvCreateMatHeader(rows, cols, type);
74
+ if (mat) {
75
+ // see OpenCV's cvCreateData()
76
+ size_t step = mat->step;
77
+ size_t total_size = step * mat->rows + sizeof(int) + CV_MALLOC_ALIGN;
78
+
79
+ mat->refcount = (int*)rbFastMalloc(total_size);
80
+ mat->data.ptr = (uchar*)cvAlignPtr(mat->refcount + 1, CV_MALLOC_ALIGN);
81
+ *mat->refcount = 1;
82
+ }
83
+ else {
84
+ rb_raise(rb_eRuntimeError, "Failed to create mat header");
85
+ }
77
86
  }
78
87
  catch(cv::Exception& e) {
79
- if (e.code != CV_StsNoMem)
80
- rb_raise(rb_eRuntimeError, "%s", e.what());
81
-
82
- rb_gc_start();
83
- try {
84
- ptr = cvCreateMat(height, width, type);
85
- }
86
- catch (cv::Exception& e) {
87
- if (e.code == CV_StsNoMem)
88
- rb_raise(rb_eNoMemError, "%s", e.what());
89
- else
90
- rb_raise(rb_eRuntimeError, "%s", e.what());
88
+ if (mat) {
89
+ cvReleaseMat(&mat);
91
90
  }
91
+ rb_raise(rb_eRuntimeError, "%s", e.what());
92
92
  }
93
- return ptr;
93
+ return mat;
94
94
  }
95
95
 
96
96
  /*
@@ -102,22 +102,20 @@ rb_cvCreateImage(CvSize size, int depth, int channels)
102
102
  {
103
103
  IplImage* ptr = NULL;
104
104
  try {
105
- ptr = cvCreateImage(size, depth, channels);
105
+ ptr = cvCreateImageHeader(size, depth, channels);
106
+ if (ptr) {
107
+ // see OpenCV's cvCreateData()
108
+ ptr->imageData = ptr->imageDataOrigin = (char*)rbFastMalloc((size_t)ptr->imageSize);
109
+ }
110
+ else {
111
+ rb_raise(rb_eRuntimeError, "Failed to create image header");
112
+ }
106
113
  }
107
114
  catch(cv::Exception& e) {
108
- if (e.code != CV_StsNoMem)
109
- rb_raise(rb_eRuntimeError, "%s", e.what());
110
-
111
- rb_gc_start();
112
- try {
113
- ptr = cvCreateImage(size, depth, channels);
114
- }
115
- catch (cv::Exception& e) {
116
- if (e.code == CV_StsNoMem)
117
- rb_raise(rb_eNoMemError, "%s", e.what());
118
- else
119
- rb_raise(rb_eRuntimeError, "%s", e.what());
115
+ if (ptr) {
116
+ cvReleaseImage(&ptr);
120
117
  }
118
+ rb_raise(rb_eRuntimeError, "%s", e.what());
121
119
  }
122
120
  return ptr;
123
121
  }
data/ext/opencv/cvutils.h CHANGED
@@ -11,6 +11,7 @@
11
11
  #include <ruby.h>
12
12
  #include "opencv2/core/core_c.h"
13
13
  #include "opencv2/core/core.hpp"
14
+ #include "opencv2/core/internal.hpp"
14
15
  #include "opencv2/imgproc/imgproc_c.h"
15
16
  #include "opencv2/imgproc/imgproc.hpp"
16
17
 
@@ -5,9 +5,9 @@ def cv_version_suffix(incdir)
5
5
  major, minor, subminor = nil, nil, nil
6
6
  open("#{incdir}/opencv2/core/version.hpp", 'r') { |f|
7
7
  f.read.lines.each { |line|
8
- major = $1.to_s if line =~ /\A#define\s+CV_MAJOR_VERSION\s+(\d+)\s*\Z/
9
- minor = $1.to_s if line =~ /\A#define\s+CV_MINOR_VERSION\s+(\d+)\s*\Z/
10
- subminor = $1.to_s if line =~ /\A#define\s+CV_SUBMINOR_VERSION\s+(\d+)\s*\Z/
8
+ major = $1.to_s if line =~ /\A#define\s+(?:CV_VERSION_EPOCH|CV_MAJOR_VERSION)\s+(\d+)\s*\Z/
9
+ minor = $1.to_s if line =~ /\A#define\s+(?:CV_VERSION_MAJOR|CV_MINOR_VERSION)\s+(\d+)\s*\Z/
10
+ subminor = $1.to_s if line =~ /\A#define\s+(?:CV_VERSION_MINOR|CV_SUBMINOR_VERSION)\s+(\d+)\s*\Z/
11
11
  }
12
12
  }
13
13
  major + minor + subminor
@@ -70,8 +70,10 @@ opencv_headers.each {|header|
70
70
  }
71
71
  have_header("stdarg.h")
72
72
 
73
- $warnflags.slice!('-Wdeclaration-after-statement')
74
- $warnflags.slice!('-Wimplicit-function-declaration')
73
+ if $warnflags
74
+ $warnflags.slice!('-Wdeclaration-after-statement')
75
+ $warnflags.slice!('-Wimplicit-function-declaration')
76
+ end
75
77
 
76
78
  # Quick fix for 1.8.7
77
79
  $CFLAGS << " -I#{File.dirname(__FILE__)}/ext/opencv"
data/lib/opencv.rb CHANGED
@@ -1,3 +1,12 @@
1
1
  require (File.dirname(__FILE__) + '/opencv/version')
2
- require 'opencv.so'
3
2
 
3
+ if RUBY_PLATFORM =~ /mingw|mswin/
4
+ major, minor, subminor = RUBY_VERSION.split('.')
5
+ begin
6
+ require "#{major}.#{minor}/opencv.so"
7
+ rescue LoadError
8
+ require 'opencv.so'
9
+ end
10
+ else
11
+ require 'opencv.so'
12
+ end
@@ -1,3 +1,3 @@
1
1
  module OpenCV
2
- VERSION = '0.0.9.pre'
2
+ VERSION = '0.0.9.pre2'
3
3
  end
data/ruby-opencv.gemspec CHANGED
@@ -2,16 +2,16 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "ruby-opencv"
5
- s.version = "0.0.9.pre.20130324195100"
5
+ s.version = "0.0.9.pre2.20130505044041"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["lsxi", "ser1zw", "pcting"]
9
- s.date = "2013-03-24"
9
+ s.date = "2013-05-04"
10
10
  s.description = "ruby-opencv is a wrapper of OpenCV for Ruby. It helps you to write computer vision programs (e.g. detecting faces from pictures) with Ruby."
11
11
  s.email = ["masakazu.yonekura@gmail.com", "azariahsawtikes@gmail.com", "pcting@gmail.com"]
12
12
  s.extensions = ["ext/opencv/extconf.rb"]
13
- s.extra_rdoc_files = ["History.txt", "License.txt", "Manifest.txt", "examples/matching_to_many_images/train/trainImages.txt"]
14
- s.files = [".gitignore", "DEVELOPERS_NOTE.md", "Gemfile", "History.txt", "License.txt", "Manifest.txt", "README.md", "Rakefile", "examples/alpha_blend.rb", "examples/box.png", "examples/box_in_scene.png", "examples/contours/bitmap-contours-with-labels.png", "examples/contours/bitmap-contours.png", "examples/contours/bounding-box-detect-canny.rb", "examples/contours/contour_retrieval_modes.rb", "examples/contours/rotated-boxes.jpg", "examples/convexhull.rb", "examples/face_detect.rb", "examples/find_obj.rb", "examples/houghcircle.rb", "examples/inpaint.png", "examples/inpaint.rb", "examples/lenna-rotated.jpg", "examples/lenna.jpg", "examples/match_kdtree.rb", "examples/matching_to_many_images.rb", "examples/matching_to_many_images/query.png", "examples/matching_to_many_images/train/1.png", "examples/matching_to_many_images/train/2.png", "examples/matching_to_many_images/train/3.png", "examples/matching_to_many_images/train/trainImages.txt", "examples/paint.rb", "examples/snake.rb", "examples/stuff.jpg", "examples/tiffany.jpg", "ext/opencv/curve.cpp", "ext/opencv/curve.h", "ext/opencv/cvavgcomp.cpp", "ext/opencv/cvavgcomp.h", "ext/opencv/cvbox2d.cpp", "ext/opencv/cvbox2d.h", "ext/opencv/cvcapture.cpp", "ext/opencv/cvcapture.h", "ext/opencv/cvchain.cpp", "ext/opencv/cvchain.h", "ext/opencv/cvcircle32f.cpp", "ext/opencv/cvcircle32f.h", "ext/opencv/cvcondensation.cpp", "ext/opencv/cvcondensation.h", "ext/opencv/cvconnectedcomp.cpp", "ext/opencv/cvconnectedcomp.h", "ext/opencv/cvcontour.cpp", "ext/opencv/cvcontour.h", "ext/opencv/cvcontourtree.cpp", "ext/opencv/cvcontourtree.h", "ext/opencv/cvconvexitydefect.cpp", "ext/opencv/cvconvexitydefect.h", "ext/opencv/cverror.cpp", "ext/opencv/cverror.h", "ext/opencv/cvfeaturetree.cpp", "ext/opencv/cvfeaturetree.h", "ext/opencv/cvfont.cpp", "ext/opencv/cvfont.h", "ext/opencv/cvhaarclassifiercascade.cpp", "ext/opencv/cvhaarclassifiercascade.h", "ext/opencv/cvhistogram.cpp", "ext/opencv/cvhistogram.h", "ext/opencv/cvhumoments.cpp", "ext/opencv/cvhumoments.h", "ext/opencv/cvline.cpp", "ext/opencv/cvline.h", "ext/opencv/cvmat.cpp", "ext/opencv/cvmat.h", "ext/opencv/cvmatnd.cpp", "ext/opencv/cvmatnd.h", "ext/opencv/cvmemstorage.cpp", "ext/opencv/cvmemstorage.h", "ext/opencv/cvmoments.cpp", "ext/opencv/cvmoments.h", "ext/opencv/cvpoint.cpp", "ext/opencv/cvpoint.h", "ext/opencv/cvpoint2d32f.cpp", "ext/opencv/cvpoint2d32f.h", "ext/opencv/cvpoint3d32f.cpp", "ext/opencv/cvpoint3d32f.h", "ext/opencv/cvrect.cpp", "ext/opencv/cvrect.h", "ext/opencv/cvscalar.cpp", "ext/opencv/cvscalar.h", "ext/opencv/cvseq.cpp", "ext/opencv/cvseq.h", "ext/opencv/cvsize.cpp", "ext/opencv/cvsize.h", "ext/opencv/cvsize2d32f.cpp", "ext/opencv/cvsize2d32f.h", "ext/opencv/cvslice.cpp", "ext/opencv/cvslice.h", "ext/opencv/cvsparsemat.cpp", "ext/opencv/cvsparsemat.h", "ext/opencv/cvsurfparams.cpp", "ext/opencv/cvsurfparams.h", "ext/opencv/cvsurfpoint.cpp", "ext/opencv/cvsurfpoint.h", "ext/opencv/cvtermcriteria.cpp", "ext/opencv/cvtermcriteria.h", "ext/opencv/cvtwopoints.cpp", "ext/opencv/cvtwopoints.h", "ext/opencv/cvutils.cpp", "ext/opencv/cvutils.h", "ext/opencv/cvvideowriter.cpp", "ext/opencv/cvvideowriter.h", "ext/opencv/extconf.rb", "ext/opencv/gui.cpp", "ext/opencv/gui.h", "ext/opencv/iplconvkernel.cpp", "ext/opencv/iplconvkernel.h", "ext/opencv/iplimage.cpp", "ext/opencv/iplimage.h", "ext/opencv/mouseevent.cpp", "ext/opencv/mouseevent.h", "ext/opencv/opencv.cpp", "ext/opencv/opencv.h", "ext/opencv/pointset.cpp", "ext/opencv/pointset.h", "ext/opencv/trackbar.cpp", "ext/opencv/trackbar.h", "ext/opencv/window.cpp", "ext/opencv/window.h", "images/CvMat_sobel.png", "images/CvMat_sub_rect.png", "images/CvSeq_relationmap.png", "images/face_detect_from_lena.jpg", "lib/opencv.rb", "lib/opencv/psyched_yaml.rb", "lib/opencv/version.rb", "ruby-opencv.gemspec", "test/helper.rb", "test/runner.rb", "test/samples/airplane.jpg", "test/samples/baboon.jpg", "test/samples/baboon200.jpg", "test/samples/baboon200_rotated.jpg", "test/samples/blank0.jpg", "test/samples/blank1.jpg", "test/samples/blank2.jpg", "test/samples/blank3.jpg", "test/samples/blank4.jpg", "test/samples/blank5.jpg", "test/samples/blank6.jpg", "test/samples/blank7.jpg", "test/samples/blank8.jpg", "test/samples/blank9.jpg", "test/samples/cat.jpg", "test/samples/chessboard.jpg", "test/samples/contours.jpg", "test/samples/fruits.jpg", "test/samples/haarcascade_frontalface_alt.xml.gz", "test/samples/inpaint-mask.bmp", "test/samples/lena-256x256.jpg", "test/samples/lena-32x32.jpg", "test/samples/lena-eyes.jpg", "test/samples/lena-inpaint.jpg", "test/samples/lena.jpg", "test/samples/lines.jpg", "test/samples/messy0.jpg", "test/samples/messy1.jpg", "test/samples/movie_sample.avi", "test/samples/one_way_train_0000.jpg", "test/samples/one_way_train_0001.jpg", "test/samples/partially_blank0.jpg", "test/samples/partially_blank1.jpg", "test/samples/smooth0.jpg", "test/samples/smooth1.jpg", "test/samples/smooth2.jpg", "test/samples/smooth3.jpg", "test/samples/smooth4.jpg", "test/samples/smooth5.jpg", "test/samples/smooth6.jpg", "test/samples/str-cv-rotated.jpg", "test/samples/str-cv.jpg", "test/samples/str-ov.jpg", "test/samples/stuff.jpg", "test/test_curve.rb", "test/test_cvavgcomp.rb", "test/test_cvbox2d.rb", "test/test_cvcapture.rb", "test/test_cvchain.rb", "test/test_cvcircle32f.rb", "test/test_cvconnectedcomp.rb", "test/test_cvcontour.rb", "test/test_cvcontourtree.rb", "test/test_cverror.rb", "test/test_cvfeaturetree.rb", "test/test_cvfont.rb", "test/test_cvhaarclassifiercascade.rb", "test/test_cvhistogram.rb", "test/test_cvhumoments.rb", "test/test_cvline.rb", "test/test_cvmat.rb", "test/test_cvmat_drawing.rb", "test/test_cvmat_dxt.rb", "test/test_cvmat_imageprocessing.rb", "test/test_cvmat_matching.rb", "test/test_cvmoments.rb", "test/test_cvpoint.rb", "test/test_cvpoint2d32f.rb", "test/test_cvpoint3d32f.rb", "test/test_cvrect.rb", "test/test_cvscalar.rb", "test/test_cvseq.rb", "test/test_cvsize.rb", "test/test_cvsize2d32f.rb", "test/test_cvslice.rb", "test/test_cvsurfparams.rb", "test/test_cvsurfpoint.rb", "test/test_cvtermcriteria.rb", "test/test_cvtwopoints.rb", "test/test_cvvideowriter.rb", "test/test_iplconvkernel.rb", "test/test_iplimage.rb", "test/test_mouseevent.rb", "test/test_opencv.rb", "test/test_pointset.rb", "test/test_preliminary.rb", "test/test_trackbar.rb", "test/test_window.rb"]
13
+ s.extra_rdoc_files = ["DEVELOPERS_NOTE.md", "History.txt", "License.txt", "Manifest.txt", "README.md", "examples/matching_to_many_images/train/trainImages.txt"]
14
+ s.files = [".gitignore", "DEVELOPERS_NOTE.md", "Gemfile", "History.txt", "License.txt", "Manifest.txt", "README.md", "Rakefile", "config.yml", "examples/alpha_blend.rb", "examples/box.png", "examples/box_in_scene.png", "examples/contours/bitmap-contours-with-labels.png", "examples/contours/bitmap-contours.png", "examples/contours/bounding-box-detect-canny.rb", "examples/contours/contour_retrieval_modes.rb", "examples/contours/rotated-boxes.jpg", "examples/convexhull.rb", "examples/face_detect.rb", "examples/find_obj.rb", "examples/houghcircle.rb", "examples/inpaint.png", "examples/inpaint.rb", "examples/lenna-rotated.jpg", "examples/lenna.jpg", "examples/match_kdtree.rb", "examples/matching_to_many_images.rb", "examples/matching_to_many_images/query.png", "examples/matching_to_many_images/train/1.png", "examples/matching_to_many_images/train/2.png", "examples/matching_to_many_images/train/3.png", "examples/matching_to_many_images/train/trainImages.txt", "examples/paint.rb", "examples/snake.rb", "examples/stuff.jpg", "examples/tiffany.jpg", "ext/opencv/curve.cpp", "ext/opencv/curve.h", "ext/opencv/cvavgcomp.cpp", "ext/opencv/cvavgcomp.h", "ext/opencv/cvbox2d.cpp", "ext/opencv/cvbox2d.h", "ext/opencv/cvcapture.cpp", "ext/opencv/cvcapture.h", "ext/opencv/cvchain.cpp", "ext/opencv/cvchain.h", "ext/opencv/cvcircle32f.cpp", "ext/opencv/cvcircle32f.h", "ext/opencv/cvcondensation.cpp", "ext/opencv/cvcondensation.h", "ext/opencv/cvconnectedcomp.cpp", "ext/opencv/cvconnectedcomp.h", "ext/opencv/cvcontour.cpp", "ext/opencv/cvcontour.h", "ext/opencv/cvcontourtree.cpp", "ext/opencv/cvcontourtree.h", "ext/opencv/cvconvexitydefect.cpp", "ext/opencv/cvconvexitydefect.h", "ext/opencv/cverror.cpp", "ext/opencv/cverror.h", "ext/opencv/cvfeaturetree.cpp", "ext/opencv/cvfeaturetree.h", "ext/opencv/cvfont.cpp", "ext/opencv/cvfont.h", "ext/opencv/cvhaarclassifiercascade.cpp", "ext/opencv/cvhaarclassifiercascade.h", "ext/opencv/cvhistogram.cpp", "ext/opencv/cvhistogram.h", "ext/opencv/cvhumoments.cpp", "ext/opencv/cvhumoments.h", "ext/opencv/cvline.cpp", "ext/opencv/cvline.h", "ext/opencv/cvmat.cpp", "ext/opencv/cvmat.h", "ext/opencv/cvmatnd.cpp", "ext/opencv/cvmatnd.h", "ext/opencv/cvmemstorage.cpp", "ext/opencv/cvmemstorage.h", "ext/opencv/cvmoments.cpp", "ext/opencv/cvmoments.h", "ext/opencv/cvpoint.cpp", "ext/opencv/cvpoint.h", "ext/opencv/cvpoint2d32f.cpp", "ext/opencv/cvpoint2d32f.h", "ext/opencv/cvpoint3d32f.cpp", "ext/opencv/cvpoint3d32f.h", "ext/opencv/cvrect.cpp", "ext/opencv/cvrect.h", "ext/opencv/cvscalar.cpp", "ext/opencv/cvscalar.h", "ext/opencv/cvseq.cpp", "ext/opencv/cvseq.h", "ext/opencv/cvsize.cpp", "ext/opencv/cvsize.h", "ext/opencv/cvsize2d32f.cpp", "ext/opencv/cvsize2d32f.h", "ext/opencv/cvslice.cpp", "ext/opencv/cvslice.h", "ext/opencv/cvsparsemat.cpp", "ext/opencv/cvsparsemat.h", "ext/opencv/cvsurfparams.cpp", "ext/opencv/cvsurfparams.h", "ext/opencv/cvsurfpoint.cpp", "ext/opencv/cvsurfpoint.h", "ext/opencv/cvtermcriteria.cpp", "ext/opencv/cvtermcriteria.h", "ext/opencv/cvtwopoints.cpp", "ext/opencv/cvtwopoints.h", "ext/opencv/cvutils.cpp", "ext/opencv/cvutils.h", "ext/opencv/cvvideowriter.cpp", "ext/opencv/cvvideowriter.h", "ext/opencv/extconf.rb", "ext/opencv/gui.cpp", "ext/opencv/gui.h", "ext/opencv/iplconvkernel.cpp", "ext/opencv/iplconvkernel.h", "ext/opencv/iplimage.cpp", "ext/opencv/iplimage.h", "ext/opencv/mouseevent.cpp", "ext/opencv/mouseevent.h", "ext/opencv/opencv.cpp", "ext/opencv/opencv.h", "ext/opencv/pointset.cpp", "ext/opencv/pointset.h", "ext/opencv/trackbar.cpp", "ext/opencv/trackbar.h", "ext/opencv/window.cpp", "ext/opencv/window.h", "images/CvMat_sobel.png", "images/CvMat_sub_rect.png", "images/CvSeq_relationmap.png", "images/face_detect_from_lena.jpg", "lib/opencv.rb", "lib/opencv/psyched_yaml.rb", "lib/opencv/version.rb", "ruby-opencv.gemspec", "test/helper.rb", "test/runner.rb", "test/samples/airplane.jpg", "test/samples/baboon.jpg", "test/samples/baboon200.jpg", "test/samples/baboon200_rotated.jpg", "test/samples/blank0.jpg", "test/samples/blank1.jpg", "test/samples/blank2.jpg", "test/samples/blank3.jpg", "test/samples/blank4.jpg", "test/samples/blank5.jpg", "test/samples/blank6.jpg", "test/samples/blank7.jpg", "test/samples/blank8.jpg", "test/samples/blank9.jpg", "test/samples/cat.jpg", "test/samples/chessboard.jpg", "test/samples/contours.jpg", "test/samples/fruits.jpg", "test/samples/haarcascade_frontalface_alt.xml.gz", "test/samples/inpaint-mask.bmp", "test/samples/lena-256x256.jpg", "test/samples/lena-32x32.jpg", "test/samples/lena-eyes.jpg", "test/samples/lena-inpaint.jpg", "test/samples/lena.jpg", "test/samples/lines.jpg", "test/samples/messy0.jpg", "test/samples/messy1.jpg", "test/samples/movie_sample.avi", "test/samples/one_way_train_0000.jpg", "test/samples/one_way_train_0001.jpg", "test/samples/partially_blank0.jpg", "test/samples/partially_blank1.jpg", "test/samples/smooth0.jpg", "test/samples/smooth1.jpg", "test/samples/smooth2.jpg", "test/samples/smooth3.jpg", "test/samples/smooth4.jpg", "test/samples/smooth5.jpg", "test/samples/smooth6.jpg", "test/samples/str-cv-rotated.jpg", "test/samples/str-cv.jpg", "test/samples/str-ov.jpg", "test/samples/stuff.jpg", "test/test_curve.rb", "test/test_cvavgcomp.rb", "test/test_cvbox2d.rb", "test/test_cvcapture.rb", "test/test_cvchain.rb", "test/test_cvcircle32f.rb", "test/test_cvconnectedcomp.rb", "test/test_cvcontour.rb", "test/test_cvcontourtree.rb", "test/test_cverror.rb", "test/test_cvfeaturetree.rb", "test/test_cvfont.rb", "test/test_cvhaarclassifiercascade.rb", "test/test_cvhistogram.rb", "test/test_cvhumoments.rb", "test/test_cvline.rb", "test/test_cvmat.rb", "test/test_cvmat_drawing.rb", "test/test_cvmat_dxt.rb", "test/test_cvmat_imageprocessing.rb", "test/test_cvmat_matching.rb", "test/test_cvmoments.rb", "test/test_cvpoint.rb", "test/test_cvpoint2d32f.rb", "test/test_cvpoint3d32f.rb", "test/test_cvrect.rb", "test/test_cvscalar.rb", "test/test_cvseq.rb", "test/test_cvsize.rb", "test/test_cvsize2d32f.rb", "test/test_cvslice.rb", "test/test_cvsurfparams.rb", "test/test_cvsurfpoint.rb", "test/test_cvtermcriteria.rb", "test/test_cvtwopoints.rb", "test/test_cvvideowriter.rb", "test/test_iplconvkernel.rb", "test/test_iplimage.rb", "test/test_mouseevent.rb", "test/test_opencv.rb", "test/test_pointset.rb", "test/test_preliminary.rb", "test/test_trackbar.rb", "test/test_window.rb"]
15
15
  s.homepage = "https://github.com/ruby-opencv/ruby-opencv/"
16
16
  s.licenses = ["The BSD License"]
17
17
  s.rdoc_options = ["--main", "README.md"]
@@ -19,26 +19,26 @@ Gem::Specification.new do |s|
19
19
  s.rubyforge_project = "ruby-opencv"
20
20
  s.rubygems_version = "2.0.3"
21
21
  s.summary = "OpenCV wrapper for Ruby"
22
- s.test_files = ["test/test_cvcontourtree.rb", "test/test_iplconvkernel.rb", "test/test_cvsize2d32f.rb", "test/test_cvconnectedcomp.rb", "test/test_cvcontour.rb", "test/test_cvslice.rb", "test/test_cvmat_matching.rb", "test/test_trackbar.rb", "test/test_cvpoint3d32f.rb", "test/test_cvpoint2d32f.rb", "test/test_cvcapture.rb", "test/test_cvfont.rb", "test/test_cvhumoments.rb", "test/test_cvmat_dxt.rb", "test/test_cvbox2d.rb", "test/test_iplimage.rb", "test/test_preliminary.rb", "test/test_cvmat_drawing.rb", "test/test_cvsurfparams.rb", "test/test_cvcircle32f.rb", "test/test_pointset.rb", "test/test_cvmat.rb", "test/test_cvhistogram.rb", "test/test_cverror.rb", "test/test_cvtermcriteria.rb", "test/test_cvmoments.rb", "test/test_cvchain.rb", "test/test_cvpoint.rb", "test/test_cvavgcomp.rb", "test/test_cvrect.rb", "test/test_cvvideowriter.rb", "test/test_curve.rb", "test/test_window.rb", "test/test_cvline.rb", "test/test_opencv.rb", "test/test_cvfeaturetree.rb", "test/test_cvseq.rb", "test/test_cvsize.rb", "test/test_mouseevent.rb", "test/test_cvmat_imageprocessing.rb", "test/test_cvtwopoints.rb", "test/test_cvscalar.rb", "test/test_cvsurfpoint.rb", "test/test_cvhaarclassifiercascade.rb"]
22
+ s.test_files = ["test/test_cvhistogram.rb", "test/test_cvconnectedcomp.rb", "test/test_mouseevent.rb", "test/test_opencv.rb", "test/test_cvmat_imageprocessing.rb", "test/test_cvmat.rb", "test/test_cvfeaturetree.rb", "test/test_iplconvkernel.rb", "test/test_cvchain.rb", "test/test_cvmat_drawing.rb", "test/test_cvpoint.rb", "test/test_trackbar.rb", "test/test_cvsize2d32f.rb", "test/test_cvsurfparams.rb", "test/test_cvscalar.rb", "test/test_cverror.rb", "test/test_cvhumoments.rb", "test/test_iplimage.rb", "test/test_cvslice.rb", "test/test_cvtwopoints.rb", "test/test_cvfont.rb", "test/test_cvseq.rb", "test/test_cvcontour.rb", "test/test_curve.rb", "test/test_cvsize.rb", "test/test_window.rb", "test/test_cvbox2d.rb", "test/test_cvpoint2d32f.rb", "test/test_cvcapture.rb", "test/test_pointset.rb", "test/test_cvcontourtree.rb", "test/test_cvavgcomp.rb", "test/test_cvsurfpoint.rb", "test/test_cvrect.rb", "test/test_cvline.rb", "test/test_cvvideowriter.rb", "test/test_cvpoint3d32f.rb", "test/test_cvmat_matching.rb", "test/test_cvcircle32f.rb", "test/test_preliminary.rb", "test/test_cvmat_dxt.rb", "test/test_cvmoments.rb", "test/test_cvtermcriteria.rb", "test/test_cvhaarclassifiercascade.rb"]
23
23
 
24
24
  if s.respond_to? :specification_version then
25
25
  s.specification_version = 4
26
26
 
27
27
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
28
- s.add_development_dependency(%q<rdoc>, ["~> 3.10"])
28
+ s.add_development_dependency(%q<rdoc>, ["~> 4.0"])
29
29
  s.add_development_dependency(%q<rake-compiler>, [">= 0"])
30
30
  s.add_development_dependency(%q<hoe-gemspec>, [">= 0"])
31
- s.add_development_dependency(%q<hoe>, ["~> 3.5"])
31
+ s.add_development_dependency(%q<hoe>, ["~> 3.6"])
32
32
  else
33
- s.add_dependency(%q<rdoc>, ["~> 3.10"])
33
+ s.add_dependency(%q<rdoc>, ["~> 4.0"])
34
34
  s.add_dependency(%q<rake-compiler>, [">= 0"])
35
35
  s.add_dependency(%q<hoe-gemspec>, [">= 0"])
36
- s.add_dependency(%q<hoe>, ["~> 3.5"])
36
+ s.add_dependency(%q<hoe>, ["~> 3.6"])
37
37
  end
38
38
  else
39
- s.add_dependency(%q<rdoc>, ["~> 3.10"])
39
+ s.add_dependency(%q<rdoc>, ["~> 4.0"])
40
40
  s.add_dependency(%q<rake-compiler>, [">= 0"])
41
41
  s.add_dependency(%q<hoe-gemspec>, [">= 0"])
42
- s.add_dependency(%q<hoe>, ["~> 3.5"])
42
+ s.add_dependency(%q<hoe>, ["~> 3.6"])
43
43
  end
44
44
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-opencv
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9.pre
4
+ version: 0.0.9.pre2
5
5
  platform: ruby
6
6
  authors:
7
7
  - lsxi
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2013-03-24 00:00:00.000000000 Z
13
+ date: 2013-05-04 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rdoc
@@ -18,14 +18,14 @@ dependencies:
18
18
  requirements:
19
19
  - - ~>
20
20
  - !ruby/object:Gem::Version
21
- version: '3.10'
21
+ version: '4.0'
22
22
  type: :development
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  requirements:
26
26
  - - ~>
27
27
  - !ruby/object:Gem::Version
28
- version: '3.10'
28
+ version: '4.0'
29
29
  - !ruby/object:Gem::Dependency
30
30
  name: rake-compiler
31
31
  requirement: !ruby/object:Gem::Requirement
@@ -60,14 +60,14 @@ dependencies:
60
60
  requirements:
61
61
  - - ~>
62
62
  - !ruby/object:Gem::Version
63
- version: '3.5'
63
+ version: '3.6'
64
64
  type: :development
65
65
  prerelease: false
66
66
  version_requirements: !ruby/object:Gem::Requirement
67
67
  requirements:
68
68
  - - ~>
69
69
  - !ruby/object:Gem::Version
70
- version: '3.5'
70
+ version: '3.6'
71
71
  description: ruby-opencv is a wrapper of OpenCV for Ruby. It helps you to write computer
72
72
  vision programs (e.g. detecting faces from pictures) with Ruby.
73
73
  email:
@@ -78,9 +78,11 @@ executables: []
78
78
  extensions:
79
79
  - ext/opencv/extconf.rb
80
80
  extra_rdoc_files:
81
+ - DEVELOPERS_NOTE.md
81
82
  - History.txt
82
83
  - License.txt
83
84
  - Manifest.txt
85
+ - README.md
84
86
  - examples/matching_to_many_images/train/trainImages.txt
85
87
  files:
86
88
  - .gitignore
@@ -91,6 +93,7 @@ files:
91
93
  - Manifest.txt
92
94
  - README.md
93
95
  - Rakefile
96
+ - config.yml
94
97
  - examples/alpha_blend.rb
95
98
  - examples/box.png
96
99
  - examples/box_in_scene.png
@@ -336,47 +339,47 @@ signing_key:
336
339
  specification_version: 4
337
340
  summary: OpenCV wrapper for Ruby
338
341
  test_files:
339
- - test/test_cvcontourtree.rb
342
+ - test/test_cvhistogram.rb
343
+ - test/test_cvconnectedcomp.rb
344
+ - test/test_mouseevent.rb
345
+ - test/test_opencv.rb
346
+ - test/test_cvmat_imageprocessing.rb
347
+ - test/test_cvmat.rb
348
+ - test/test_cvfeaturetree.rb
340
349
  - test/test_iplconvkernel.rb
350
+ - test/test_cvchain.rb
351
+ - test/test_cvmat_drawing.rb
352
+ - test/test_cvpoint.rb
353
+ - test/test_trackbar.rb
341
354
  - test/test_cvsize2d32f.rb
342
- - test/test_cvconnectedcomp.rb
343
- - test/test_cvcontour.rb
355
+ - test/test_cvsurfparams.rb
356
+ - test/test_cvscalar.rb
357
+ - test/test_cverror.rb
358
+ - test/test_cvhumoments.rb
359
+ - test/test_iplimage.rb
344
360
  - test/test_cvslice.rb
345
- - test/test_cvmat_matching.rb
346
- - test/test_trackbar.rb
347
- - test/test_cvpoint3d32f.rb
348
- - test/test_cvpoint2d32f.rb
349
- - test/test_cvcapture.rb
361
+ - test/test_cvtwopoints.rb
350
362
  - test/test_cvfont.rb
351
- - test/test_cvhumoments.rb
352
- - test/test_cvmat_dxt.rb
363
+ - test/test_cvseq.rb
364
+ - test/test_cvcontour.rb
365
+ - test/test_curve.rb
366
+ - test/test_cvsize.rb
367
+ - test/test_window.rb
353
368
  - test/test_cvbox2d.rb
354
- - test/test_iplimage.rb
355
- - test/test_preliminary.rb
356
- - test/test_cvmat_drawing.rb
357
- - test/test_cvsurfparams.rb
358
- - test/test_cvcircle32f.rb
369
+ - test/test_cvpoint2d32f.rb
370
+ - test/test_cvcapture.rb
359
371
  - test/test_pointset.rb
360
- - test/test_cvmat.rb
361
- - test/test_cvhistogram.rb
362
- - test/test_cverror.rb
363
- - test/test_cvtermcriteria.rb
364
- - test/test_cvmoments.rb
365
- - test/test_cvchain.rb
366
- - test/test_cvpoint.rb
372
+ - test/test_cvcontourtree.rb
367
373
  - test/test_cvavgcomp.rb
374
+ - test/test_cvsurfpoint.rb
368
375
  - test/test_cvrect.rb
369
- - test/test_cvvideowriter.rb
370
- - test/test_curve.rb
371
- - test/test_window.rb
372
376
  - test/test_cvline.rb
373
- - test/test_opencv.rb
374
- - test/test_cvfeaturetree.rb
375
- - test/test_cvseq.rb
376
- - test/test_cvsize.rb
377
- - test/test_mouseevent.rb
378
- - test/test_cvmat_imageprocessing.rb
379
- - test/test_cvtwopoints.rb
380
- - test/test_cvscalar.rb
381
- - test/test_cvsurfpoint.rb
377
+ - test/test_cvvideowriter.rb
378
+ - test/test_cvpoint3d32f.rb
379
+ - test/test_cvmat_matching.rb
380
+ - test/test_cvcircle32f.rb
381
+ - test/test_preliminary.rb
382
+ - test/test_cvmat_dxt.rb
383
+ - test/test_cvmoments.rb
384
+ - test/test_cvtermcriteria.rb
382
385
  - test/test_cvhaarclassifiercascade.rb