i am working on project of edge detection and i am using fuzzy logic the problem i am facing is that i want to detect the without using rgb colour code ,means i want to detect the edge and also i want that the color of the image also appear in output
1 view (last 30 days)
Show older comments
Igray = 0.2989*Irgb(:,:,1)+0.5870*Irgb(:,:,2)+0.1140*Irgb(:,:,3);
figure image(Igray,'CDataMapping','scaled'); colormap('gray') title('Input Image in Grayscale') I = double(Igray); classType = class(Igray);
0 Comments
Answers (1)
Image Analyst
on 15 Oct 2017
Try the edge() function on the gray scale image.
3 Comments
Image Analyst
on 15 Oct 2017
Call the Mathworks. The edge() function should definitely work. Does it throw an error when you call it, like it says there is no such function? Tech support can help you reinstall and walk you through a simple example to make sure that edge() works, and that you have a license to use the Image Processing Toolbox. What does this say
>> which -all edge
It will show if you have some other m-file, like one you wrote, that is causing the built-in edge() function to not work.
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!