Maintain Native Pixel Dimensions with an image

1 visualización (últimos 30 días)
Tayler
Tayler el 17 de Abr. de 2014
Respondida: Image Analyst el 18 de Abr. de 2014
Whenever I create an image the upscales to fit the axes. How do I keep the same image size. The image is 70x70 pixels and is being used in a drag and drop fashion. Here is the code:
function startmove(img, evnt, main, dimension)
gui = get(gcf, 'UserData');
% Remove mouse pointer set(gcf,'PointerShapeCData',nan(16,16)); set(gcf,'Pointer','custom'); a = axes('parent', main, 'units', 'normalize',... 'position', [0, 0, 1,1]); set(img, 'parent', a); axis off

Respuestas (1)

Image Analyst
Image Analyst el 18 de Abr. de 2014
Maybe try this
imshow(yourImage, 'InitialMagnification', 100);

Categorías

Más información sobre Images en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by