how do I use Alphadata commands for image on GUIDE

조회 수: 1 (최근 30일)
vidya
vidya 2014년 12월 15일
댓글: Image Analyst 2014년 12월 15일
Dear Matlab expert group,
I am relatively new to matlab image processing and guide. I am struggling to use alphadata commands for image processing purposes in GUIDE. Please can someone share any information about the same. I have attached the initial figure and matlab file for your information. I was able to select an image and display it on an axes using the following
[fileinfo pathinfo] = uigetfile('*.*','File Selector');
image = strcat(pathinfo, fileinfo);
jpgimage = imread(image);
axes(handles.axes1);
x = imshow(jpgimage);
I am failing to add alphadata commands for a pushbutton that can be used to create a layer of alphadata on the existing image. I have put the commands below.
>> q = zeros(size(jpgimage));
>> q(:,:,:)=0.6;
>> PSF = fspecial('disk', 5);
>> Blurred = imfilter(q, PSF,'circular','conv' );
>> [r,c,~] = size(jpgimage);
>> [X Y] = meshgrid(1:r,1:c);
>> Z = mvnpdf([X(:) Y(:)], [r c]./2, diag(50.*[r c]));
>> Z = (Z-min(Z(:)))./range(Z(:));
>> Z = reshape(Z',[c r])';
>> fh = figure;
>> imshow(jpgimage,'Border','tight'), hold on
>> hImg = imshow(q,'Border','tight'); hold on
>> set(hImg, 'AlphaData',Z);
Thanks a lot for the help.
Kind Regards, Vidya

답변 (2개)

Image Analyst
Image Analyst 2014년 12월 15일

vidya
vidya 2014년 12월 15일
Dear Image Analyst,
Please can you share basic steps to perform alphadata action on image in a graphic user interphase environment. Thanks a lot for the links.
Kind Regards,
Vidya
  댓글 수: 1
Image Analyst
Image Analyst 2014년 12월 15일
I don't know what that environment is. Don't Steve's commands work in that environment?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by