Skip to content

Commit b4e4aa4

Browse files
committed
basic demo
1 parent c25ed56 commit b4e4aa4

5 files changed

+23
-3
lines changed

SeamCarver.js

+7
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ class SeamCarver {
2121
var buffer = new ArrayBuffer(2 * this.width * this.height);
2222
this.picture = new Uint16Array(buffer);
2323
this.context = canvas.getContext("2d");
24+
console.log('got context');
2425
for (var y = 0; y < this.height; y ++) {
2526
for (var x = 0; x < this.width; x ++) {
2627
var color = this.context.getImageData(x, y, 1, 1).data;
@@ -29,6 +30,8 @@ class SeamCarver {
2930
}
3031
}
3132

33+
console.log('got rgb of picture');
34+
3235
// Simple implementation of energy matrix as array of arrays.
3336
// Because we need to remove items, when removing the seam,
3437
// maybe some sort of linked structure is more efficient.
@@ -37,7 +40,11 @@ class SeamCarver {
3740
this.energy_matrix[i] = new Array(this.height);
3841
}
3942

43+
console.log('init energy matrix');
44+
4045
this.createEnergyMatrix();
46+
47+
console.log('created energy matrix');
4148
}
4249

4350
/**

convertImageToCanvas.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
var Canvas = require('canvas');
22

33
module.exports = function convertImageToCanvas(image) {
4-
// var canvas = document.createElement("canvas");
54
var canvas = new Canvas(image.width, image.height);
65
canvas.getContext("2d").drawImage(image, 0, 0);
76
return canvas;

gulpfile.js

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
var gulp = require('gulp');
22
var mocha = require('gulp-mocha');
33
var gutil = require('gulp-util');
4+
var browserify = require('browserify');
5+
var source = require('vinyl-source-stream');
6+
7+
gulp.task('browserify', function() {
8+
return browserify('./demo/javascript/src/demo.js')
9+
.bundle()
10+
//Pass desired output filename to vinyl-source-stream
11+
.pipe(source('demo.js'))
12+
// Start piping stream to tasks!
13+
.pipe(gulp.dest('./demo/javascript/build/'));
14+
});
415

516
gulp.task('test', function() {
617
return gulp.src('test.js', {read: false})
@@ -9,5 +20,5 @@ gulp.task('test', function() {
920
});
1021

1122
gulp.task('default', function() {
12-
gulp.watch(['./**/*.js'], ['test']);
23+
gulp.watch(['./**/*.js'], ['browserify', 'test']);
1324
});

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@
1010
"gulp-mocha": "^2.2.0"
1111
},
1212
"devDependencies": {
13+
"browserify": "^13.0.1",
1314
"chai": "^3.5.0",
14-
"gulp-util": "^3.0.7"
15+
"gulp-util": "^3.0.7",
16+
"vinyl-source-stream": "^1.1.0"
1517
},
1618
"scripts": {
1719
"testOnce": "gulp test",

test.js

+1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ describe('SeamCarver', function () {
7575
assert.equal(sm.energy_matrix.length, 6);
7676
assert.equal(sm.energy_matrix[0].length, 5);
7777
var vseam = [3, 4, 3, 2, 1];
78+
sm.printMatrix('energy');
7879
sm.removeVerticalSeam(vseam);
7980
sm.printMatrix('energy');
8081
assert.equal(sm.energy_matrix.length, 5, 'did not remove one col');

0 commit comments

Comments
 (0)