Computing Color Gaussian Kernel

2 次查看(过去 30 天)
Algorithms Analyst
Algorithms Analyst 2013-2-18
Can anybody help me how to compute the color Gaussian Kernel described in the paper.I am confused what is Uj and Uk.
Thanks
  2 个评论
José-Luis
José-Luis 2013-2-18
编辑:José-Luis 2013-2-18
What have you done so far? What specific Matlab problems have you encountered in your implementation? Do you seriously expect someone to read a Paper and give you the code? For that please try the file exchange. Otherwise, people generally get paid for such tasks.
Algorithms Analyst
Algorithms Analyst 2013-2-18
I am not expecting from anyone to implement it.As I have impelemnt it uptill Spatial Gaussian Kernel.Just need to get idea what is Uk and Uj for computing Color Gassian Kernel?For color Quantization I transformed rgbimage into YUV color space and then I selected only two of them U and V as described in the paper then I reduce UV image using Kmeans algorithm upto 40 after that I computer Spatial Gaussian Kernel now the Problem is how to compute du and dv as they did not described in detail what is Uk and UJ?I assumed they are two different clusters in U image?thats why i need to clear myself.
Thanks.

请先登录,再进行评论。

回答(1 个)

Image Analyst
Image Analyst 2013-2-18
You compute the YUV image from the RGB image. The Uk and Uj are just pixel values from the U image, taken from different locations, location j and location k. They are not clusters.
  15 个评论
Algorithms Analyst
Algorithms Analyst 2013-2-20
But if you have time then you can guide me.AS you told I did it like that
Image=imread('Uimage');
imageWidth = size(image, 2);
imageHeight = size(image, 1);
windowWidth = 100;
windowHeight = 100;
for j = 1:imageHeight - windowHeight + 1
for i = 1:imageWidth - windowWidth + 1
slidingwindow = image(j:j + windowHeight - 1, i:i + windowWidth - 1, :);
end
end
%%Now I got the sliding window and need to compute the centre pixels
center_pixels=floor(([x y z]+1)/2);
[pixelsrow pixelscol]=size(centre_pixel);
for windowrow=-1:1 row=pixelsrow+windowrow;
for windowcol=-1:1
col=pixelscol+windowcol
Uk=UImage(row);
Uj=UImage(col); end end
Thankyou once again for you concern.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Image Processing Toolbox 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by