Color

Speccompare shows the spectral differences of two signals using colors and brightness. in matlab

The following Matlab project contains the source code and Matlab examples used for speccompare shows the spectral differences of two signals using colors and brightness. . SPECCOMPARE calculates the spectral difference of two signals and shows it in green/red for positive/negative changes and in white for unchanged signal parts.

Color constancy algorithms (gray world, white patch, modified white patch, etc) in matlab

The following Matlab project contains the source code and Matlab examples used for color constancy algorithms (gray world, white patch, modified white patch, etc). Techniques: Gray World White Patch Modified White Patch Progressive Single Scale Retinex Multi Scale Retinex MSRCR ACE Example of use: % I and J are input and output images. J = colorConstancy(I, 'modified white patch', 200);

Color detection by hsv color model in matlab

The following Matlab project contains the source code and Matlab examples used for color detection by hsv color model. Input: image object in RGB format Output: binary image objects (1 stands for the target color, 0 otherwise) for Black, White, Red, Yellow, Green, Cyan, Blue and Magenta color detected in the input image object demo: Im = imread('a.jpg'); Im_ColorLayer = color_detection_by_hue(Im); imshow(Im_ColorLayer.black);

Tracking yellow color in matlab

The following Matlab project contains the source code and Matlab examples used for tracking yellow color. When we are using RGB color space,we can differentiate between the red,blue and green color. But when comes to detecting yellow color, this code will detect yellow color in RGB color space. I hopw this would help.

Pages

Subscribe to RSS - Color