IU-Capstone-Project-2024 / A-Shot

A-Shot is a user-friendly, multiplatform tool that leverages computer vision and machine learning to simplify and accelerate the photo culling process for photographers.
5 stars 0 forks source link

Image loading and EXIF extraction solutions search #7

Closed ATMI closed 3 months ago

ATMI commented 3 months ago

feature/image_loading @zDragonLORD

To load numerous pictures in different formats, we need a fast and lightweight library. Most popular image manipulation library, OpenCV, do not fully satisfy the requirements as it has issues with RAW format, so, please find a library that:

Share your findings in comments!

zDragonLORD commented 3 months ago

Image manipulation library.pdf

dadagust commented 3 months ago

better to search for a solution, that provides a bitmap of an image

ATMI commented 3 months ago

It's not a problem. The most important that the library gives you data in some interpretable format. After that, for example, in Java you can use BitmapFactory.decodeX or other methods

ATMI commented 3 months ago

@zDragonLORD, ImageMagick sounds like an option. However, could you look for libraries that can extract images and EXIF data from various formats once more, but the only limitation now is that the library should be written in C/C++?

zDragonLORD commented 3 months ago

Image manipulation library C.pdf

ATMI commented 3 months ago

Thanks, will check a bit later!

ATMI commented 3 months ago

Thx, we will use ImageMagick, closing the issue!