MATLAB: Image with vertice and faces

facesImage Processing Toolboxpatchvertice

I have an image with vertices and faces. I can show it using patch(). The problem is how to use other functions on it? For example I want to use imsharpen().

Best Answer

patch() shows a patch in the graphical overlay. imsharpen() wants a digital image - an 2-D array of gray scale values. It has to be an actual image, not a graphical rendering ov some object above a graph. You need to create your synthetic image as a 2-D array of values.