Fork of https://gitlab.com/megapixels-org/Megapixels
Pavel Machek 8d74a7da06 rmdir can be easily done without calling the shell. | 6 месяцев назад | |
---|---|---|
config | 1 год назад | |
data | 6 месяцев назад | |
src | 6 месяцев назад | |
tools | 1 год назад | |
.clang-format | 3 лет назад | |
.editorconfig | 4 лет назад | |
.gitignore | 4 лет назад | |
.gitlab-ci.yml | 6 месяцев назад | |
CMakeLists.txt | 10 месяцев назад | |
LICENSE | 4 лет назад | |
README.md | 6 месяцев назад | |
clang-format.sh | 2 лет назад | |
medianame.h | 6 месяцев назад | |
meson.build | 6 месяцев назад | |
meson_options.txt | 3 лет назад | |
movie.sh.in | 6 месяцев назад | |
movie_audio_rec.c | 6 месяцев назад | |
mpegize.py | 6 месяцев назад |
A GTK4 camera application that knows how to deal with the media request api. It uses opengl to debayer the raw sensor data for the preview.
Chat: #megapixels:brixit.nl on Matrix
Before building this, build and install libmegapixels, libdng and postprocessd.
$ meson build
$ cd build
$ ninja
$ sudo ninja install
$ sudo glib-compile-schemas /usr/local/share/glib-2.0/schemas
Megapixels only captures raw frames and stores .dng files. It captures a 5 frame burst and saves it to a temporary location. Then the postprocessing script is run which will generate the final .jpg file and writes it into the pictures directory. Megapixels looks for the post processing script in the following locations:
./postprocess.sh
$XDG_CONFIG_DIR/megapixels/postprocess.sh
~/.config/megapixels/postprocess.sh
/etc/megapixels/postprocess.sh
/usr/share/megapixels/postprocess.sh
The bundled postprocess.sh
script will copy the first frame of the burst into the picture directory as an DNG
file. If dcraw and imagemagick are installed it will generate a JPG and also write that to the picture
directory. It supports either the full dcraw
or dcraw_emu
from libraw.
It is possible to write your own post processing pipeline by providing your own postprocess.sh
script at
one of the above locations. The first argument to the script is the directory containing the temporary
burst files and the second argument is the final path for the image without an extension. For more details
see postprocess.sh
in this repository.
Megapixels is developed at: https://gitlab.com/megapixels-org/megapixels
camera_config.c
describes how cameras are configured. Contains no state.main.c
contains the entry point and UI portion of the application.quickpreview.c
implements fast preview functionality, including debayering, color correction, rotation, etc.io_pipeline.c
implements all IO interaction with V4L2 devices in a separate thread to prevent blocking.process_pipeline.c
implements all process done on captured images, including launching post-processing.pipeline.c
Generic threaded message passing implementation based on glib, used to implement the pipelines.camera.c
V4L2 abstraction layer to make working with cameras easier.device.c
V4L2 abstraction layer for devices.The primary image pipeline consists of the main application, the IO pipeline and the process pipeline. The main application sends commands to the IO pipeline, which in turn talks to the process pipeline, which then talks to the main application. This way neither IO nor processing blocks the main application and races are generally avoided.
Tests are located in tests/
.