Maintain Native Pixel Dimensions with an image

조회 수: 1 (최근 30일)
Tayler
Tayler 2014년 4월 17일
답변: Image Analyst 2014년 4월 18일
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

답변 (1개)

Image Analyst
Image Analyst 2014년 4월 18일
Maybe try this
imshow(yourImage, 'InitialMagnification', 100);

카테고리

Help CenterFile Exchange에서 Images에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by