Skip to content

Instantly share code, notes, and snippets.

@blakeNaccarato
Last active January 12, 2024 05:57
Show Gist options
  • Save blakeNaccarato/1a9f18fc05a3423472b7ba8103f81d94 to your computer and use it in GitHub Desktop.
Save blakeNaccarato/1a9f18fc05a3423472b7ba8103f81d94 to your computer and use it in GitHub Desktop.
Modification of pycine `raw.py` to be able to read older files. Monkey-patching BlackLevel and WhiteLevel

raw.py

Modification of pycine raw.py to be able to read older files. Monkey-patching BlackLevel and WhiteLevel

GNU LESSER GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
This version of the GNU Lesser General Public License incorporates
the terms and conditions of version 3 of the GNU General Public
License, supplemented by the additional permissions listed below.
0. Additional Definitions.
As used herein, "this License" refers to version 3 of the GNU Lesser
General Public License, and the "GNU GPL" refers to version 3 of the GNU
General Public License.
"The Library" refers to a covered work governed by this License,
other than an Application or a Combined Work as defined below.
An "Application" is any work that makes use of an interface provided
by the Library, but which is not otherwise based on the Library.
Defining a subclass of a class defined by the Library is deemed a mode
of using an interface provided by the Library.
A "Combined Work" is a work produced by combining or linking an
Application with the Library. The particular version of the Library
with which the Combined Work was made is also called the "Linked
Version".
The "Minimal Corresponding Source" for a Combined Work means the
Corresponding Source for the Combined Work, excluding any source code
for portions of the Combined Work that, considered in isolation, are
based on the Application, and not on the Linked Version.
The "Corresponding Application Code" for a Combined Work means the
object code and/or source code for the Application, including any data
and utility programs needed for reproducing the Combined Work from the
Application, but excluding the System Libraries of the Combined Work.
1. Exception to Section 3 of the GNU GPL.
You may convey a covered work under sections 3 and 4 of this License
without being bound by section 3 of the GNU GPL.
2. Conveying Modified Versions.
If you modify a copy of the Library, and, in your modifications, a
facility refers to a function or data to be supplied by an Application
that uses the facility (other than as an argument passed when the
facility is invoked), then you may convey a copy of the modified
version:
a) under this License, provided that you make a good faith effort to
ensure that, in the event an Application does not supply the
function or data, the facility still operates, and performs
whatever part of its purpose remains meaningful, or
b) under the GNU GPL, with none of the additional permissions of
this License applicable to that copy.
3. Object Code Incorporating Material from Library Header Files.
The object code form of an Application may incorporate material from
a header file that is part of the Library. You may convey such object
code under terms of your choice, provided that, if the incorporated
material is not limited to numerical parameters, data structure
layouts and accessors, or small macros, inline functions and templates
(ten or fewer lines in length), you do both of the following:
a) Give prominent notice with each copy of the object code that the
Library is used in it and that the Library and its use are
covered by this License.
b) Accompany the object code with a copy of the GNU GPL and this license
document.
4. Combined Works.
You may convey a Combined Work under terms of your choice that,
taken together, effectively do not restrict modification of the
portions of the Library contained in the Combined Work and reverse
engineering for debugging such modifications, if you also do each of
the following:
a) Give prominent notice with each copy of the Combined Work that
the Library is used in it and that the Library and its use are
covered by this License.
b) Accompany the Combined Work with a copy of the GNU GPL and this license
document.
c) For a Combined Work that displays copyright notices during
execution, include the copyright notice for the Library among
these notices, as well as a reference directing the user to the
copies of the GNU GPL and this license document.
d) Do one of the following:
0) Convey the Minimal Corresponding Source under the terms of this
License, and the Corresponding Application Code in a form
suitable for, and under terms that permit, the user to
recombine or relink the Application with a modified version of
the Linked Version to produce a modified Combined Work, in the
manner specified by section 6 of the GNU GPL for conveying
Corresponding Source.
1) Use a suitable shared library mechanism for linking with the
Library. A suitable mechanism is one that (a) uses at run time
a copy of the Library already present on the user's computer
system, and (b) will operate properly with a modified version
of the Library that is interface-compatible with the Linked
Version.
e) Provide Installation Information, but only if you would otherwise
be required to provide such information under section 6 of the
GNU GPL, and only to the extent that such information is
necessary to install and execute a modified version of the
Combined Work produced by recombining or relinking the
Application with a modified version of the Linked Version. (If
you use option 4d0, the Installation Information must accompany
the Minimal Corresponding Source and Corresponding Application
Code. If you use option 4d1, you must provide the Installation
Information in the manner specified by section 6 of the GNU GPL
for conveying Corresponding Source.)
5. Combined Libraries.
You may place library facilities that are a work based on the
Library side by side in a single library together with other library
facilities that are not Applications and are not covered by this
License, and convey such a combined library under terms of your
choice, if you do both of the following:
a) Accompany the combined library with a copy of the same work based
on the Library, uncombined with any other library facilities,
conveyed under the terms of this License.
b) Give prominent notice with the combined library that part of it
is a work based on the Library, and explaining where to find the
accompanying uncombined form of the same work.
6. Revised Versions of the GNU Lesser General Public License.
The Free Software Foundation may publish revised and/or new versions
of the GNU Lesser General Public License from time to time. Such new
versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the
Library as you received it specifies that a certain numbered version
of the GNU Lesser General Public License "or any later version"
applies to it, you have the option of following the terms and
conditions either of that published version or of any later version
published by the Free Software Foundation. If the Library as you
received it does not specify a version number of the GNU Lesser
General Public License, you may choose any version of the GNU Lesser
General Public License ever published by the Free Software Foundation.
If the Library as you received it specifies that a proxy can decide
whether future versions of the GNU Lesser General Public License shall
apply, that proxy's public statement of acceptance of any version is
permanent authorization for you to choose that version for the
Library.
import logging
import struct
from os import PathLike
from typing import Generator, Tuple, Union, Any
import numpy as np
from pycine.cine import SETUP
from pycine.file import read_header, Header
from pycine.linLUT import linLUT
logger = logging.getLogger()
def frame_reader(
cine_file: Union[str, bytes, PathLike],
header: Header,
start_frame: int = 1,
count: int = None,
) -> Generator[np.ndarray, Any, None]:
frame = start_frame
if not count:
count = header["cinefileheader"].ImageCount
with open(cine_file, "rb") as f:
while count:
frame_index = frame - 1
logger.debug(f"Reading frame {frame}")
f.seek(header["pImage"][frame_index])
annotation_size = struct.unpack("I", f.read(4))[0]
annotation = struct.unpack(f"{annotation_size - 8}B", f.read((annotation_size - 8) // 8))
# TODO: Save annotations
image_size = struct.unpack("I", f.read(4))[0]
data = f.read(image_size)
raw_image = create_raw_array(data, header)
yield raw_image
frame += 1
count -= 1
def read_bpp(header):
"""
Get bit depth (bit per pixel) from header
Parameters
----------
header : dict
A dictionary contains header information of the cine file
Returns
-------
bpp : int
Bit depth of the cine file
"""
if header["bitmapinfoheader"].biCompression:
# After applying the linearization LUT the bit depth is 12bit
bpp = 12
else:
bpp = header["setup"].RealBPP
return bpp
def image_generator(
cine_file: Union[str, bytes, PathLike], start_frame: int = None, start_frame_cine: int = None, count: int = None
) -> Generator[np.ndarray, Any, None]:
"""
Get only a generator of raw images for specified cine file.
Parameters
----------
cine_file : str or file-like object
A string containing a path to a cine file
start_frame : int
First image in a pile of images in cine file.
If 0 is given, it means the first frame of the saved images would be read in this function.
Only start_frame or start_frame_cine should be specified.
If both are specified, raise ValueError.
start_frame_cine : int
First image in a pile of images in cine file.
This number corresponds to the frame number in Phantom Camera Control (PCC) application.
Only start_frame or start_frame_cine should be specified.
If both are specified, raise ValueError.
count : int
maximum number of frames to get.
Returns
-------
raw_image_generator : generator
A generator for raw image
"""
header = read_header(cine_file)
header["setup"].BlackLevel = 0
header["setup"].WhiteLevel = 255
if start_frame and start_frame_cine:
raise ValueError("Do not specify both of start_frame and start_frame_cine")
elif not start_frame and not start_frame_cine:
fetch_head = 1
elif start_frame:
fetch_head = start_frame
elif start_frame_cine:
first_image_number = header["cinefileheader"].FirstImageNo
last_image_number = first_image_number + header["cinefileheader"].ImageCount - 1
fetch_head = start_frame_cine - first_image_number
if fetch_head < 0:
raise ValueError(
f"Cannot read frame {start_frame_cine:d}. This cine has only from {first_image_number:d} to {last_image_number:d}."
)
raw_image_generator = frame_reader(cine_file, header, start_frame=fetch_head, count=count)
return raw_image_generator
def read_frames(
cine_file: Union[str, bytes, PathLike], start_frame: int = None, start_frame_cine: int = None, count: int = None
) -> Tuple[Generator[np.ndarray, Any, None], SETUP, int]:
"""
Get a generator of raw images for specified cine file.
Parameters
----------
cine_file : str or file-like object
A string containing a path to a cine file
start_frame : int
First image in a pile of images in cine file.
If 0 is given, it means the first frame of the saved images would be read in this function.
Only start_frame or start_frame_cine should be specified.
If both are specified, raise ValueError.
start_frame_cine : int
First image in a pile of images in cine file.
This number corresponds to the frame number in Phantom Camera Control (PCC) application.
Only start_frame or start_frame_cine should be specified.
If both are specified, raise ValueError.
count : int
maximum number of frames to get.
Returns
-------
raw_image_generator : generator
A generator for raw image
setup : pycine.cine.tagSETUP class
A class contains setup data of the cine file
bpp : int
Bit depth of the raw images
"""
header = read_header(cine_file)
bpp = read_bpp(header)
setup = header["setup"]
raw_image_generator = image_generator(cine_file, start_frame, start_frame_cine, count)
return raw_image_generator, setup, bpp
def unpack_10bit(data: bytes, width: int, height: int) -> np.ndarray:
packed = np.frombuffer(data, dtype="uint8").astype(np.uint16)
unpacked = np.zeros([height, width], dtype="uint16")
unpacked.flat[::4] = (packed[::5] << 2) | (packed[1::5] >> 6)
unpacked.flat[1::4] = ((packed[1::5] & 0b00111111) << 4) | (packed[2::5] >> 4)
unpacked.flat[2::4] = ((packed[2::5] & 0b00001111) << 6) | (packed[3::5] >> 2)
unpacked.flat[3::4] = ((packed[3::5] & 0b00000011) << 8) | packed[4::5]
return unpacked
def unpack_12bit(data: bytes, width: int, height: int) -> np.ndarray:
packed = np.frombuffer(data, dtype="uint8").astype(np.uint16)
unpacked = np.zeros([height, width], dtype="uint16")
unpacked.flat[::2] = (packed[::3] << 4) | packed[1::3] >> 4
unpacked.flat[1::2] = ((packed[1::3] & 0b00001111) << 8) | (packed[2::3])
return unpacked
def create_raw_array(data: bytes, header) -> np.ndarray:
width, height = header["bitmapinfoheader"].biWidth, header["bitmapinfoheader"].biHeight
if header["bitmapinfoheader"].biCompression == 0: # uncompressed data
if header["bitmapinfoheader"].biBitCount == 16: # 16bit
raw_image = np.frombuffer(data, dtype="uint16")
elif header["bitmapinfoheader"].biBitCount == 8: # 8bit
raw_image = np.frombuffer(data, dtype="uint8")
else:
raise ValueError("Only 16 and 8bit frames are supported")
raw_image.shape = (height, width)
raw_image = np.flipud(raw_image)
raw_image = np.interp(
raw_image, [header["setup"].BlackLevel, header["setup"].WhiteLevel], [0, 2 ** header["setup"].RealBPP - 1]
).astype(np.uint16)
elif header["bitmapinfoheader"].biCompression == 256: # 10bit / P10 compressed
raw_image = unpack_10bit(data, width, height)
raw_image = linLUT[raw_image].astype(np.uint16)
raw_image = np.interp(raw_image, [64, 4064], [0, 2 ** 12 - 1]).astype(np.uint16)
elif header["bitmapinfoheader"].biCompression == 1024: # 12bit / P12L compressed
raw_image = unpack_12bit(data, width, height)
raw_image = np.interp(
raw_image, [header["setup"].BlackLevel, header["setup"].WhiteLevel], [0, 2 ** header["setup"].RealBPP - 1]
).astype(np.uint16)
else:
raise ValueError("biCompression is invalid")
return raw_image
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment