PiDNG
PiDNG copied to clipboard
Create Adobe DNG RAW files using Python. Works with any Bayer RAW Data including native support for Raspberry Pi cameras.
When trying to save 14b raw data as a dng (see #75 for why I have to do that) PiDNG crashes: ``` out[:, ::7] = data[:, ::6] >> 6 ~~~^^^^^^^^...
LOG: ``` C:\Users\Daniel\Downloads\PiDNG-master>python -mpip install PiDNG Collecting PiDNG Using cached pidng-4.0.9.tar.gz (21 kB) Preparing metadata (setup.py) ... done Requirement already satisfied: numpy in c:\users\daniel\appdata\local\programs\python\python38\lib\site-packages (from PiDNG) (1.20.3) Building wheels for...
I am trying to convert a raw photo using the following code (from the example) `from pidng.core import RAW2DNG, DNGTags, Tag from pidng.defs import * import numpy as np import...
I really appreciate this library, and it functions effectively for exporting uncompressed DNGs with various tags. However, I have a camera equipped with a GPS module, and I would greatly...
There are some basic fixes in the current master that would be nice to get to the PyPi version.
With the package on PyPi and a fresh Python 3.10 install and `compress=True`, I get the error: `SystemError: PY_SSIZE_T_CLEAN macro must be defined for '#' formats` which was fixed by...
The latest code expects the "fmt" dictionary to be present in camera's "model", while it is a string, hence the below AttributeError is raised: ``` File "/project/PiDNG/src/pidng/core.py", line 120, in...
Fix that gets raw2dng.py working again by supporting fmt in __init__ of camdefs.py.
Can the IMX708 of the Raspberry Pi Module V3 be added to the supported sensors?
I believe currently it is not possible to convert raw files to monochrome DNG files. (it is just a tag I assume, but will require some change in the code)...