Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

How to make color detection using Matlab?

Status
Not open for further replies.

zelsenussi

Junior Member level 1
Joined
Jun 28, 2008
Messages
19
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,400
how could i make color detection using matlab?
 

color detection

what specific color you want to detect .

basically
any color is combination of three that is r g b

for ex for dark black r =0 , g= 0 , b =0

ad for white r =255 , g= 255 , b =255

smiler you can find any color from image !

there is no need of toolbox.

for getting r g b folloing is the matlab code which i generally use

A = imread('test3.jpg');
r = A:),:,1);
g = A:),:,2);
b = A:),:,3);
 

color detection using matlab

how to extract the RGB color from the image color?
anyone have any suggestion coding for this problems?
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top