From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756061AbcKCIlm (ORCPT ); Thu, 3 Nov 2016 04:41:42 -0400 Received: from lb1-smtp-cloud6.xs4all.net ([194.109.24.24]:40423 "EHLO lb1-smtp-cloud6.xs4all.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752858AbcKCIlj (ORCPT ); Thu, 3 Nov 2016 04:41:39 -0400 Subject: Re: [RFC] v4l2 support for thermopile devices To: Antonio Ospite , Matt Ranostay References: <767cacf5-5f91-2596-90ef-31358b8e1db9@xs4all.nl> <20161103083533.9ebc9c88d883b09bf16d44c0@ao2.it> Cc: Linux Media Mailing List , Linux Kernel , Jonathan Cameron , Lars-Peter Clausen , Attila Kinali , Marek Vasut From: Hans Verkuil Message-ID: <114e007f-a677-7a1f-c661-3b522c08fab1@xs4all.nl> Date: Thu, 3 Nov 2016 09:41:34 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.4.0 MIME-Version: 1.0 In-Reply-To: <20161103083533.9ebc9c88d883b09bf16d44c0@ao2.it> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 03/11/16 08:35, Antonio Ospite wrote: > On Wed, 2 Nov 2016 23:10:41 -0700 > Matt Ranostay wrote: > >> On Fri, Oct 28, 2016 at 7:59 PM, Matt Ranostay wrote: >>> On Fri, Oct 28, 2016 at 2:53 PM, Hans Verkuil wrote: >>>> Hi Matt, >>>> >>>> On 28/10/16 22:14, Matt Ranostay wrote: >>>>> >>>>> So want to toss a few thoughts on adding support for thermopile >>>>> devices (could be used for FLIR Lepton as well) that output pixel >>>>> data. >>>>> These typically aren't DMA'able devices since they are low speed >>>>> (partly to limiting the functionality to be in compliance with ITAR) >>>>> and data is piped over i2c/spi. >>>>> >>>>> My question is that there doesn't seem to be an other driver that >>>>> polls frames off of a device and pushes it to the video buffer, and >>>>> wanted to be sure that this doesn't currently exist somewhere. >>>> >>>> >>>> Not anymore, but if you go back to kernel 3.6 then you'll find this driver: >>>> >>>> drivers/media/video/bw-qcam.c >>>> >>>> It was for a grayscale parallel port webcam (which explains why it was >>>> removed in 3.7 :-) ), and it used polling to get the pixels. >>> >>> Yikes parallel port, but I'll take a look at that for some reference :) >> >> >> So does anyone know of any software that is using V4L2_PIX_FMT_Y12 >> currently? Want to test my driver but seems there isn't anything that >> uses that format (ffmpeg, mplayer, etc). >> >> Raw data seems correct but would like to visualize it :). Suspect I'll >> need to write a test case application though >> > > You could add a conversion routine in libv4lconvert from v4l-utils to > have a grayscale representation of Y12, I did something similar for the > kinect depth map, discarding the least significant bits: > > https://git.linuxtv.org/v4l-utils.git/commit/lib/libv4lconvert?id=6daa2b1ce8674bda66b0f3bb5cf08089e42579fd > > After that any v4l2 program using libv4l2 will at least be able to show > _an_ image. > > You can play with "false color" representations too in libv4lconvert, > however I don't know if such representations are generic enough to be > mainlined, in the Kinect case the false color representation of the > depth map was done in specialized software like libfreenect. You can also try to add support for Y12 to the qv4l2 utility. It already has Y16 support, so adding Y12 should be pretty easy. Regards, Hans