Can I get raw image data when use_video_port is set to True?
Hello, when I get jpeg format via capture method and set "use_video_port" to True, it executes very fast, but when I specify YUV as the format then it slows down significantly. Does the camera not use video port when I request raw data?
Re: Can I get raw image data when use_video_port is set to T
There is a LOT more data in YUV format than JPEG, more data = more time to transfer.
Principal Software Engineer at Raspberry Pi (Trading) Ltd.
Contrary to popular belief, humorous signatures are allowed.
I've been saying "Mucho" to my Spanish friend a lot more lately. It means a lot to him.
Contrary to popular belief, humorous signatures are allowed.
I've been saying "Mucho" to my Spanish friend a lot more lately. It means a lot to him.
Re: Can I get raw image data when use_video_port is set to T
Sorry, I was using picamera.array.PiYUVArray and I guess that was the reason of slowness. I am now using the regular way and yuv is actually faster than jpeg.