Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
otb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Antoine Belvire
otb
Commits
9fad82fa
Commit
9fad82fa
authored
11 years ago
by
Stéphane Albert
Browse files
Options
Downloads
Patches
Plain Diff
ENH: HistogramPlotPicker min/max/frequency ::trackerText() display.
parent
0f287b8a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Code/Common/Gui/mvdHistogramPlotPicker.cxx
+39
-9
39 additions, 9 deletions
Code/Common/Gui/mvdHistogramPlotPicker.cxx
Code/Common/Gui/mvdHistogramPlotPicker.h
+5
-5
5 additions, 5 deletions
Code/Common/Gui/mvdHistogramPlotPicker.h
with
44 additions
and
14 deletions
Code/Common/Gui/mvdHistogramPlotPicker.cxx
+
39
−
9
View file @
9fad82fa
...
...
@@ -259,20 +259,50 @@ HistogramPlotPicker
if
(
m_IsGrayscaleActivated
)
{
double
w0
=
0.0
;
double
w1
=
0.0
;
double
wf
=
0.0
;
Find
(
m_PlotCurves
[
RGBW_CHANNEL_WHITE
],
point
.
x
(),
w0
,
w1
,
wf
);
text
=
QString
().
sprintf
(
"(%.0f)
\n
%.4
f"
,
Find
(
m_PlotCurves
[
RGBW_CHANNEL_WHITE
],
point
.
x
()
)
,
point
.
x
()
// "[%.4f; %.4f[ %.0
f",
"%.4f/%.4f/%.0f"
,
w0
,
w1
,
wf
);
}
else
{
double
r0
=
0.0
;
double
r1
=
0.0
;
double
rf
=
0.0
;
Find
(
m_PlotCurves
[
RGBW_CHANNEL_RED
],
point
.
x
(),
r0
,
r1
,
rf
);
double
g0
=
0.0
;
double
g1
=
0.0
;
double
gf
=
0.0
;
Find
(
m_PlotCurves
[
RGBW_CHANNEL_GREEN
],
point
.
x
(),
g0
,
g1
,
gf
);
double
b0
=
0.0
;
double
b1
=
0.0
;
double
bf
=
0.0
;
Find
(
m_PlotCurves
[
RGBW_CHANNEL_BLUE
],
point
.
x
(),
b0
,
b1
,
bf
);
text
=
QString
().
sprintf
(
"(%.0f, %.0f, %.0f)
\n
%.4f"
,
Find
(
m_PlotCurves
[
RGBW_CHANNEL_RED
],
point
.
x
()
),
Find
(
m_PlotCurves
[
RGBW_CHANNEL_GREEN
],
point
.
x
()
),
Find
(
m_PlotCurves
[
RGBW_CHANNEL_BLUE
],
point
.
x
()
),
point
.
x
()
/*
"[%.4f; %.4f[ %.0f\n"
"[%.4f; %.4f[ %.0f\n"
"[%.4f; %.4f[ %.0f",
*/
"%.4f/%.4f/%.0f
\n
"
"%.4f/%.4f/%.0f
\n
"
"%.4f/%.4f/%.0f"
,
r0
,
r1
,
rf
,
g0
,
g1
,
gf
,
b0
,
b1
,
bf
);
}
...
...
@@ -362,7 +392,7 @@ HistogramPlotPicker
}
/*******************************************************************************/
int
CountType
HistogramPlotPicker
::
Find
(
const
QwtPlotCurve
*
curve
,
double
x
,
...
...
This diff is collapsed.
Click to expand it.
Code/Common/Gui/mvdHistogramPlotPicker.h
+
5
−
5
View file @
9fad82fa
...
...
@@ -174,11 +174,11 @@ private:
/**
*/
int
Find
(
const
QwtPlotCurve
*
curve
,
double
x
,
double
&
xmin
,
double
&
xmax
,
double
&
y
)
const
;
CountType
Find
(
const
QwtPlotCurve
*
curve
,
double
x
,
double
&
xmin
,
double
&
xmax
,
double
&
y
)
const
;
//
// Private attributes.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment