Replies: 7 comments 14 replies
-
I can work on this soon. This is one of the major complaints of the OpenCV library, it does not support writing EXIF data. I need to rip out all of the OpenCV imread/imwrite functionality and replace it with PIL or imageio. |
Beta Was this translation helpful? Give feedback.
-
Just things I think of when I am trying to bre... I mean improve things. |
Beta Was this translation helpful? Give feedback.
-
Another thing that'd be interesting to explore would be including EXIF projection, panorama, fov details to enable viewing of fisheye captures within a suitable 360 viewer - or allow software to flatten or otherwise process the images more easily. I'm not sure of all the details, but know there are some meta/EXIF properties to support some of this. It's something I was going to look at to do some local processing in PHP after the end of night script. I really should learn some Python and dig into your code Aaron 🤣 |
Beta Was this translation helpful? Give feedback.
-
Bleh... Building exif data [in python] is more difficult than I thought it would be. |
Beta Was this translation helpful? Give feedback.
-
Been doing some looking into it myself. No one seems to have a clean way of doing it easily. I wonder if running it post process, query the data from the sqllite data would be easier. |
Beta Was this translation helpful? Give feedback.
-
I have merged #710 which includes EXIF metadata for all JPEG images. I have tried to include as much detail as possible, including geolocation GPS tags and copyright information (if defined). I have not done anything with PNG metadata, as that does not appear to be well standardized. Most of the image I/O has been replaced with Pillow, which improves image performance by 25-50%. Generating Keograms and Star Trails should be about 5-10% faster. |
Beta Was this translation helpful? Give feedback.
-
ok, will run an update and see what I can blow up ;) |
Beta Was this translation helpful? Give feedback.
-
Would be nice to add more exif data into the image file when writing. Similar to how the Label Image Template is. That way you could store all the camera, lens, location, all the image label items in the data of the image. Then can query that information from something like Darkroom or any other image editor.
I have just started looking through the code to see that the temp exif json file is I see during the image capture.
Beta Was this translation helpful? Give feedback.
All reactions