Azzera filtri
Azzera filtri

Maintain Native Pixel Dimensions with an image

1 visualizzazione (ultimi 30 giorni)
Tayler
Tayler il 17 Apr 2014
Risposto: Image Analyst il 18 Apr 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

Risposte (1)

Image Analyst
Image Analyst il 18 Apr 2014
Maybe try this
imshow(yourImage, 'InitialMagnification', 100);

Categorie

Scopri di più su Images in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by