<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>nasのブログ</title>
<link>https://ameblo.jp/nasubinet/</link>
<atom:link href="https://rssblog.ameba.jp/nasubinet/rss20.xml" rel="self" type="application/rss+xml" />
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com" />
<description>ブログの説明を入力します。</description>
<language>ja</language>
<item>
<title>ahrgauhfgoairj</title>
<description>
<![CDATA[ <p>&lt;HTML&gt;<br>&lt;BODY&gt;<br>&lt;input type="date" name="example" value="2012-02-16"&gt;<br>&lt;button id="botan" onclick="namechange();"&gt;下の文字を変えます。&lt;/button&gt;<br>&lt;font id="button1"&gt;名前を変えます。&lt;/font&gt;<br><br>&lt;button onclick="namechange2();"&gt;ああああ&lt;/button&gt;<br>&lt;font id="button2"&gt;名前を変えます。&lt;/font&gt;<br><br>&lt;script type="text/javascript"&gt;<br><br>var count=0;<br>var count2=0;<br><br>function namechange(){<br>&nbsp;&nbsp; &nbsp;var temp=document.getElementById("button1");<br>&nbsp;&nbsp; &nbsp;++count;<br>&nbsp;&nbsp; &nbsp;temp.innerHTML="名前変更しました。"+count+"回目";<br>}<br><br>function namechange2(){<br>&nbsp;&nbsp; &nbsp;var temp=document.getElementById("botan");<br>&nbsp;&nbsp; &nbsp;++count2;<br>&nbsp;&nbsp; &nbsp;temp.innerHTML="うううう"+count2+"回目";<br>}<br>&lt;/script&gt;<br><br><br>&lt;/BODY&gt;<br>&lt;/HTML&gt;</p><p>---------------------------------------------------------</p><p>&lt;html&gt;<br>&lt;body&gt;<br><br>&lt;p&gt;&lt;label&gt;&lt;input type="text" id="task"&gt;タスク&lt;/label&gt;&lt;/p&gt;<br>&lt;p&gt;&lt;li&gt;期限&lt;input type="date" name="nouki" value=today&gt;&lt;br&gt;&lt;/p&gt;<br>&lt;p&gt;&lt;li&gt;時刻&lt;select name="sime"&gt;&lt;br&gt;&lt;/p&gt;<br>&nbsp;&lt;option value="s1"&gt;午前中&lt;/option&gt;<br>&nbsp;&lt;option value="s2"&gt;定時&lt;/option&gt;<br>&nbsp;&lt;option value="s3" selected&gt;指定なし&lt;/option&gt;<br>&lt;/select&gt;<br>&lt;p&gt;&lt;li&gt;ジャンル&lt;select name="janl"&gt;&lt;br&gt;&lt;/p&gt;<br>&nbsp;&lt;option value="s1" selected&gt;メイン&lt;/option&gt;<br>&nbsp;&lt;option value="s2"&gt;その他&lt;/option&gt;<br>&nbsp;&lt;option value="s3"&gt;雑務&lt;/option&gt;<br>&lt;/select&gt;<br>&lt;p&gt;&lt;li&gt;やりたい度&lt;select name="yaruki"&gt;&lt;br&gt;&lt;/p&gt;<br>&nbsp;&lt;option value="s1"&gt;高&lt;/option&gt;<br>&nbsp;&lt;option value="s2" selected&gt;ふつう&lt;/option&gt;<br>&nbsp;&lt;option value="s3"&gt;低&lt;/option&gt;<br>&lt;/select&gt;<br>&lt;/p&gt;<br>&lt;/body&gt;<br>&lt;/html&gt;</p><p>--------------------------------------------------</p><p>&lt;html&gt;<br>&lt;head&gt;<br>&lt;/head&gt;<br>&lt;body&gt;<br><br>&lt;input type="file" name="select" id="select" /&gt;<br>&lt;div id="result"&gt;&lt;/div&gt;<br><br>&lt;script type="text/javascript" language="JavaScript"&gt;<br>&nbsp; &nbsp; // File APIに対応しているか確認<br>if(window.File) {<br>&nbsp; &nbsp; var result = document.getElementById('result');<br>&nbsp; &nbsp; var select = document.getElementById('select');<br>&nbsp;<br>&nbsp; &nbsp; // ファイルが選択されたとき<br>&nbsp; &nbsp; select.addEventListener('change', function(e) {<br>&nbsp; &nbsp; &nbsp; &nbsp; // 選択されたファイルの情報を取得<br>&nbsp; &nbsp; &nbsp; &nbsp; var fileData = e.target.files[0];<br>&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; var reader = new FileReader();<br>&nbsp; &nbsp; &nbsp; &nbsp; // ファイル読み取りに失敗したとき<br>&nbsp; &nbsp; &nbsp; &nbsp; reader.onerror = function() {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; alert('ファイル読み取りに失敗しました')<br>&nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; // ファイル読み取りに成功したとき<br>&nbsp; &nbsp; &nbsp; &nbsp; reader.onload = function() {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // 行単位で配列にする<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var lineArr = reader.result.split("\n");<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // 行と列の二次元配列にする<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var itemArr = [];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for (var i = 0; i &lt; lineArr.length; i++) {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; itemArr[i] = lineArr[i].split(",");<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // tableで出力<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var insert = '&lt;table&gt;';<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for (var i = 0; i &lt; itemArr.length; i++) {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; insert += '&lt;tr&gt;';<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for (var j = 0; j &lt; itemArr[i].length; j++) {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; insert += '&lt;td&gt;';<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; insert += itemArr[i][j];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; insert += '&lt;/td&gt;';<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; insert += '&lt;/tr&gt;';<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; insert += '&lt;/table&gt;';<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; result.innerHTML = insert;<br>&nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; // ファイル読み取りを実行<br>&nbsp; &nbsp; &nbsp; &nbsp; reader.readAsText(fileData,'Shift_JIS');<br>&nbsp; &nbsp; }, false);<br>}<br>&lt;/script&gt;<br>&lt;/body&gt;<br>&lt;/html&gt;</p><p>---------------------------------------------------</p><p>&nbsp;</p>
]]>
</description>
<link>https://ameblo.jp/nasubinet/entry-12319943217.html</link>
<pubDate>Mon, 16 Oct 2017 08:08:13 +0900</pubDate>
</item>
<item>
<title>うぇ</title>
<description>
<![CDATA[ <p>&lt;HTML&gt;<br>&lt;BODY&gt;<br><br>&lt;button onclick="namechange();"&gt;下の文字を変えます。&lt;/button&gt;<br>&lt;font id="button1"&gt;名前を変えます。&lt;/font&gt;<br><br>&lt;script type="text/javascript"&gt;<br><br>var count=0;<br><br>function namechange(){<br>&nbsp;&nbsp; &nbsp;var temp=document.getElementById("button1");<br>&nbsp;&nbsp; &nbsp;++count;<br>&nbsp;&nbsp; &nbsp;temp.innerHTML="名前変更しました。"+count+"回目";<br>}<br><br>&lt;/script&gt;<br><br><br>&lt;/BODY&gt;<br>&lt;/HTML&gt;</p><p>&nbsp;</p><p><a href="http://bituse.info/js/6">http://bituse.info/js/6</a></p>
]]>
</description>
<link>https://ameblo.jp/nasubinet/entry-12318540729.html</link>
<pubDate>Wed, 11 Oct 2017 07:10:09 +0900</pubDate>
</item>
<item>
<title>よみこみ</title>
<description>
<![CDATA[ <p>clear all;<br>homedir=pwd;<br>imgdir = uigetdir;%フォルダをひらく<br>allflist = dir(imgdir);%全部のファイルリスト<br>csvlist = cell(size(allflist,1),1);<br>bmplist = cell(size(allflist,1),1);<br>for n=1:size(allflist,1)%ファイルリストをサーチ<br>&nbsp;try<br>&nbsp; if(strcmp(allflist(n).name(end-3:end),'.csv') || strcmp(allflist(n).name(end-3:end),'.CSV'))%csvファイルを個別に抽出<br>&nbsp; &nbsp;for m=1:size(allflist,1)%<br>&nbsp; &nbsp; try<br>&nbsp; &nbsp; &nbsp;if(strcmp(allflist(n).name(1:end-4),allflist(m).name(1:end-4)) &amp;&amp; strcmp(allflist(m).name(end-3:end),'.bmp'))<br>&nbsp; &nbsp; &nbsp; csvlist(n,1)=allflist(n).name;disp(allflist(n).name(1:end-4));<br>&nbsp; &nbsp; &nbsp;end<br>&nbsp; &nbsp; catch<br>&nbsp; &nbsp; end<br>&nbsp; &nbsp;end<br>&nbsp; end<br>&nbsp;catch<br>&nbsp;end<br>end</p>
]]>
</description>
<link>https://ameblo.jp/nasubinet/entry-12309694878.html</link>
<pubDate>Mon, 11 Sep 2017 08:16:20 +0900</pubDate>
</item>
<item>
<title>グラボ戦闘力</title>
<description>
<![CDATA[ <p>戦闘力抜粋　<a href="https://www.videocardbenchmark.net/directCompute.html">https://www.videocardbenchmark.net/directCompute.html</a>より<br><br>1080Ti&nbsp;&nbsp; &nbsp;9484<br>1080&nbsp;&nbsp; &nbsp;8084<br>1070&nbsp;&nbsp; &nbsp;6701<br>1060&nbsp;&nbsp; &nbsp;5021<br>1050Ti&nbsp;&nbsp; &nbsp;3256<br>1050&nbsp;&nbsp; &nbsp;2751<br>980&nbsp;&nbsp; &nbsp;5138<br>780&nbsp;&nbsp; &nbsp;3973<br>660&nbsp;&nbsp; &nbsp;1951<br><br><br>P6000&nbsp;&nbsp; &nbsp;8100<br>P5000&nbsp;&nbsp; &nbsp;6646<br>M6000&nbsp;&nbsp; &nbsp;5499<br>P4000&nbsp;&nbsp; &nbsp;5227<br>P2000&nbsp;&nbsp; &nbsp;3908<br>M4000&nbsp;&nbsp; &nbsp;2757<br>K2200&nbsp;&nbsp; &nbsp;1701<br>C2070&nbsp;&nbsp; &nbsp;1321</p>
]]>
</description>
<link>https://ameblo.jp/nasubinet/entry-12308681243.html</link>
<pubDate>Thu, 07 Sep 2017 22:25:36 +0900</pubDate>
</item>
<item>
<title>学習画像</title>
<description>
<![CDATA[ <p><a href="https://medium.com/ai-business/public-data-from-google-acdd140748dc">https://medium.com/ai-business/public-data-from-google-acdd140748dc</a></p><p>&nbsp;</p><p><a href="https://github.com/arXivTimes/arXivTimes/tree/master/datasets">https://github.com/arXivTimes/arXivTimes/tree/master/datasets</a></p><p>&nbsp;</p><p><a href="https://robotvault.bitbucket.io/scenenet-rgbd.html">https://robotvault.bitbucket.io/scenenet-rgbd.html</a></p><p>&nbsp;</p><p><a href="http://ibisforest.org/index.php?DataSet">http://ibisforest.org/index.php?DataSet</a></p><p>&nbsp;</p><p><a href="http://qiita.com/nonbiri15/items/f5c5c4357458bfeb03bb">http://qiita.com/nonbiri15/items/f5c5c4357458bfeb03bb</a></p><p>&nbsp;</p><p>&nbsp;</p>
]]>
</description>
<link>https://ameblo.jp/nasubinet/entry-12307836899.html</link>
<pubDate>Tue, 05 Sep 2017 07:55:32 +0900</pubDate>
</item>
<item>
<title>画像を切り取って保存する</title>
<description>
<![CDATA[ <p><span style="font-size:1.4em;">画像を切り取って保存する。</span></p><p>&nbsp;</p><p>%% 初期設定<br>clear all<br>cropedsave = 1;%切り取った画像を保存する<br><br>%% フォルダから読み込む。<br>homedir=pwd;<br>imgdir = uigetdir;%フォルダをひらく<br>if(cropedsave==1)<br>&nbsp; &nbsp; croppedfolder=inputdlg('切り取り画像フォルダ名は？','Input');if(isempty(croppedfolder));croppedfolder='cropped';end;<br>&nbsp; &nbsp; cd(imgdir);mkdir(croppedfolder);cd(croppedfolder);<br>end<br>flist = imageSet(imgdir);%画像ファイルリスト取り込み<br>imgs = cell(flist.Count,1);%ファイルパス格納用<br>rect = zeros(flist.Count,4);%座標格納用<br>n=1;<br>for m=1:flist.Count%フォルダの画像ファイルを全部処理<br>&nbsp; &nbsp; [cimg,crect] = imcrop(imread(cell2mat(flist.ImageLocation(m))));%トリミング<br>&nbsp; &nbsp; if(isempty(cimg)==0)<br>&nbsp; &nbsp; rect(n,1:4)=round(crect);%imcropは小数ででてくるので。<br>&nbsp; &nbsp; imgs(n,1)=flist.ImageLocation(m);%ファイルパスを記録<br>&nbsp; &nbsp; if(cropedsave==1);[~,fn,ext]=fileparts(cell2mat(flist.ImageLocation(n)));imwrite(cimg,[fn '_c' ext],'bmp');end;<br>&nbsp; &nbsp; n=n+1;<br>&nbsp; &nbsp; end<br>end<br>imset = table(imgs,rect);%テーブル形式に変換。<br>imset(n:end,:)=[];%空行列を削除<br>cd(homedir);<br>save([imgdir(max(strfind(imgdir,'\'))+1:end) '.mat'],'imset');<br>close all;</p>
]]>
</description>
<link>https://ameblo.jp/nasubinet/entry-12305578101.html</link>
<pubDate>Mon, 28 Aug 2017 23:26:29 +0900</pubDate>
</item>
<item>
<title>NaN</title>
<description>
<![CDATA[ NaN
]]>
</description>
<link>https://ameblo.jp/nasubinet/entry-11482860012.html</link>
<pubDate>Sun, 03 Mar 2013 22:41:58 +0900</pubDate>
</item>
</channel>
</rss>
