필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

How can I set the generated figure into full screen and have it shown in projector without any white base or frame?

조회 수: 1 (최근 30일)
I am trying to create a program that can read a bmp image and have it patterned to be 3 in a row. Then move it from right to left at specific pixels per second. Then I need this to be shown in a projector. I already figured out how to generate the patterned image and moving at specific speed. But I still cannot make this program shown full-screen and also into the projector. I am very new to Matlab and coding. The finished program is here
I = imread('layer40.bmp'); %read image
resized = I(129-128:800,322:1280-320); %resize image
Blackimage = 0 * resized; %create black image as the same size
repeated = [Blackimage,Blackimage,resized,resized,resized,Blackimage,Blackimage];
figure;
for t = 0:14200
x = 1 + 6*t;
subimage = repeated(1:800, x:(x+1280));
imshow(subimage)
end
Could anyone help me out with the full screen and projection? I really appreciate any of your help!!

답변 (0개)

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by