opencv/modules/matlab/generator
Rok Mandeljc fa075c50a1 Matlab bindings: fixed the functional template to perform an explicit cast to the type of an input option that is expected. This avoids issues with ternary operator not having the same type in rvalue and lvalue, such as in the case below:
Ptr_FeatureDetector blobDetector = inputs[3].empty() ? makePtr<SimpleBlobDetector>() : inputs[3].toPtrFeatureDetector();

Which after the patch, would be:

Ptr_FeatureDetector blobDetector = inputs[3].empty() ? (Ptr_FeatureDetector) makePtr<SimpleBlobDetector>() : inputs[3].toPtrFeatureDetector();
2014-05-03 17:37:48 +02:00
..
templates Matlab bindings: fixed the functional template to perform an explicit cast to the type of an input option that is expected. This avoids issues with ternary operator not having the same type in rvalue and lvalue, such as in the case below: 2014-05-03 17:37:48 +02:00
build_info.py explicit string encoding when writing to file in python3 2013-12-29 17:10:52 +10:00
cvmex.py explicit string encoding when writing to file in python3 2013-12-29 17:10:52 +10:00
filters.py converted necessary files for python3 compatibility using 2to3 2013-12-29 17:10:44 +10:00
gen_matlab.py Improved standalone importing behaviour and creation of nested directories 2014-03-27 14:52:23 +10:00
parse_tree.py removed experimental slots 2014-03-27 14:58:53 +10:00