U-Net shallow or deep?

5 ビュー (過去 30 日間)
Gobert
Gobert 2020 年 9 月 27 日
回答済み: Walter Roberson 2022 年 6 月 12 日
Is U-Net "shallow" or "deep"?

採用された回答

Walter Roberson
Walter Roberson 2022 年 6 月 12 日
It is a convolutional network, and those are always considered "deep"

その他の回答 (1 件)

kimem
kimem 2022 年 6 月 9 日
clc;
clear all;
close all;
gestdatabase;
vid = videoinput('winvideo', 1, 'YUY2_640x480'); %specify the video adaptor
src = getselectedsource(vid);
vid.ReturnedColorspace = 'grayscale'; %define the color format to GRAYSCALE
vid.FramesPerTrigger = 5;
preview(vid); %preview the video object
while(1)
preview(vid); %preview the video object
gesture=getsnapshot(vid); %capture the image of interest
for i=1:30
J{i}=corr2(gesture,gest1Cell{i});
L{i}=corr2(gesture,gest2Cell{i});
end
greatestJ=cellfun(@(a) max(a(:)),J);
R = max(greatestJ(1,:));
greatestL=cellfun(@(b) max(b(:)),L);
S = max(greatestL(1,:));
H = [R,S];
G= max(H);
if ((G==R)&&(G>0.55))
display('FORWARD');
elseif ((G==S)&&(G>0.55))
display('BACKWARD');
else
display('NO MOTION');
end
end
  2 件のコメント
Walter Roberson
Walter Roberson 2022 年 6 月 9 日
How does this answer the question?
Gobert
Gobert 2022 年 6 月 12 日
I have the same question. That code has nothing to do with the question asked

サインインしてコメントする。

Community Treasure Hunt

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

Start Hunting!

Translated by