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
[例程]正点原子F429 移植LittleVGL 8.2(4.3寸RGB 800480,SDRAM双缓冲区,有触摸)
2022-09-22 10:22:37 27.9MB stm32 单片机 arm 嵌入式硬件
1
256色转换灰度图,采用VC++语言编写,可直接使用。
2022-09-20 15:00:40 135KB 256色 rgb_to_gray
RGB LAB HSV等多种颜色空间的转换MATLAB代码
2022-09-20 10:29:08 47KB RGB LAB HSV 颜色空间
1