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
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