Name
reconstitute_image_mask = Recreates a n-d image using its compressed 1-D form and the mask
Usage
output = Util.reconstitute_image_mask(image, mask)
Input
- image
- input image is a 1-D image
- mask
image mask. The output image will be calculated for pixels of mask having value > 0.5. Note: the reconstituted image will have the same dimension as the mask.
Output
- output
- Reconstituted image from its compressed 1-D form.
Description
reconstitute_image will take the 1-D input image and the mask. It has to be the same mask that was used when compressing the original image into its 1-D form.
Author / Maintainer
Pawel A. Penczek
Keywords
- category 1
- UTILITIES
- category 2
- SPATIAL
Files
Util_sparx.cpp
See also
Maturity
- stable
- works for most people, has been tested; test cases/examples available.
Bugs
None. It is perfect.