Author Topic: A simple question  (Read 666 times)

Offline gianpri

  • Member
  • *
  • Posts: 56
A simple question
« on: 2019 October 12 08:12:44 »
Is it necessary to convert the .CR2 files to .XISF before processing them in Pixinsight?
Thanks.
John

Offline pfile

  • PTeam Member
  • PixInsight Jedi Grand Master
  • ********
  • Posts: 4729
Re: A simple question
« Reply #1 on: 2019 October 12 08:16:05 »
it is not strictly necessary.

however, if your first step is ImageCalibration, your CR2s will be read in, calibrated, and written out as XISF anyway.

another issue is that CR2 files can be *very* large and must be read into memory in their entirety. this can cause ImageIntegration to use a lot of memory. XISF files (as long as they were not saved with compression turned on) can be partially read from disk, so integrating uncompressed XISF files is easier on the computer's memory system.

rob

Offline gianpri

  • Member
  • *
  • Posts: 56
Re: A simple question
« Reply #2 on: 2019 October 12 09:27:26 »
Thanks.
So even in the creation phase of the Master Files, where the use of Image Integration is foreseen, would it be advisable to have XISF files already?
John

Offline pfile

  • PTeam Member
  • PixInsight Jedi Grand Master
  • ********
  • Posts: 4729
Re: A simple question
« Reply #3 on: 2019 October 12 13:43:13 »
like when creating a master bias or master dark? yes, you can use BatchFormatConversion to convert the CR2 files to xisf and then run ImageIntegration on the xisf files. i don't know how many people actually do this though. i think if you had a huge number of bias frames to integrate (3-400) it might make sense. it really all depends on how much memory your computer has and how big the OS's swap file can grow before filling up the disk.

rob

Offline wvanreeven

  • PixInsight Enthusiast
  • **
  • Posts: 82
Re: A simple question
« Reply #4 on: 2019 October 14 02:03:48 »
I always use the CR2 files as inputs and then work with the XISF files as they get produced by PixInsight and never had any issues. As a matter of fact, file conversion should be avoided in general since this *may* lead to data loss. Not sure in case of CR2 to XISF conversion though.

In any case, to answer your question "Is it necessary to convert the .CR2 files to .XISF before processing them in Pixinsight?": no!


Wouter

Offline gianpri

  • Member
  • *
  • Posts: 56
Re: A simple question
« Reply #5 on: 2019 October 14 04:43:36 »
Thanks Pfile, thanks Wouter; it's all very clear.
John