voluptasquisquam
Version:
Image processing and manipulation in JavaScript
30 lines (26 loc) • 1.46 kB
JavaScript
import {laplacianOfGaussian} from '../laplacianOfGaussian';
import 'should';
describe('we check Shape class', function () {
it('should yield a cross', function () {
laplacianOfGaussian(1.5, 17, 40).should.eql(
[
[],
[],
[],
[],
[],
[],
[],
[],
[],
[],
[],
[],
[],
[],
[],
[],
[]]
);
});
});