1.0.3 • Published 7 years ago

stitching-detailed v1.0.3

Weekly downloads
3
License
ISC
Repository
github
Last release
7 years ago

stitching-detailed

opencv samples:stitching_detailed module for Node.

You can install this module using npm:

npm install stitching-detailed

Requires opencv:stitching_detailed to be installed.

Usage

Install with npm

npm install stitching-detailed
var stitchingDetailed = require("stitching-detailed")

// options is optional
stitchingDetailed.combine({
    img_path: 'images'
}, function (result){
  console.log(result.status + ":" +result.message);
})

API

combine(options, callback(err, stdout, stderr))

Convenience function for combining images, modelled on top of stitch.

The options argument have the following default values:

{
    img_path: null,
    preview: null,
    try_cuda: 'no',
    work_megapix: '1.0',
    seam_megapix: '0.1',
    compose_megapix: '-1',
    conf_thresh: '1.0',
    features: 'orb',
    matcher: 'homography',
    estimator: 'homography',
    ba: 'ray',
    ba_refine_mask: 'xxxxx',
    wave_correct: 'horiz',
    save_graph: null,
    warp: 'spherical',
    expos_comp: 'gain_blocks',
    match_conf: '0.3',
    seam: 'gc_color',
    blend: 'multiband',
    timelapse: null,
    blend_strength: '5',
    output: 'result.jpg',
    rangewidth: '-1'
}
1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago