Home | Documentation | Overview | Examples | Code | Download | Develop

Biospeckle Laser Tool Library

Table of Contents

Next: , Up: (dir)   [Contents][Index]

Introduction

The BSLTL package is a free collection of OCTAVE/MATLAB routines for working with the biospeckle laser technique.(version 1.0.2).

Implemented technics:


Next: , Previous: , Up: Top   [Contents][Index]

1 Citations

To cite the BSLTL package in publications use:

Roberto Alves Braga Júnior, Fernando Pujaico Rivera and Junio Moreira (2016).
BSLTL: Biospeckle Laser Tool Library.
URL http://www.nongnu.org/bsltl/

A BibTeX entry for LaTeX users is:

@misc{BSLTL1,
    author    = {Braga J\'unior, Roberto Alves and 
                 Pujaico Rivera, Fernando and 
                 Moreira, Junio},
    title     = {{BSLTL:} Biospeckle Laser Tool Library},
    year      = {2016},
    url       = {http://www.nongnu.org/bsltl/}
}

We have invested a lot of time and effort in creating BSLTL package, please cite it when using it. See also ‘citation pkgname’ for citing other Octave package with pkgname name.


Next: , Previous: , Up: Top   [Contents][Index]

2 Dependencies

2.1 Octave dependencies

Some functions inside BSLTL package depend of signal package; at the same time the signal package depends of control package. Thus, we recommend install first the control package and later the signal package with the following online OCTAVE installation commands.

pkg install -forge control
pkg install -forge signal

In operating systems based in GNU/Linux can be necessary install first the library liboctave-dev in the system, given that OCTAVE uses this library to install the control package. The next code is an example (Ubuntu/Debian) of command install in the system.

sudo apt-get install liboctave-dev

Next: , Previous: , Up: Top   [Contents][Index]

3 Installtion

3.1 Method 1: Online - Only in OCTAVE

The next OCTAVE code, install the last version of BSLTL package directly from octave-forge website in the default install directory.

pkg install -forge -auto bsltl

With this method the package is configured for be loaded automatically when OCTAVE start.

3.2 Method 2: Offline - Only in OCTAVE

The next OCTAVE code, install the BSLTL package, bsltl-1.0.2.tar.gz, in the directory: ~/lib/octmat

If the BSLTL package was downloaded in the directory: /download_path

pkg prefix ~/lib/octmat
pkg install -auto /download_path/bsltl-1.0.2.tar.gz

With this method the package is configured for be loaded automatically when OCTAVE start.

3.3 Method 3: Offline - In MATLAB or OCTAVE

If the BSLTL package, bsltl-1.0.2.tar.gz, was uncompressed in the directory ’/home/user/lib/octmat/bsltl’. For that this package can be used by a source file, it needs add the next code in the top of source file.

BSLTL_DIR='/home/user/lib/octmat/bsltl';
addpath(genpath(BSLTL_DIR));

The function genpath generates a list with the directories and sub directories. The function addpath add directories to OCTAVE system path.

In this method we install (add to Octave system path) the BSLTL package each time that we call our source files.


Next: , Previous: , Up: Top   [Contents][Index]

4 Using the BSLTL package

Many code examples can be found in the homepage of BSLTL library.

4.1 Example code of method 1 and 2 - Getting the AVD value of line 240

IMAGES_DIR = '/home/user/data/speckle/test1';

DATA = datapack(IMAGES_DIR,'img',1,129,'bmp'); % Datapack of 129 images.
                                               % 'img1.bmp', 'img2.bmp', 
                                               % ...       , ...       ,
                                               % 'img128.bmp', 'img129.bmp'.

THSP = thsp(DATA,'line',240);   % Getting the time history speckle pattern.
COM  = coom(THSP);              % Getting the co-occurrence matrix.
AVD  = avd(COM);                % Getting the AVD value.

4.2 Example code of method 3 - Getting the AVD value of column 100

BSLTL_DIR = '/home/user/lib/octmat/bsltl';
addpath(genpath(BSLTL_DIR));

IMAGES_DIR = '/home/user/data/speckle/test1';

DATA = datapack(IMAGES_DIR,'img',1,129,'bmp'); % Datapack of 129 images.
                                               % 'img1.bmp', 'img2.bmp', 
                                               % ...       , ...       ,
                                               % 'img128.bmp', 'img129.bmp'.

THSP = thsp(DATA,'column',100); % Getting the time history speckle pattern.
COM  = coom(THSP);              % Getting the co-occurrence matrix.
AVD  = avd(COM);                % Getting the AVD value.

Next: , Previous: , Up: Top   [Contents][Index]

5 Contributing to the package

In the case that you want to include a new function in the library, submissions will only be accepted when they have the source code documented and they are accompanied by a tutorial (all these should be below General Public License or any compatible). The tutorial can be made with Latex, Texinfo, Markdown, or any support that uses plain text.

5.1 Contributing from mailing list

To contribute to the BSLTL package using your email account, you can send your proposal to the mailing list

5.2 Contributing through a patch

To contribute to the BSLTL package through a patch:


Next: , Previous: , Up: Top   [Contents][Index]

6 Copyright

Copyright (c) 2016 BSLTL project group.

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
	 
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
	
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
USA.

Next: , Previous: , Up: Top   [Contents][Index]

7 Versions

The increment in the version number has a meaning. To a version number with the format ’va.b.c’ (by example: v1.0.2).


Next: , Previous: , Up: Top   [Contents][Index]

8 BSLTL project group


Next: , Previous: , Up: Top   [Contents][Index]

9 Support or Contact

Having trouble with the package? Check out our documentation or contact support.

Please, also visit the Home page of BSLTL project.


Previous: , Up: Top   [Contents][Index]

Index

Jump to:   C   D   M  
Index Entry  Section

C
Citations as bibtex: Citations
Citations as plain: Citations

D
Dependencies of GNU-Linux: Dependencies
Dependencies of Octave-Forge: Dependencies

M
Method 1: Installation
Method 1: Using the BSLTL package
Method 2: Installation
Method 2: Using the BSLTL package
Method 3: Installation
Method 3: Using the BSLTL package

Jump to:   C   D   M