Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
CAMP
campvis-public
Commits
7d38db92
Commit
7d38db92
authored
Apr 10, 2014
by
Christian Schulte zu Berge
Browse files
Fixed some compilation errors where the API were not entirely propagated.
parent
698b2583
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/advancedusvis/pipelines/cmbatchgeneration.cpp
View file @
7d38db92
...
...
@@ -142,7 +142,7 @@ namespace campvis {
ss
<<
p_sourcePath
.
getValue
()
<<
"
\\
"
<<
"export"
<<
std
::
setfill
(
'0'
)
<<
std
::
setw
(
4
)
<<
path
<<
".bmp"
;
_usReader
.
p_url
.
setValue
(
ss
.
str
());
executeProcessor
(
&
_usReader
,
false
);
executeProcessor
(
&
_usReader
);
DataHandle
dh
=
_data
->
getData
(
_usReader
.
p_targetImageID
.
getValue
());
if
(
dh
.
getData
()
!=
0
)
{
...
...
@@ -151,11 +151,11 @@ namespace campvis {
}
}
executeProcessor
(
&
_confidenceGenerator
,
false
);
executeProcessor
(
&
_usBlurFilter
,
false
);
executeProcessor
(
&
_confidenceGenerator
);
executeProcessor
(
&
_usBlurFilter
);
_usFusion
.
p_view
.
selectById
(
"mappingLAB"
);
executeProcessor
(
&
_usFusion
,
false
);
executeProcessor
(
&
_usFusion
);
save
(
path
,
p_targetPathColor
.
getValue
());
// _usFusion.p_view.selectById("mappingSharpness");
...
...
modules/advancedusvis/properties/pointpredicatehistogramproperty.h
View file @
7d38db92
...
...
@@ -45,7 +45,7 @@ namespace campvis {
* others, they will share the pointer (instead of copying around as with other properties)!
* Therefore, we use a std::shared_ptr.
*/
class
PointPredicateHistogramProperty
:
public
AbstractProperty
,
public
sigslot
::
has_slot
{
class
PointPredicateHistogramProperty
:
public
AbstractProperty
,
public
sigslot
::
has_slot
s
{
public:
/**
* Creates a new PointPredicateHistogramProperty
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment