-
-
Notifications
You must be signed in to change notification settings - Fork 56.3k
Enable Javascript bindings for photo module. #13300
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
daccae2
Enable Javascript bindings for photo module.
riju 1d1e722
[WIP] TODO: Add tests
riju 34e89a2
Remove TonemapDurand: algorithm patented in US, so moved to opencv_co…
riju 6101c61
Fix ningxin's comment: expose the base class.
riju a5e7248
Add some more simple binding tests.
riju File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
// ////////////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. | ||
// | ||
// By downloading, copying, installing or using the software you agree to this license. | ||
// If you do not agree to this license, do not download, install, | ||
// copy or use the software. | ||
// | ||
// | ||
// License Agreement | ||
// For Open Source Computer Vision Library | ||
// | ||
// Copyright (C) 2013, OpenCV Foundation, all rights reserved. | ||
// Third party copyrights are property of their respective owners. | ||
// | ||
// Redistribution and use in source and binary forms, with or without modification, | ||
// are permitted provided that the following conditions are met: | ||
// | ||
// * Redistribution's of source code must retain the above copyright notice, | ||
// this list of conditions and the following disclaimer. | ||
// | ||
// * Redistribution's in binary form must reproduce the above copyright notice, | ||
// this list of conditions and the following disclaimer in the documentation | ||
// and/or other materials provided with the distribution. | ||
// | ||
// * The name of the copyright holders may not be used to endorse or promote products | ||
// derived from this software without specific prior written permission. | ||
// | ||
// This software is provided by the copyright holders and contributors "as is" and | ||
// any express or implied warranties, including, but not limited to, the implied | ||
// warranties of merchantability and fitness for a particular purpose are disclaimed. | ||
// In no event shall the Intel Corporation or contributors be liable for any direct, | ||
// indirect, incidental, special, exemplary, or consequential damages | ||
// (including, but not limited to, procurement of substitute goods or services; | ||
// loss of use, data, or profits; or business interruption) however caused | ||
// and on any theory of liability, whether in contract, strict liability, | ||
// or tort (including negligence or otherwise) arising in any way out of | ||
// the use of this software, even if advised of the possibility of such damage. | ||
// | ||
|
||
// Author : Rijubrata Bhaumik, Intel Corporation. rijubrata.bhaumik[at]intel[dot]com | ||
|
||
if (typeof module !== 'undefined' && module.exports) { | ||
// The envrionment is Node.js | ||
var cv = require('./opencv.js'); // eslint-disable-line no-var | ||
} | ||
|
||
|
||
QUnit.module('Photo', {}); | ||
|
||
QUnit.test('test_photo', function(assert) { | ||
// CalibrateDebevec | ||
{ | ||
let calibration = new cv.CalibrateDebevec(); | ||
assert.ok(true, calibration); | ||
//let response = calibration.process(images, exposures); | ||
} | ||
// CalibrateRobertson | ||
{ | ||
let calibration = new cv.CalibrateRobertson(); | ||
assert.ok(true, calibration); | ||
//let response = calibration.process(images, exposures); | ||
} | ||
|
||
// MergeDebevec | ||
{ | ||
let merge = new cv.MergeDebevec(); | ||
assert.ok(true, merge); | ||
//let hdr = merge.process(images, exposures, response); | ||
} | ||
// MergeMertens | ||
{ | ||
let merge = new cv.MergeMertens(); | ||
assert.ok(true, merge); | ||
//let hdr = merge.process(images, exposures, response); | ||
} | ||
// MergeRobertson | ||
{ | ||
let merge = new cv.MergeRobertson(); | ||
assert.ok(true, merge); | ||
//let hdr = merge.process(images, exposures, response); | ||
} | ||
|
||
// TonemapDrago | ||
{ | ||
let tonemap = new cv.TonemapDrago(); | ||
assert.ok(true, tonemap); | ||
// let ldr = new cv.Mat(); | ||
// let retval = tonemap.process(hdr, ldr); | ||
} | ||
// TonemapMantiuk | ||
{ | ||
let tonemap = new cv.TonemapMantiuk(); | ||
assert.ok(true, tonemap); | ||
// let ldr = new cv.Mat(); | ||
// let retval = tonemap.process(hdr, ldr); | ||
} | ||
// TonemapReinhard | ||
{ | ||
let tonemap = new cv.TonemapReinhard(); | ||
assert.ok(true, tonemap); | ||
// let ldr = new cv.Mat(); | ||
// let retval = tonemap.process(hdr, ldr); | ||
} | ||
|
||
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you may also need to expose base class
CalibrateCRF
like this'CalibrateCRF': []
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks!