当前位置:网站首页>FLIR blackfly s industrial camera: explanation and configuration of color correction and code setting method
FLIR blackfly s industrial camera: explanation and configuration of color correction and code setting method
2022-07-07 02:01:00 【The moon shines on the silver sea like a dragon】
Flir Blackfly S Industrial camera : Explanation and configuration of color correction and code setting method
The main content of this blog is
- Introduce Blackfly S The color correction matrix used by the camera (CCM,color correction matrix)
- It also shows how to calculate the custom CCM.
- Color correction and customization through code CCM To configure
The photos we saw taken by the camera , In fact, it's not directly obtained by the camera , It needs various treatments , For example, white balance 、 Color correction, etc , Finally, it is shown by our eyes , Of course, the ultimate goal of all kinds of processing is to make the photos we see more similar to the scenes we see directly .
The photo processing process is like the following process :
Color correction concept
Color correction is to transform the source image ( Captured images ) The color displayed in is converted to the corrected color target image ( Final view ) The process of .
Each sensor has a specific response to light , And each lighting condition ( for example , The sun 、 Fluorescent lamp ) Each has its own emission spectrum , This will affect the composition of the image when capturing optical information .
The emission spectra of various light sources in the above figure
The efficiency of the sensor in converting photons into electrons is called QE(quantum efficlency), This value changes according to the compensation of light .
This is GS3-U3-51S5C(IMX250 sensor) Of QE
‘
Here is the key to explain what is QE(quantum efficlency), It's the vertical axis above .
** Quantum efficiency (Quantum Efficiency)( Spectral characteristics ):** Defined as CCD The chip is irradiated by a certain wavelength of incident light , The ratio of the average number of photons produced by photoelectric effect to the number of incident photons , Characterized CCD The sensitivity of the chip to incident light of different wavelengths . The efficiency of light quanta at different wavelengths is different ,CCD The quantum efficiency of some wavelengths can be as high as 98%.
Color correction considers how each color channel interacts with other channels , And scale each color channel independently . CCM Used to measure and compensate for these interactions .
The importance of color correction
In applications such as visual inspection or sorting products , Reproducing accurate colors is very important , Because small differences in color will affect the accuracy and reliability of the results .
Blackfly S Use CCM The conversion corrects the output image to sRGB Color space .
sRGB Color space is the most commonly used color space , Because it provides the best guess for how the monitor reproduces color .
How to correct the color
Color correction is to transform the source image ( Captured images ) The color displayed in is converted to the corrected color target image ( Final view ) The process of .
The following calculation formula shows the calculation of a single pixel :
Expansion is :
about n x m Pixel size of the image , This calculation performs n x m Time .
The difference between color correction and white balance
CCM Consider how color channels interact with each other and scale individual channels accordingly . CCM Is a non diagonal matrix , And the goal is RGB The value is the above RGB The value of the function .
white balance (WB) By scaling each R、G or B Channel to adjust the emission spectrum . The white balance matrix is a diagonal matrix , The goal is RGB Value according to its source RGB The value is scaled by a constant .
The two matrices are as follows :
Then the white balance adjusts the color through the following calculation formula :
The following image was taken under the condition of warm fluorescent lamp .
You can compare the picture effects of three situations , Namely : There is no color correction method 、 White balance only and enable white balance and CCM Result .
On the left is WB off,CCM off
The middle is WB on,CCM off
On the right is WB on,CCM on
Blackfly S How to correct the color
Blackfly S Use predefined CCM Create correct for different lighting conditions sRGB Output .
Predefined CCM Be integrated into RGB Transform the light source , because CCM Cannot be independent of white balance ( Transform the light source ).
CCM Can be Flir Upper computer SpinView Settings can also be made through API Interface to set the code
The color conversion selector displays RGB To RGB Standard options for . If you use different pixel formats , for example YUV or YCbCr Pixel format , The color conversion selector will provide RGB To YUV The option to . CCM Change to explain YUV How to encode color information .
adopt SpinView Set color correction
- 1 Computer connected to the camera
- 2 open SpinView
- 3 open Processing Menu check ISP Enable Whether to open
- 4 Check Color Transformation Enable Whether to open
- 5 stay RGB Transform Light Source Choose from proper RGB Transform the light source ( Warm fluorescence 、 Cold fluorescence 、 a sunny day 、 overcast 、 tungsten lamp 、 overcast 、 commonly )
Relevant settings are ticked out in the red box on the picture
adopt API Code for color correction settings
// Set up Color correction
// Turn on ISP
CBooleanPtr ptrIspEnable = nodeMap.GetNode("IspEnable");
ptrIspEnable->SetValue(1);
// Turn on Color Transformation Enable
CBooleanPtr ptrColorTransformEnable = nodeMap.GetNode("ColorTransformationEnable");
ptrColorTransformEnable->SetValue(1);
// Set up RGB Transform Light Source
CEnumerationPtr ptrRgbTransformLightSource = nodeMap.GetNode
( "RgbTransformLightSource");
CEnumEntryPtr ptrRgbTransformationLightSourceWarm = ptrRgbTransformLightSource->
GetEntryByName("WarmFluorescent3000K");
ptrRgbTransformLightSource->SetIntValue(ptrRgbTransformationLightSourceWarm->GetValue());
how Customize CCM And set up
There are several types of standard target image colors . The following are typical color targets used :
- sRGB: standard RGB Color space . This is for display 、 Printers and Internet The most common color space .
- Adobe RGB: Provide more than sRGB Larger color space .
- CIE XYZ: The color space that maps how the human eye responds to light of a specific wavelength . sRGB and Adobe RGB Is a subset of this space .
In some cases , The default settings may not be sufficient to meet our needs . for example , If the target color is not sRGB, You need to use custom CCM. because Blackfly S It's turned into sRGB.
The following is in the form of an example , Shows how to put a ( Source ) The image color is converted to camera ( Target camera ) Image color .
Customized through upper settings CCM
To derive custom CCM:
1 Use the following target and source representations to define the target and source cameras .
2 Take an image of the standardized color calibration map under standard lighting conditions . ( This example shows an example with 24 It's a square Macbeth Color checker .)
3 Determine the average pixel color value in each square , To establish 24 Compare two unique colors . In these calculations ,k = 24 As in each square 24 Average pixel color :
4 Use matrix multiplication to determine CCM:
5 Definition CCM after , take CCM Values map to Blackfly S Corresponding parameters in the camera .
6 Use SpinView For customization CCM Set gain value :
RGB Transform Light Source choice Custom
And then choose Color Transformation Value Selector choice Gain00 Then set the size of the value below
And then put 00-22 All of them are set up
adopt API Code setting customization CCM
Set customization CCM
// Set customization CCM
// Turn on ISP
CBooleanPtr ptrIspEnable = nodeMap.GetNode("IspEnable");
ptrIspEnable->SetValue(1);
// Turn on ColorTransformationEnable
CBooleanPtr ptrColorTransformationEnable = nodeMap.GetNode("ColorTransformationEnable");
ptrColorTransformationEnable->SetValue(1);
// take RgbTransformLightSource Set to Custom
CEnumerationPtr ptrRgbTransformLightSource = nodeMap.GetNode("RgbTransformLightSource");
CEnumEntryPtr ptrRgbTransformationLightSourceCustom = ptrRgbTransformLightSource
->GetEntryByName("Custom");
ptrRgbTransformLightSource->SetIntValue(ptrRgbTransformationLightSourceCustom
->GetValue());
// Set up Gain00
CEnumerationPtr ptrColorTransformationValueSelector =
nodeMap.GetNode("ColorTransformationValueSelector");
CEnumEntryPtr ptrGain00 = ptrColorTransformationValueSelector->GetEntryByName("Gain00");
ptrColorTransformationValueSelector->SetIntValue(ptrGain00->GetValue());
CFloatPtr Gain00Value = nodeMap.GetNode("ColorTransformationValue");
Gain00Value->SetValue([Enter CCM Value]);
// Same settings Gain00-22
边栏推荐
- BigDecimal 的正确使用方式
- Recognition of C language array
- 使用Ceres进行slam必须要弄清楚的几个类和函数
- Compile command line terminal swift
- ROS学习(23)action通信机制
- 3D激光SLAM:Livox激光雷达硬件时间同步
- Analyze "C language" [advanced] paid knowledge [End]
- centos8安装mysql报错:The GPG keys listed for the “MySQL 8.0 Community Server“ repository are already ins
- 拖拽改变顺序
- IDEA常用的快捷键
猜你喜欢
ROS learning (25) rviz plugin
The GPG keys listed for the "MySQL 8.0 community server" repository are already ins
PartyDAO如何在1年内把一篇推文变成了2亿美金的产品DAO
dvajs的基础介绍及使用
Mongodb checks whether the table is imported successfully
Flir Blackfly S工业相机:颜色校正讲解及配置与代码设置方法
Flir Blackfly S 工业相机:配置多个摄像头进行同步拍摄
Vingt - trois mille feuilles? "Yang mou" derrière l'explosion de la consommation végétale
centos8 用yum 安装MySQL 8.0.x
Can't you understand the code of linked list in C language? An article allows you to grasp the secondary pointer and deeply understand the various forms of parameter passing in the function parameter
随机推荐
HDU 4661 message passing (wood DP & amp; Combinatorics)
Hutool post requests to set the body parameter to JSON data
Make DIY welding smoke extractor with lighting
JS ES5也可以创建常量?
制作带照明的DIY焊接排烟器
AcWing 361. Sightseeing cow problem solution (SPFA seeking positive ring)
Ds-5/rvds4.0 variable initialization error
JS Es5 can also create constants?
grep查找进程时,忽略grep进程本身
Errors made in the development of merging the quantity of data in the set according to attributes
Curl command
C语言关于链表的代码看不懂?一篇文章让你拿捏二级指针并深入理解函数参数列表中传参的多种形式
Cisp-pte practice explanation (II)
AcWing 1148. Secret milk transportation problem solution (minimum spanning tree)
刨析《C语言》【进阶】付费知识【完结】
字符串的相关编程题
WCF Foundation
How can I code for 8 hours without getting tired.
Shortcut keys commonly used in idea
Redis tool class redisutil (tool class III)