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

modified arguments of CvHaarClassifierCascade#detect_objects to set options more easily

This commit is contained in:
ser1zw 2011-05-21 18:22:27 +09:00
parent ca24f705ac
commit 5266eb051a
6 changed files with 77 additions and 58 deletions

View file

@ -145,6 +145,7 @@ extern "C"{
#define IF_DEPTH(val, ifnone) NIL_P(val) ? ifnone : FIX2INT(val)
#define RESIST_CVMETHOD(hash, str, value) rb_hash_aset(hash, ID2SYM(rb_intern(str)), INT2FIX(value))
#define LOOKUP_CVMETHOD(hash, key_as_cstr) (rb_hash_lookup(hash, ID2SYM(rb_intern(key_as_cstr))))
#define maxint(a,b) ({int _a = (a), _b = (b); _a > _b ? _a : _b; })