Commit ee4732b5 authored by Andrey Filippov's avatar Andrey Filippov
Browse files

Before fixing renderGPUFromDSI with offset viewpoint

parent 90aa5914
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -6818,7 +6818,7 @@ public class Eyesis_Correction implements PlugIn, ActionListener {
		CLT_PARAMETERS.setRGBParameters(RGB_PARAMETERS);
		CLT_PARAMETERS.setRGBParameters(RGB_PARAMETERS);
		
		
		try {
		try {
			TWO_QUAD_CLT.buildSeriesTQ(
			TwoQuadCLT.buildSeriesTQ(
					quadCLT, // QUAD_CLT, // QuadCLT quadCLT_main,
					quadCLT, // QUAD_CLT, // QuadCLT quadCLT_main,
					-1, // int  ref_index,
					-1, // int  ref_index,
					0,  // int  ref_step, 
					0,  // int  ref_step, 
+7 −5
Original line number Original line Diff line number Diff line
@@ -317,13 +317,15 @@ public class ErsCorrection extends GeometryCorrection {
	public void setPropertiesScenes(String prefix, Properties properties){
	public void setPropertiesScenes(String prefix, Properties properties){
		String [] timestamps = getScenes();
		String [] timestamps = getScenes();
		for (String k : timestamps) {
		for (String k : timestamps) {
			String [] s_scenes = getScene(k).toStrings();
			if (getScene(k) != null) {
				String [] s_scenes = getScene(k).toStrings(); // null pointer
				properties.setProperty(prefix+SCENES_PREFIX+"_"+k,        s_scenes[0]);
				properties.setProperty(prefix+SCENES_PREFIX+"_"+k,        s_scenes[0]);
				properties.setProperty(prefix+SCENES_PREFIX+"_"+k+"_dt",  s_scenes[1]);
				properties.setProperty(prefix+SCENES_PREFIX+"_"+k+"_dt",  s_scenes[1]);
				properties.setProperty(prefix+SCENES_PREFIX+"_"+k+"_d2t", s_scenes[2]);
				properties.setProperty(prefix+SCENES_PREFIX+"_"+k+"_d2t", s_scenes[2]);
				//			properties.setProperty(prefix+SCENES_PREFIX+"_"+k, getScene(k).toString());
				//			properties.setProperty(prefix+SCENES_PREFIX+"_"+k, getScene(k).toString());
			}
			}
		}
		}
	}
	
	
	// do not forget to reset scenes when switching to a new "this" scene.
	// do not forget to reset scenes when switching to a new "this" scene.
	public boolean getPropertiesScenes(String parent_prefix,Properties properties){
	public boolean getPropertiesScenes(String parent_prefix,Properties properties){
+316 −31

File changed.

Preview size limit exceeded, changes collapsed.

+335 −215

File changed.

Preview size limit exceeded, changes collapsed.

+22 −1

File changed.

Preview size limit exceeded, changes collapsed.

Loading