where is the assised function in the example of using cycle-GAN denoise?
조회 수: 1 (최근 30일)
이전 댓글 표시
How can i acquire the assied function (@concatenateMiniBatchLD2HDCT) in follwing link? Thanks~
댓글 수: 0
답변 (2개)
KH TOHIDUL ISLAM
2023년 1월 18일
function [out1,out2] = concatenateMiniBatchLD2HDCT(im1,im2)
% concatenateMiniBatchLD2HDCT - Concatenates the input minibatch for training
% Copyright 2021 The MathWorks, Inc.
out1 = cat(4,im1{:});
out2 = cat(4,im2{:});
end
댓글 수: 0
Steven Lord
2023년 1월 18일
In general, to access helper functions for an example you should open the example in MATLAB (either your desktop installation of MATLAB or MATLAB Online.) If you do, MATLAB will change the current directory to the example's directory which contains the helper function and you can open, run, or view the helper function. You can open the example using the button near the upper-right corner of the page.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!