ser1zw
4684a20cdf
fix #78
2016-06-26 01:20:47 +09:00
yskz
399141c63e
fixed segfault of CvSeq by GC
2015-11-18 18:14:47 +09:00
ser1zw
884da95685
change CvSeq's constructor parameter to Fixnum flags to allow CV_SEQ_KIND_* flags
2014-08-10 07:20:27 +09:00
ser1zw
bd362275e7
small fix
2014-01-18 19:08:13 +09:00
ser1zw
bd9af2dbe1
fix some documents
2014-01-15 00:35:20 +09:00
ser1zw
26086ab9b4
update for generating documents
2014-01-14 18:15:44 +09:00
ser1zw
55cf3593cc
Merge branch 'master' into documentation
...
Conflicts:
ext/opencv/cvmat.cpp
2012-10-28 13:52:15 +09:00
ser1zw
352a5e3981
fix a bug of CvSeq#push
...
CvSeq<Fixnum>#push stores always 0 to sequences in some environments.
seq = CvSeq.new(Fixnum)
seq.push(10, 20, 30)
seq.to_a #=> [10, 20, 30] expected, but [0, 0, 0] returned
This commit fixes the problem.
2012-10-28 12:50:53 +09:00
ser1zw
68b5987019
change descriptions of some constructor methods
2012-08-21 01:34:07 +09:00
ser1zw
14659f0f90
removed some unused codes, and uniformed code format
2011-08-12 03:04:22 +09:00
ser1zw
42c6f5cc37
uniformed code format
2011-08-12 02:26:54 +09:00
ser1zw
d72fbd7c2c
changed some functions' name
2011-08-12 00:53:48 +09:00
ser1zw
43c67a60cc
fixed double free bug of sequences
2011-08-04 03:09:30 +09:00
ser1zw
f8685c49c8
tested and fixed PointSet
2011-08-01 03:33:09 +09:00
ser1zw
b3016fc68c
added error handling to some methods (2)
...
Added error handlings to the methods of following classes or modules
-CvPoint2D32f
-CvPoint3D32f
-CvRect
-CvScalar
-CvSeq
-CvSize
-CvSize2D32f
-CvSlice
-CvSURFParams
-CvSURFPoint
-CvTermCriteria
-CvTwoPoints
-CvUtils
-CvVideoWriter
-GUI
-IplConvKernel
-IplImage
-MouseEvent
-OpenCV
-Trackbar
-Window
2011-07-23 19:51:58 +09:00
ser1zw
f5a11ea191
modified CvSeq to also use Fixnum as elements, and removed CvIndex
2011-05-03 01:47:05 +09:00
ser1zw
1ca99720c5
implemented rb_cvCreateMemStorage and replaced cvCreateMemStorage with rb_cvCreateMemStorage to create CvMemStorage as much as possible
2011-04-28 00:36:34 +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
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