show/hide this revision's text 3 added 1 characters in body
  • crc32 comes into mind mainly because it's cheap to calculate

  • any kind of I/O comes into mind mainly because this will be the limiting factor for such an undertaking ;)

  • the problem is not calculating the checksums, the problem is to get the images into memory to calculate the checksum

  • i would suggest "staged" stagged" monitoring:

    • stage 1: check for changes of file timestamps and if you detect a change there hand over to...
      (not needed in your case as described in the edited version)

    • stage 2: get the image into memory and calculate the checksum

  • for sure important as well: multi-threading: setting up a pipeline which enables processing of several images in parallel if several cpu cores are available.

show/hide this revision's text 2 added 7 characters in body
  • crc32 comes into mind mainly because it's cheap to calculate

  • disk

  • any kind of I/O comes into mind mainly because this will be the limiting factor for such an undertaking ;)

  • the problem is not calculating the checksums, the problem is to get the images into memory to calculate the checksum

  • i would suggest "staged" monitoring:

    • stage 1: check for changes of file timestamps and if you detect a change there hand over to...
      (not needed in your case as described in the edited version)

    • stage 2: get the image into memory and calculate the checksum

  • for sure important as well: multi-threading: setting up a pipeline which enables processing of several images in parallel if several cpu cores are available.

show/hide this revision's text 1
  • crc32 comes into mind mainly because it's cheap to calculate

  • disk I/O comes into mind mainly because this will be the limiting factor for such an undertaking ;)

  • the problem is not calculating the checksums, the problem is to get the images into memory to calculate the checksum

  • i would suggest "staged" monitoring:

    • stage 1: check for changes of file timestamps and if you detect a change there hand over to...
    • stage 2: get the image into memory and calculate the checksum
  • for sure important as well: multi-threading: setting up a pipeline which enables processing of several images in parallel if several cpu cores are available.