Rok Mandeljc
|
c35fd55b0e
|
Matlab bindings: CMakeLists.txt: use "${LIBRARY_OUTPUT_PATH}/${CMAKE_CFG_INTDIR}" as MEX_LIB_DIR only when compiling with MSVC, otherwise, use only "${LIBRARY_OUTPUT_PATH}"
|
11 years ago |
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();
|
11 years ago |
Rok Mandeljc
|
2d47dd7038
|
Matlab bindings: added missing compound type declarations from photo module
|
11 years ago |
Hilton Bristow
|
61c22d5899
|
removed experimental slots
|
11 years ago |
Hilton Bristow
|
fc696a9ff3
|
Improved standalone importing behaviour and creation of nested directories
|
11 years ago |
Hilton Bristow
|
6f190bb907
|
Generalized todict implementation
|
11 years ago |
Hilton Bristow
|
068b1bc3d0
|
More generic todict
|
11 years ago |
Yantao Xie
|
6b00c4e337
|
Use CMAKE_CFG_INTDIR meta-variable to get the library output directory of the opencv_matlab.
|
11 years ago |
Hilton Bristow
|
483061e802
|
explicit string encoding when writing to file in python3
|
11 years ago |
Hilton Bristow
|
2f45942adc
|
converted necessary files for python3 compatibility using 2to3
|
11 years ago |
ytxie
|
3d3b310ae1
|
Fix the bug 3440.
|
11 years ago |
Leszek Swirski
|
6e4fb8f275
|
Replace $(Configuration) with $<CONFIGURATION>
|
11 years ago |
hbristow
|
d84ab09ab7
|
Updated documentation
|
11 years ago |
hbristow
|
1dd017e9d0
|
Fixed a memory leak in mxarray
|
11 years ago |
hbristow
|
86b7e3d15d
|
Moved Jinja2 into 3rdparty. Now using latest stable version from pypi (2.7.1)
|
11 years ago |
hbristow
|
530ad447bc
|
Added fixes to CMakeLists.txt
|
11 years ago |
hbristow
|
74accbd969
|
Added <algorithm> to mxarray.hpp, which seems to be needed explictly by some compilers
|
11 years ago |
hbristow
|
6964f6aacc
|
Removed unused Dynamic from matlab namespace - clashing with Eigen
|
11 years ago |
hbristow
|
7e5bbec895
|
Removing trailing whitespace and expanded tabs
|
11 years ago |
hbristow
|
c112c9aa00
|
Made binding compilation less verbose
|
11 years ago |
hbristow
|
31c95ff7f8
|
Added new OpenCV definitions to bridge
|
11 years ago |
hbristow
|
1d25e5f1ba
|
manually added optical flow header to build
|
11 years ago |
hbristow
|
a64c34c3ec
|
Updated cv help to include reference to named arguments
|
11 years ago |
hbristow
|
d16d637eb2
|
Fixed handling of optional arguments under ArgumentParser. Fixed default constructor error in MxArray
|
11 years ago |
hbristow
|
25ee1f9099
|
Improved error messages for incorrect arguments
|
11 years ago |
hbristow
|
a780c3a7d1
|
Swapped out function assertions in favour of ArgumentParser
|
11 years ago |
hbristow
|
8f62a52b9b
|
Brought matlab module into cv namespace
|
11 years ago |
hbristow
|
bc93edac34
|
Removed all OpenCV-specific functionality from mxarray into bridge. mxarray is now standalone
|
11 years ago |
hbristow
|
153549c7f6
|
Added LICENSE and Americanizations
|
11 years ago |
hbristow
|
33c377b305
|
complete rewrite of ArgumentParser
|
11 years ago |
hbristow
|
d5abe79f74
|
untracked io for initial pull request
|
11 years ago |
hbristow
|
9726346bc9
|
removed unused files from repo
|
11 years ago |
hbristow
|
57505b9af9
|
Added LICENSE preamble to include files
|
11 years ago |
hbristow
|
569e8006e3
|
updated README.md formatting
|
11 years ago |
hbristow
|
2a0e357cd0
|
updated syntax highlighting
|
11 years ago |
hbristow
|
b87197dc37
|
updated syntax highlighting
|
11 years ago |
hbristow
|
eb83a9ed9f
|
Enabled syntax highlighting
|
11 years ago |
hbristow
|
2ac31a87c9
|
Added tutorial for writing your own mex files
|
11 years ago |
hbristow
|
78dc2c5423
|
Upadated include tree to match the rest of opencv. Added install configuration for custom mex compiler
|
11 years ago |
hbristow
|
52dc51a62c
|
Added custom OpenCV mex compiler
|
11 years ago |
hbristow
|
ef2c1e1a24
|
Changed bad cast in MxArray
|
11 years ago |
hbristow
|
fb41d7bf4e
|
Commenting spree no.2
|
11 years ago |
hbristow
|
bfa88384c7
|
Updated documentation
|
11 years ago |
hbristow
|
e63369fe64
|
Updated nest list in markdown
|
11 years ago |
hbristow
|
1e78a187db
|
Updated nest list in markdown
|
11 years ago |
hbristow
|
7786ed7bcb
|
Updated nest list in markdown
|
11 years ago |
hbristow
|
a269e3216e
|
Updated nest list in markdown
|
11 years ago |
hbristow
|
542c88c60b
|
Updated nest list in markdown
|
11 years ago |
hbristow
|
5ed9365bac
|
Updated nest list in markdown
|
11 years ago |
hbristow
|
115a1471ae
|
Updated nest list in markdown
|
11 years ago |