blob: 5e3562b78c945cf439f715b793c1e096d83c335b (
plain) (
blame)
1
2
3
4
5
6
7
|
function mser_compile(type)
% MSER_COMPILE Compile MEX files
opts = { '-O', '-I.' } ;
mex('mser.mex.c','-output', 'mser',opts{:}) ;
mex('erfill.mex.c','-output', 'erfill',opts{:}) ;
|