summaryrefslogtreecommitdiff
path: root/etc/FOSSEE_Image_Processing_Toolbox.start
diff options
context:
space:
mode:
Diffstat (limited to 'etc/FOSSEE_Image_Processing_Toolbox.start')
-rw-r--r--etc/FOSSEE_Image_Processing_Toolbox.start77
1 files changed, 77 insertions, 0 deletions
diff --git a/etc/FOSSEE_Image_Processing_Toolbox.start b/etc/FOSSEE_Image_Processing_Toolbox.start
new file mode 100644
index 0000000..3b6355c
--- /dev/null
+++ b/etc/FOSSEE_Image_Processing_Toolbox.start
@@ -0,0 +1,77 @@
+// Copyright (C) 2017 - IIT Bombay - FOSSEE
+//
+// This file must be used under the terms of the BSD.
+// This source file is licensed as described in the file LICENSE, which
+// you should have received as part of this distribution. The terms
+// are also available at
+// https://opensource.org/licenses/BSD-3-Clause
+// Author: Shamika Mohanan
+// Organization: FOSSEE, IIT Bombay
+// Email: toolbox@scilab.in
+
+mprintf("Start FOSSEE Image Processing Toolbox\n");
+
+[a, opt] = getversion();
+Version = opt(2);
+
+etc_tlbx = get_absolute_file_path("FOSSEE_Image_Processing_Toolbox.start");
+etc_tlbx = getshortpathname(etc_tlbx);
+root_tlbx = strncpy( etc_tlbx, length(etc_tlbx)-length("\etc\") );
+
+//Load functions library
+// =============================================================================
+mprintf("\tLoad macros\n");
+pathmacros = pathconvert( root_tlbx ) + "macros" + filesep();
+fipt_lib = lib(pathmacros);
+clear pathmacros;
+
+// load gateways
+// =============================================================================
+
+mprintf("\tLoad gateways\n");
+[a, opt] = getversion();
+Version = opt(2);
+ilib_verbose(0);
+if getos()=="Windows" then
+// lib_path = root_tlbx + "/thirdparty/windows/bin/" + Version;*/
+// link(lib_path+filesep()+"IpOptFSS.dll");*/
+// link(lib_path+filesep()+"IpOpt-vc10.dll");*/
+else
+ lib_path = root_tlbx + "/thirdparty/linux/lib/" + Version;
+// lib_path="/usr/lib";*/
+ link(lib_path + "/libopencv_core.so");
+ link(lib_path + "/libopencv_highgui.so");
+ link(lib_path + "/libopencv_imgproc.so");
+
+end
+exec(pathconvert(root_tlbx + filesep() + "sci_gateway" + filesep() + "loader_gateway.sce",%f));
+
+// Load and add help chapter
+// =============================================================================
+if ( %t ) then
+if or(getscilabmode() == ["NW";"STD"]) then
+ mprintf("\tLoad help\n");
+ path_addchapter = pathconvert(root_tlbx+"/jar");
+ if ( isdir(path_addchapter) <> [] ) then
+ add_help_chapter("FOSSEE_Image_Processing_Toolbox", path_addchapter, %F);
+ clear add_help_chapter;
+ end
+ clear path_addchapter;
+end
+end
+
+// add demos
+// =============================================================================
+
+if ( %t ) then
+if or(getscilabmode() == ["NW";"STD"]) then
+ mprintf("\tLoad demos\n");
+ //pathdemos = pathconvert(root_tlbx+"/demos/sci_FOSSEE_Image_Processing_Toolbox.dem.gateway.sce",%f,%t);
+ //add_demo("FOSSEE_Image_Processing_Toolbox",pathdemos);
+ //clear pathdemos ;
+end
+end
+
+// =============================================================================
+
+clear etc_tlbx root_tlbx Version a opt lib_path;