使用python+opencv获取鼠标左键点击位置的图像的HSV或者RGB值。有问题可以联系。
2022-10-23 03:32:22 937B opencv rgb hsv
1
对于RGB和YUV值的转换工具,可以很直接的查看两者之间的数值关系,该工具尽支持windows系统
2022-10-22 15:56:43 294KB windows RGB YUV 转换工具
1
STM32F0使用PWM+DMA控制RGBLED的时序程序,默认点亮256个RGB LED。
2022-10-21 09:47:21 4.86MB stm32f0 PWM DMA RGBLED
1
STM32驱动WS2812(RGB灯)不限灯数,hal库
2022-10-21 09:01:14 23.7MB WS2812
1
spin360.bag 用于提取深度图和rgb图
2022-10-18 20:05:09 676.15MB rosbag
1
rgb转化为hsv的C++程序代码 #include "stdafx.h" #include void main(float R, float G, float B, float& H, float& S, float&V) { // r,g,b values are from 0 to 1 // h = [0,360], s = [0,1], v = [0,1] // if s == 0, then h = -1 (undefined) float min, max, delta,tmp; tmp = R>G?G:R; min = tmp>B?B:tmp; tmp = R>G?R:G; max = tmp>B?tmp:B; V = max; // v delta = max - min; if( max != 0 ) S = delta / max; // s else { // r = g = b = 0 // s = 0, v is undefined S = 0; H = 0; return; } if (delta == 0){ H = 0; return; } else if(R == max){ if (G >= B) H = (G - B) / delta; // between yellow & magenta else H = (G - B) / delta + 6; } else if( G == max ) H = 2 + ( B - R ) / delta; // between cyan & yellow else if (B == max) H = 4 + ( R - G ) / delta; // between magenta & cyan H *= 60; // degrees }
2022-10-18 15:12:38 1KB rgb、hsv
1
RGB-YCbCr RGB 和 YCbCr 高精度互转 精度可以控制,告别 8bit 256 时代。 算法全是用 乘符号 ‘*’ ,没有用DA的方式,更方便阅读。 Good4U --@--Young--@--
2022-10-18 09:06:35 6KB Verilog
1
RGB转YUV格式的封装类,希望能帮到别人
2022-09-24 22:00:55 2KB rgb2yuv rgb转yuv
把一段视频图像从rgb格式转换成空间的hsv格式
2022-09-24 21:00:08 1.46MB 视频hsv
DirectX绘制RGB视频的C++类 1 // VideoDrawer.h: interface f
2022-09-23 13:01:14 161KB directx_ui directx_rgb