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

Histogram range editor #1175

Merged
merged 37 commits into from
Jun 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
1979d98
Send item Id through Frame Selector and maintain composite layers data
annehaley May 26, 2023
65b178d
Create utils
annehaley May 26, 2023
4209768
Add Histogram Editor component
annehaley May 26, 2023
5654f64
Add range column
annehaley May 30, 2023
d339386
Add distribution tails mode
annehaley May 30, 2023
c18adbf
Fix fetching histograms, refetch on currentFrame change
annehaley May 31, 2023
2c16c71
Make right tail value 100 - percentage
annehaley May 31, 2023
8dff225
Only render composite layers for groups that exist
annehaley May 31, 2023
2fdae2f
Shorten max frequency height where appropriate
annehaley May 31, 2023
91096ed
Reduce auto tails
annehaley May 31, 2023
bc037fd
Lint fix
annehaley May 31, 2023
7540698
Merge remote-tracking branch 'origin/master' into histogram-range-editor
annehaley May 31, 2023
4f10794
Remove inline width
annehaley Jun 1, 2023
ac05890
Remove extra parameters in tile style queries
annehaley Jun 6, 2023
d1fb156
Add resample: false in histogram query
annehaley Jun 6, 2023
b44d581
Consolidate histogram params definition
annehaley Jun 6, 2023
7eac9c8
Remove rounding to int when converting distribution percentages
annehaley Jun 6, 2023
aef7252
Add a library for toggle switches
annehaley Jun 9, 2023
7163b29
Redesign for autoRange
annehaley Jun 9, 2023
44b7fa6
Merge remote-tracking branch 'origin/master' into histogram-range-editor
annehaley Jun 9, 2023
692e916
Style adjustments
annehaley Jun 15, 2023
ccec9c7
Merge branch 'master' into histogram-range-editor
annehaley Jun 15, 2023
38648d0
UI tweaks
annehaley Jun 20, 2023
843c7c4
Move style info out of template
annehaley Jun 20, 2023
e2a6bd2
Fix channel compositing style
annehaley Jun 20, 2023
6b86a8e
Fix single row expand icons
annehaley Jun 20, 2023
f23ba07
Set default auto range to 0.2 and don't allow auto range value > 50
annehaley Jun 20, 2023
94b80e6
1-indexed bands and channels when unnamed
annehaley Jun 20, 2023
8ccf023
Merge branch 'master' into histogram-range-editor
annehaley Jun 21, 2023
d5b27c4
Replace vue-switches with basic css
annehaley Jun 21, 2023
0799c52
Fix color picker positioning
annehaley Jun 22, 2023
35601fc
Make scrollbar always visible
annehaley Jun 22, 2023
4a46617
Fix undefined value behavior when min or max input cleared
annehaley Jun 22, 2023
f2f544a
Use input-80 class for 80px width
annehaley Jun 22, 2023
448ef26
Fix iterative addition to histogram frame
annehaley Jun 22, 2023
f758fe0
Merge branch 'master' into histogram-range-editor
annehaley Jun 22, 2023
3e2fd3a
Make one color picker component relative to sticky table header
annehaley Jun 22, 2023
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
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ var ImageViewerSelectWidget = View.extend({
const vm = new FrameSelector({
el,
propsData: {
itemId: this.itemId,
imageMetadata: imageMetadata,
frameUpdate: frameUpdate
}
Expand Down
Loading