代码搜索:RGB
找到约 8,819 项符合「RGB」的源代码
代码结果 8,819
www.eeworm.com/read/101766/15819161
cpp cplasmaroutine.cpp
// PlasmaRoutine.cpp: implementation of the CPlasmaRoutine class.
//
//////////////////////////////////////////////////////////////////////
#include "CPlasmaRoutine.h"
////////////////////////
www.eeworm.com/read/292392/8359380
c tgact.c
/*
* Converts a TARGA-TIPS RGB file into a 256*256 ct file
* only the upper left part of the RGB file is used
* the RGB file should be saved from TIPS using the window option
*
* Usage: tgac
www.eeworm.com/read/255379/12084536
c tgact.c
/*
* Converts a TARGA-TIPS RGB file into a 256*256 ct file
* only the upper left part of the RGB file is used
* the RGB file should be saved from TIPS using the window option
*
* Usage: tgac
www.eeworm.com/read/377754/2696746
fs grayscale.fs
// grayscale.fs
//
// convert RGB to grayscale
void main(void)
{
// Convert to grayscale
float gray = dot(gl_Color.rgb, vec3(0.3, 0.59, 0.11));
// replicate grayscale to RGB com
www.eeworm.com/read/490185/6460227
m fuzzy_segment2.m
function [obj_img] = fuzzy_segment2(image1, image2,tol,mult);
rgb_img1 = imread(image1);
rgb_img2 = imread(image2);
gray_img = double(rgb2gray(rgb_img1));
[M,N,P] = size(rgb_img1);
figure(1);
www.eeworm.com/read/339446/3306043
glsl composition_mode_difference.glsl
// Dca' = Sca + Dca - 2.min(Sca.Da, Dca.Sa)
// Da' = Sa + Da - Sa.Da
vec4 composite(vec4 src, vec4 dst)
{
vec4 result;
result.rgb = src.rgb + dst.rgb - 2 * min(src.rgb * dst.a, dst.rgb * src.
www.eeworm.com/read/378175/2689853
m example4_8.m
RGB=imread('flowers.tif');
[x,y,z]=sphere; %定义球面
warp(x,y,z,RGB)
www.eeworm.com/read/367675/2832797
m example4_8.m
RGB=imread('flowers.tif');
[x,y,z]=sphere; %定义球面
warp(x,y,z,RGB)