Commit 13959a97 authored by Andrey Filippov's avatar Andrey Filippov
Browse files

fixed member access

parent b3a35acd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -567,7 +567,7 @@ public class LwirReader {
			}
		}
		
		if (lrp.show_images) {
		if (lrp.isShowImages()) {
			if (imps_avg != null) {
				for (ImagePlus imp: imps_avg) {
					imp.show();
+3 −0
Original line number Diff line number Diff line
@@ -82,6 +82,9 @@ public class LwirReaderParameters {
		this.debug_level = level;
	}

	public boolean isShowImages() {
		return show_images;
	}
	public void setProperties(String prefix,Properties properties){
		properties.setProperty(prefix+"avg_number",          this.avg_number+"");
		properties.setProperty(prefix+"lwir_ffc",            this.lwir_ffc+"");