Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

JIRASummaryDetails
ORG-10271Reading more header information for NetCDF filesImport NetCDF files with impNetCDF X-Function, Origin will read more header information, include Dimensions and Attributes.
ORG-10108

Origin C support for reading video files

Origin C class VideoReader is added to support reading video file as frames into Origin's matrix window. It provides following methods:

  • int Open(LPCSTR fileName);
  • int Close();
  • int SeekTime(double nOffset, int nOrigin);
  • int SeekFrame(int nOffset, int nOrigin);
  • int ReadFrame(MatrixObject& mo);
  • int ReadFrames(MatrixLayer& ml, int nFrames = -1, int nSkip = 0); // -1 = read to end, 0 = no skipping
ORG-10211LabTalk Script support for reading video files

LabTalk object vr is added to support reading video file as frames into Origin's matrix window. It provides following properties and methods:

  • FileName$
  • FourCC
  • FourCC$
  • Format
  • Channels
  • ChannelBits
  • ChannelInt
  • ChannelSigned
  • FPS
  • FrameCount
  • Length
  • Width
  • Height
  • PosFrames
  • PosMSec
  • Open(fname)
  • Close()
  • SeekFrame(frameOffset, nOrigin=0)
  • SeekTime(msecOffset, nOrigin=0)
  • ReadFrame([dataset])
  • ReadFrame(MBookName, layerIndex, objectIndex)
  • ReadFrames(MBookName, frameCount, skipFrames=0)
ORG-7760CDF Import: Suport importing comments and units into column label rows 

 

Signal Processing

JIRASummaryDetails
ORG-9806FFT, IFFT & STFT: All window methods other than Rectangular should have an Amplitude Correction Factor

Window Correction drop-down list is added in the dialogs with three options:

  • None
  • Amplitude
  • Power

...