Next: Copyright, Previous: Installation, Up: Top [Contents][Index]
Many code examples can be found in the [homepage](http://www.nongnu.org/bsltl) of BSLTL library.
IMAGES_DIR = '/home/user/data/speckle/test1'; DATA = datapack(IMAGES_DIR,'',1,129,'bmp'); % Datapack of 129 images. THSP = thsp(DATA,1,240); % Getting the time history speckle pattern. COM = coom(THSP); % Getting the co-occurrence matrix. AVD = avd(COM); % Getting the AVD value.
BSLTL_DIR = '/home/user/lib/octmat/bsltl'; addpath(genpath(BSLTL_DIR)); IMAGES_DIR = '/home/user/data/speckle/test1'; DATA = datapack(IMAGES_DIR,'',1,129,'bmp'); % Datapack of 129 images. THSP = thsp(DATA,2,100); % Getting the time history speckle pattern. COM = coom(THSP); % Getting the co-occurrence matrix. AVD = avd(COM); % Getting the AVD value.