Skip to content
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

Complete Edge Detect Module #771

Merged
merged 45 commits into from
Mar 17, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
8e8281a
update dist
tech4GT Dec 27, 2018
4774f8f
Merge remote-tracking branch 'upstream/main' into main
Dec 27, 2018
305b45b
Merge remote-tracking branch 'upstream/main' into main
Jan 8, 2019
61a7c5d
Merge remote-tracking branch 'upstream/main' into main
Jan 11, 2019
a66e115
fix insert step button
Jan 11, 2019
9f7386f
add icon
Jan 11, 2019
40b1987
add dist
Jan 11, 2019
1e29033
use normal functions
Jan 11, 2019
8db9d9c
use normal functions
Jan 12, 2019
2b0c82a
merge with main
Jan 15, 2019
14b8bcc
add new function
Jan 15, 2019
dd5e336
add dist
Jan 15, 2019
be99ea7
remove console logs
Jan 15, 2019
ac45793
changes
Jan 15, 2019
b905068
merge with main
Jan 19, 2019
9aa5841
merge with main
Jan 24, 2019
c32b94d
merge with main
Jan 24, 2019
e0f4bc3
Merge remote-tracking branch 'upstream/main' into map-types-to-htmlTypes
Jan 25, 2019
b364b0c
refactor
Jan 25, 2019
a35a20c
Merge remote-tracking branch 'upstream/main' into map-types-to-htmlTypes
Feb 8, 2019
0953e2f
Merge remote-tracking branch 'refs/remotes/upstream/main'
Feb 9, 2019
b79680d
add dist
Jan 21, 2019
6f213f1
Bump looks-same from 5.0.2 to 6.0.0 (#729)
dependabot[bot] Jan 30, 2019
743fa4b
Setup UI testing (#720)
vibhorgupta-gh Jan 31, 2019
50265f5
CLI code refactor (#665)
vibhorgupta-gh Jan 31, 2019
7ce89a8
Added line that selects the "More modules..." after adding a step. (#…
gfting Feb 1, 2019
996afac
Add: Module tests (#748)
vibhorgupta-gh Feb 5, 2019
a1a698e
Fix choose file option and insert step functionality (#712)
Mridul97 Feb 5, 2019
14c228d
Parse info.json to set module defaults (#650)
Mridul97 Feb 6, 2019
0859d61
Update package-lock.json
jywarren Feb 6, 2019
4e5bf9d
Bump jsqr from 1.1.1 to 1.2.0 (#749)
dependabot[bot] Feb 7, 2019
06e847b
Bump jsqr from 1.1.1 to 1.2.0 (#749)
dependabot[bot] Feb 7, 2019
c034516
dist
Feb 9, 2019
bc1435f
Merge remote-tracking branch 'origin/main' into map-types-to-htmlTypes
Feb 9, 2019
3f07ade
merge with main
Feb 14, 2019
2cd4042
changes
Feb 14, 2019
ef670ea
working
Feb 14, 2019
96c3e91
final touches
Feb 14, 2019
8af231e
revert mapTypes
Feb 14, 2019
d537c46
proper revert
Feb 14, 2019
dc5465e
Fix arctangent
harshkhandeparkar Feb 14, 2019
217b68c
working hysteresis
Feb 15, 2019
a9b0641
merge with main
Feb 15, 2019
f5dadb0
hysteresis optional
Mar 17, 2019
8b1ce95
edge detect complete
Mar 17, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 10 additions & 7 deletions dist/image-sequencer-ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -379,9 +379,9 @@ function DefaultHtmlStepUi(_sequencer, options) {
step.ui =
'\
<div class="container">\
<div class="row step">\
<div class="row step" style="display:flex">\
<form class="input-form">\
<div class="col-md-4 details">\
<div class="col-md-4 details" style="flex:1">\
<h3>\
<span class = "toggle">' +step.name + ' <i class="fa fa-caret-up toggleIcon" aria-hidden="true"></i></span>' +
'<span class="load-spin" style="display:none;"><i class="fa fa-circle-o-notch fa-spin"></i></span>' +
Expand All @@ -390,9 +390,11 @@ function DefaultHtmlStepUi(_sequencer, options) {
'</i></p></div>\
</div>\
</form>\
<div class="col-md-8 cal">\
<div class="load" style="display:none;"><i class="fa fa-circle-o-notch fa-spin"></i></div>\
<a><img alt="" style="max-width=100%" class="img-thumbnail step-thumbnail"/></a>\
<div class="col-md-8 cal step-column">\
<div class="load" style="display:none;"><i class="fa fa-circle-o-notch fa-spin"></i></div>\
<div class="step-image">\
<a><img alt="" class="img-thumbnail step-thumbnail"/></a>\
</div>\
</div>\
</div>\
</div>\
Expand Down Expand Up @@ -725,8 +727,8 @@ function generatePreview(previewStepName, customValues, path, selector) {

var previewSequencerSteps = {
"resize": "125%",
"brightness": "20",
"saturation": "5",
"brightness": "175",
"saturation": "0.5",
"rotate": 90,
"contrast": 90,
"crop": {
Expand All @@ -747,6 +749,7 @@ module.exports = {
generatePreview : generatePreview,
updatePreviews : updatePreviews
}

},{}],6:[function(require,module,exports){
var urlHash = require('./urlHash.js'),
insertPreview = require('./insertPreview.js');
Expand Down
2 changes: 1 addition & 1 deletion dist/image-sequencer-ui.min.js

Large diffs are not rendered by default.

Loading