1
0
Fork 0
mirror of https://github.com/ruby-opencv/ruby-opencv synced 2023-03-27 23:22:12 -04:00
Commit graph

40 commits

Author SHA1 Message Date
ser1zw
d1809bc13f removed some unused functions 2011-08-12 01:11:23 +09:00
ser1zw
79b8f28964 changed arguments of CvMat#extract_surf 2011-08-07 17:27:45 +09:00
ser1zw
92c0582580 changed argument format of cCvMat::rb_range, cCvMat::rb_range_bang 2011-07-21 20:33:06 +09:00
ser1zw
5854a3ca4a added error handling to CvMat methods 2011-07-21 01:33:07 +09:00
ser1zw
7b279a9e7e added error handling to some CvMat method (2) 2011-07-13 05:58:59 +09:00
ser1zw
8b48490a43 added error handling to some CvMat method 2011-07-12 04:47:46 +09:00
ser1zw
87b6f885b1 renamed CvMat#row -> CvMat#get_rows, CvMat#col -> CvMat#get_cols 2011-07-09 11:26:04 +09:00
ser1zw
53fd238569 added CvMat#copy_make_border 2011-07-08 21:46:38 +09:00
ser1zw
7add8ec805 removed some unnecessary CvMat methods
Removed methods are:
  CvMat#rb_morphology_*
  CvMat#rb_copy_make_border_*
  CvMat#rb_hough_lines_*
  CvMat#rb_hough_circles_*
  CvMat#rb_inpaint_*
  CvMat#rb_match_shapes_*
  CvMat#rb_threshold_*
  CvMat#rb_find_fundamental_mat_*
  CvMat#rb_smooth_*
  CvMat#rb_slice_width
  CvMat#rb_slice_height
  CvMat#rb_mix_channels
2011-07-08 20:48:24 +09:00
ser1zw
46227b7fa1 added type check to some CvMat methods (8) 2011-07-08 00:15:07 +09:00
ser1zw
c003ee81f0 added type check to some CvMat methods (7) 2011-07-07 00:42:57 +09:00
ser1zw
366e9e2bc0 fixed CvMat#integral 2011-07-06 23:21:38 +09:00
ser1zw
0d56ef2762 added type check to some CvMat methods (6) 2011-07-03 19:49:22 +09:00
ser1zw
3d45dd1146 added type check to some CvMat methods (4) 2011-07-03 17:19:39 +09:00
ser1zw
ecca9a0d66 modified some functions 2011-07-02 13:42:44 +09:00
ser1zw
76289fa9ea added type check to some CvMat methods (3) 2011-06-30 16:01:36 +09:00
ser1zw
d3ecd00428 added type check to some CvMat methods 2011-06-30 14:02:05 +09:00
ser1zw
20d71ff11c added type check to some CvMat methods 2011-06-29 02:25:51 +09:00
ser1zw
041f9cc89f implemented CvMat#extract_surf 2011-06-19 22:51:39 +09:00
ser1zw
6c11f71e31 modified some methods of CvMat to adapt them to IplImage 2011-05-29 01:44:28 +09:00
ser1zw
63666f47f1 modified some methods of CvMat to adapt them to IplImage 2011-05-28 20:17:22 +09:00
ser1zw
4fb3d87dd3 added cCvMat::new_mat_kind_object() to adapt CvMat methods to IplImage 2011-05-28 19:04:41 +09:00
ser1zw
efc7292cdf fixed a bug (IplImage#or returns CvMat object) 2011-05-28 15:28:51 +09:00
ser1zw
ec18d758fd removed CvChainCode 2011-05-24 00:08:51 +09:00
ser1zw
4a976087ac modified some initialize methods to private 2011-05-15 04:09:00 +09:00
ser1zw
6841c2f417 modified an error message of CvMat#copy 2011-05-15 02:36:48 +09:00
ser1zw
059762efac removed CvMat#parent and CvMat#has_parent? 2011-05-15 02:26:25 +09:00
ser1zw
7b378e7608 fixed a bug (unexpected aborts of CvMat#to_CvMat) 2011-05-15 02:08:02 +09:00
ser1zw
579ba0299d added CvMat#set_data 2011-04-30 13:29:47 +09:00
ser1zw
d9a7960949 implemented rb_cvCreateStructuringElementEx and replaced cvCreateStructuringElementEx with rb_cvCreateStructuringElementEx to create IplConvKernel as much as possible 2011-04-28 00:22:23 +09:00
ser1zw
586f2161eb implemented rb_cvAlloc and replaced cvAlloc with rb_cvAlloc to allocate memory buffer as much as possible 2011-04-28 00:11:46 +09:00
ser1zw
196c567ee0 implemented rb_cvCreateMat and replaced cvCreateMat with rb_cvCreateMat to create a CvMat as much as possible 2011-04-27 23:39:16 +09:00
ser1zw
882b778e94 modified CvMat#initialize to run GC and retry memory allocation when it is failed 2011-04-23 22:34:47 +09:00
ser1zw
e5e872861f modified CvMat.find_fundamental_mat to use CV_MAT_DEPTH 2011-04-20 00:58:05 +09:00
ser1zw
fc5a680b58 tested CvMat.compute_correspond_epilines 2011-04-20 00:54:22 +09:00
ser1zw
b447c9d5c3 implemented CvMat.find_fundamental_mat 2011-04-17 04:32:43 +09:00
ser1zw
d5e7d1acea tested CvMat.find_fundamental_mat_lmeds 2011-04-17 03:42:19 +09:00
ser1zw
ac62bd7988 fixed a bug of CvMat.find_fundamental_mat_ransac (size of status matrix), and tested it 2011-04-17 03:32:53 +09:00
ser1zw
e56749c70d modified and tested CvMat.find_fundamental_mat_*point 2011-04-17 02:46:23 +09:00
Patrick Ting
08a9655dc1 Added gemspec to be able to bundle install from git.
Added IplImage#smoothness that returns :smooth, :messy, or :blank.
Rake compile will now compile the C extension code.
2011-04-14 12:26:41 -07:00
Renamed from ext/cvmat.cpp (Browse further)