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