代码搜索结果

找到约 8,819 项符合 RGB 的代码

msginbottle.c

/* GIMP RGBA C-Source image dump (msgInBottle.c) */ static const struct { unsigned int width; unsigned int height; unsigned int bytes_per_pixel; /* 3:RGB, 4:RGBA */ char *comm

example57_1.m

figure('name','简单的形状识别','numbertitle','off'); clc; %%%%%%%%%%%%%%%%%%%%%%%%%%% a=imread('example57Re1.bmp'); p=rgb2gray(a); for i=1:128 for j=1:128 if p(i,j)>130

example57_3.m

figure('name','简单的形状识别','numbertitle','off'); clc; %%%%%%%%%%%%%%%%%%%%%%%%%%% a=imread('example57Re3.bmp'); p=rgb2gray(a); for i=1:128 for j=1:128 if p(i,j)>130

example35_figure.m

%bp3_figure:to look the figure of input&output %============== %============== [name,path]=uigetfile('*.bmp'); pathname=strcat(path,name); I=imread(pathname); b=rgb2gray(I); b1=imnoise(b,

example57_2.m

figure('name','简单的形状识别','numbertitle','off'); clc; %%%%%%%%%%%%%%%%%%%%%%%%%%% a=imread('example57Re2.bmp'); p=rgb2gray(a); for i=1:128 for j=1:128 if p(i,j)>130

17232.html

Given a RGB color value (e.g 255), how to get its red,green and blue values?(no text) Giv

图像差影法代码[matlab].txt

程序代码: (代码标记 [code]...[/code] ) %%%%%%%%%%%%%%%%%%%%%%%%定义祛除背景的函数%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function chayingfa = chayingfa(i); figure; imshow(i); title('原图显示') I=rgb2gray(i);%灰度转化 figure;

fontser.java

import java.io.*; import java.util.zip.*; import java.awt.*; import java.awt.image.*; /** * FontSer. Font serializer (RGB + Descriptor). * @version 1.0 * @author S.H. * @company

colorfilter.java

// ColorFilter.java // ColorFilter is an Java2DImageFilter that alters the // RGB color bands in a BufferedImage. package com.deitel.advjhtp1.java2d; // Java core packages import java.awt.imag