How to change calibration distance using a .cu3 file (no .cu3s available)? #72
-
|
Hi, When I try to run the program with my .cu3 file, I get the following error: SessionFile file does not exist I would like to ask: Is there a way to directly modify the calibration distance in a .cu3 file? Is it possible to generate a .cu3s file from a .cu3 file without having to recapture the data? Are there any tools or scripts available to perform this conversion or edit? Any help or guidance would be greatly appreciated. Best regards, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
Hello, to load a legacy .cu3 instead of a .cu3s file you would change the code from session = cuvis.SessionFile(measurementLoc)
mesu = session[0]to mesu = cuvis.Measurement(measurementLoc)You can also reprocess .cu3 measurements into .cu3s files using the cuvis_batch_exporter -i /some/path/to/cu3/files -r -o /some/path/out CUBEIf you encounter any issues regarding the usage of sdk please let me know. |
Beta Was this translation helpful? Give feedback.
Hello,
to load a legacy .cu3 instead of a .cu3s file you would change the code from
to
You can also reprocess .cu3 measurements into .cu3s files using the
cuvis_batch_exporterIf you encounter any issues regarding the usage of sdk please let me know.