faq.rst 1.4 KB

12345678910111213141516171819202122232425262728
  1. Frequently Asked Questions
  2. ==========================
  3. What is libmegapixels?
  4. This is a library for accessing V4L2 cameras on modern ARM platforms that
  5. use the media-request pipeline to do routing of cameras to the SoC hardware
  6. to process the pixels in various ways. It's intended to be called instead of
  7. opening the plain V4L2 device so it can configure the hardware to a specific
  8. mode and then it hands over the V4L2 handles to let your application do the
  9. normal Linux camera procedures.
  10. What is the correct way to display the name 'libmegapixels'?
  11. Just follow the correct grammar rules for your language. Being difficult
  12. about the capitalisation of project names is just a massive waste of time.
  13. How is libmegapixels different from using V4L2
  14. Libmegapixels is just a glue layer on top of V4L2 to make writing
  15. applications that use the new media request pipeline a lot easier. Once the
  16. pipeline has been configured libmegapixels will just hand over a file
  17. descriptor for a regular V4L2 device to get the frames from.
  18. Does this mean the camera stack is completely open?
  19. Yes, libmegapixels does not support the Android mess that is closed-source
  20. userspace sensor drivers and also provides an open source AAA algorithm.
  21. Using closed modules in libmegapixels is prohibited, but it's only a
  22. library for accessing V4L2 so whatever happens in the applications is up to
  23. the applications.