Projektarbeit Line Following Robot bei Prof. Chowanetz im WS22/23
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Changelog 1.7KB

123456789101112131415161718192021222324252627282930313233
  1. 0.1.3
  2. - Native support for BGR and RGB in opencv classes. No need to do conversion anymore.
  3. 0.1.2
  4. - Solved deadlock error in grab
  5. 0.1.1
  6. - Moved to c++11 mutex and condition_variables. Bug fixed that caused random dead lock condition in grab()
  7. 0.1.0
  8. - Bug fixed in release for RapiCam and RaspiCam_Cv
  9. 0.0.7
  10. - Added classes RaspiCam_Still and RaspiCam_Still_Cv for still camera mode
  11. 0.0.6
  12. - Bug ins cv camera corrected
  13. 0.0.5
  14. - getImageBuffeSize change by getImageBufferSize (sorry)
  15. - Change in capture format. Now, it is able to capture in RGB at high speed.
  16. - The second parameter of retrieve is now useless. Format must be specified in Raspicam::(set/get)Format before opening the camera and can not be change during operation.
  17. - RaspiCam_Cv captures in BGR, which is obtained by converting from RGB. Therefore, performance drops to half repect to the RaspiCam in RGB mode when using 1280x960.
  18. 0.0.4
  19. - Added shutter speed camera control
  20. - OpenCv set/get params are now scaled to [0,100]
  21. - Added more command line options in test programs
  22. 0.0.3
  23. - Fixed error in color conversion (rgb and bgr were swapped)
  24. - Added command line options in raspicam_test to adjust exposure
  25. - Changes in RaspiCam_Cv so that exposure can be adjusted. Very simply.
  26. 0.0.2
  27. - Decoupled opening from the start of capture in RaspiCam if desired. RapiCam::open and RaspiCam::startCapture
  28. - Added function RaspiCam::getId and RaspiCam_Cv::getId
  29. - Added a new way to convert yuv2rgb which is a bit faster.Thanks to Stefan Gufman (gruffypuffy at gmail dot com)
  30. - Added command line option -test_speed to utils programs (do not save images to memory)
  31. - Removed useless code in private_impl
  32. 0.0.1
  33. Initial libary