セマンティックセグメンテーションのための画像抽出
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
セマンティックセグメンテーションのためのデータセットを用意するためにデータ数を増やすために上のURLを参考に解析を行ったところ評価が出来なかったため,元データと教師データの2枚の画像から同じ箇所をランダムに抽出し,保存したいと考えています.以下に1枚の場合のコードを示します.
clear all;
close all;
A = imread('13.jpg');
%imshow(A)
targetSize = [360 480];
figure;
for i=1:10
wini = randomCropWindow2d(size(A),targetSize);
Bi = imcrop(A,wini);
imshow(Bi)
%pause(.3)
filename=['image13_',num2str(i),'.jpg'];
imwrite(Bi,filename)
end
0 commentaires
Réponse acceptée
Kenta
le 18 Jan 2020
こんにちは、以下のようにすれば、ご質問にある内容はできます。添付にある、画像2つを名前はそのままで保存していただき、下のコードを実行するとできます。ちなみにこちらの表面は何のちがいをもとにラベリングされているのでしょうか?
clear;clc;close all;
A = imread('1.jpg');
L = imread('(1).jpg');
%imshow(A)
targetSize = [360 480];
figure;
for i=1:10
wini = randomCropWindow2d(size(A),targetSize);
Bi = imcrop(A,wini);
Li = imcrop(L,wini);
imshowpair(Bi,Li,'montage')
pause(.3)
filename=['image13_',num2str(i),'.jpg'];
% imwrite(Bi,filename)
end
3 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Image Processing Toolbox 入門 dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!