i'm trying to display edge image(using Canny edge detector) in axes(axes4). The code below work out, but somehow the edge image is displayed in blue-ish
axes(handles.axes4);
imh=image(CannyImage1);
resultImage=CannyImage1;
axis off;
axis image;
guidata(hObject, handles);
get(handles.axes4);
i need to make the resulted image become more clearer(the edge become more obvious) as the image was intended for display. help me understand why the image turn out like that and please suggest idea to fix it(back to basic black and white edge image)...Thank you...