diff options
author | shamikam | 2017-01-16 02:56:17 +0530 |
---|---|---|
committer | shamikam | 2017-01-16 02:56:17 +0530 |
commit | a6df67e8bcd5159cde27556f4f6a315f8dc2215f (patch) | |
tree | e806e966b06a53388fb300d89534354b222c2cad /sci_gateway/cpp/loader.sce | |
download | FOSSEE_Image_Processing_Toolbox-a6df67e8bcd5159cde27556f4f6a315f8dc2215f.tar.gz FOSSEE_Image_Processing_Toolbox-a6df67e8bcd5159cde27556f4f6a315f8dc2215f.tar.bz2 FOSSEE_Image_Processing_Toolbox-a6df67e8bcd5159cde27556f4f6a315f8dc2215f.zip |
Diffstat (limited to 'sci_gateway/cpp/loader.sce')
-rw-r--r-- | sci_gateway/cpp/loader.sce | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/sci_gateway/cpp/loader.sce b/sci_gateway/cpp/loader.sce new file mode 100644 index 0000000..eedb234 --- /dev/null +++ b/sci_gateway/cpp/loader.sce @@ -0,0 +1,32 @@ +// This file is released under the 3-clause BSD license. See COPYING-BSD. +// Generated by builder.sce : Please, do not edit this file +// ---------------------------------------------------------------------------- +// +libFOSSEE_Image_Pro_path = get_absolute_file_path('loader.sce'); +// +// ulink previous function with same name +[bOK, ilib] = c_link('libFOSSEE_Image_Processing_Toolbox'); +if bOK then + ulink(ilib); +end +// +list_functions = [ 'raw_blur'; + 'raw_circle'; + 'raw_dilate'; + 'raw_erode'; + 'raw_imcrop'; + 'raw_impixel'; + 'raw_imread'; + 'raw_imresize'; + 'raw_imsharpen'; + 'raw_imwrite'; + 'raw_imrotate'; + 'raw_rgb2gray'; +]; +addinter(libFOSSEE_Image_Pro_path + filesep() + 'libFOSSEE_Image_Processing_Toolbox' + getdynlibext(), 'libFOSSEE_Image_Processing_Toolbox', list_functions); +// remove temp. variables on stack +clear libFOSSEE_Image_Pro_path; +clear bOK; +clear ilib; +clear list_functions; +// ---------------------------------------------------------------------------- |