Skip to content
Snippets Groups Projects
Commit e59ce7fa authored by Sacha Percot-Tétu's avatar Sacha Percot-Tétu
Browse files

Improved DoubleOperation::outDoubleImage

parent fbb9a45d
No related branches found
No related tags found
No related merge requests found
......@@ -67,8 +67,8 @@ void GenericOperation::outImage(imagein::Image* img, string title) {
this->outImgWnd(wnd, title);
}
void GenericOperation::outDoubleImage(imagein::Image_t<double>* img, string title, bool norm, bool log) {
DoubleImageWindow* wnd = new DoubleImageWindow(img, QString(), norm, log);
void GenericOperation::outDoubleImage(imagein::Image_t<double>* img, string title, bool norm, bool log, double logScale, bool abs) {
DoubleImageWindow* wnd = new DoubleImageWindow(img, QString(), norm, log, logScale, abs);
this->outImgWnd(wnd, title);
}
......
......@@ -48,7 +48,7 @@ class GenericOperation {
protected:
void outImage(imagein::Image*, std::string title = "");
void outDoubleImage(imagein::Image_t<double>*, std::string title = "", bool norm=false, bool log=false);
void outDoubleImage(imagein::Image_t<double>*, std::string title = "", bool norm=false, bool log=false, double logScale = 1., bool abs = false);
void outText(std::string);
std::string _name;
EIImageService* _ws;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment