You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Multi-threading can be applied for time-slicing as well as actual processing.
Time-slicing
For time-slicing, it is only possible to process image rows in parallel, while processing images in parallel is not (easily) possible, since rows are successively appended to temporary files.
The speed gain may be limited, particularly for low resolution images. Further, parallel writing to streams may be a bottle neck?
Video frames
Calculating frames of a video is simple.
However, is increases memory usage.
Camera shake analysis
Parallelize over frames. Increases memory usage.
Processing
Processing itself could by parallel over image rows. However, this would require loading multiple temporary files into memory at the same time, which could be a problem for series of a really high number (really really high!) images.
Alternatively, processing of pixels in the same row could be done in parallel. The gain would be highest for large images, and particularly for large amounts of images in a series.
The text was updated successfully, but these errors were encountered:
Multi-threading can be applied for time-slicing as well as actual processing.
For time-slicing, it is only possible to process image rows in parallel, while processing images in parallel is not (easily) possible, since rows are successively appended to temporary files.
The speed gain may be limited, particularly for low resolution images. Further, parallel writing to streams may be a bottle neck?
Calculating frames of a video is simple.
However, is increases memory usage.
Parallelize over frames. Increases memory usage.
Processing itself could by parallel over image rows. However, this would require loading multiple temporary files into memory at the same time, which could be a problem for series of a really high number (really really high!) images.
Alternatively, processing of pixels in the same row could be done in parallel. The gain would be highest for large images, and particularly for large amounts of images in a series.
The text was updated successfully, but these errors were encountered: