<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" version="2.0">
  <channel>
    <title>医用画像で画像処理をしてみる</title>
    <link>https://starship.asablo.jp/blog/</link>
    <description/>
    <language>ja</language>
    <generator>mc 0.0</generator>
    <pubDate>Mon, 11 Jan 2016 13:17:49 +0900</pubDate>
    <item>
      <title>まずはPythonのインストール</title>
      <link>https://starship.asablo.jp/blog/2016/01/11/7987637</link>
      <guid>https://starship.asablo.jp/blog/2016/01/11/7987637</guid>
      <pubDate>Mon, 11 Jan 2016 08:27:43 +0900</pubDate>
      <dcterms:modified>2016-01-11T13:17:49+09:00</dcterms:modified>
      <dcterms:created>2016-01-11T09:01:21+09:00</dcterms:created>
      <description>&lt;DIV class="asahi_editor_line"&gt;◆今回はPythonのインストールから、コマンドライン操作までを紹介&lt;BR&gt;&lt;BR&gt;Pythonは プログラミングが専門でない科学者，技術者の間で使われ始めているようです。&lt;BR&gt;その詳細な理由が次のWebサイトに書かれています。&lt;BR&gt;http://turbare.net/transl/scipy-lecture-notes/intro/intro.html&lt;BR&gt;「科学技術計算のために Python を始めよう。」&lt;BR&gt;&lt;BR&gt;このブログの執筆時点でPythonは2系と3系の2つのバージョンがある。&lt;BR&gt;この2つは文法の違いなどから互換性が乏しい。&lt;BR&gt;2系はメジャーリリースは終了しているので3系を選ぶところだが、&lt;BR&gt;本ブログでは、私が参考にしている本が2系を対象としているので、&lt;BR&gt;しばらくは2系でお話を進めていきます。&lt;BR&gt;ちなみにWindows版x86を使用します。&lt;BR&gt;&lt;BR&gt;必要があれば3系やx64、Unixに移るかもしれません。&lt;BR&gt;Pythonはまだ手探りなのでご容赦ください。&lt;BR&gt;&lt;BR&gt;◆Pythonのインストール&lt;BR&gt;Pythonダウンロードページ&lt;BR&gt;https://www.python.org/downloads/windows/&lt;BR&gt;・Python 2.7.11 - 2015-12-05&lt;BR&gt;　・Download Windows x86 MSI installer&lt;BR&gt;Windows版インストーラを使用して、簡単にできます。&lt;BR&gt;Matplotlib、Numpy、SciPyも必要になるのですが、また次回。&lt;BR&gt;&lt;BR&gt;◆Pythonを電卓にする&lt;BR&gt;まずは、動かして楽しんでみましょう。&lt;BR&gt;IDLE (Python GUI)を起動して、電卓のように使ってみます&lt;BR&gt;まずPythonインタプリンタを対話モードで操作してみましょう。&lt;BR&gt;&lt;/DIV&gt;&lt;DIV class="asahi_editor_line"&gt;&lt;DIV class="msg-pict-2" style="text-align: center;"&gt;&lt;IMG src="http://starship.asablo.jp/blog/img/2016/01/11/3ee33f.jpg" style="width: 300px; height: 181px; border: medium none;"&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="asahi_editor_line"&gt;&lt;BR&gt;次回はプログラムを作成します。&lt;BR&gt;&lt;BR&gt;==============================================================================&lt;BR&gt;The Python come into use scientists and technicians　who do not specialized in computer programing.&lt;BR&gt;The detailed reason is written on the next web site. (But only Japanese)&lt;BR&gt;http://turbare.net/transl/scipy-lecture-notes/intro/intro.html&lt;BR&gt;&lt;BR&gt;The Python has version 2.7 and 3.4. Grammar of these program are different .&lt;BR&gt;This Blog uses version 2.7 Windows x86. Because python 2.7 is compatible with  the many image processing application program (for example the OpenCV). &lt;BR&gt;If I have to use the 3.4 version, I will change to use it.&lt;BR&gt;&lt;BR&gt;= Installing Python =&lt;BR&gt;Download from the python website&lt;BR&gt;https://www.python.org/downloads/windows/&lt;BR&gt;・Python 2.7.11 - 2015-12-05&lt;BR&gt;　・Download Windows x86 MSI installer&lt;BR&gt;&lt;BR&gt;Let&amp;#x27;s use the python, like a calculator.&lt;BR&gt;Start the &amp;quot;Python (command line)&amp;quot;&lt;BR&gt;You can operate the python, like a calculator.&lt;BR&gt;(See the picture.)&lt;BR&gt;&lt;BR&gt;Next will be &amp;quot;the python programming&amp;quot;.&lt;BR&gt;&lt;/DIV&gt;
</description>
    </item>
    <item>
      <title>Python始めました == I began the Python ==</title>
      <link>https://starship.asablo.jp/blog/2015/12/19/7954548</link>
      <guid>https://starship.asablo.jp/blog/2015/12/19/7954548</guid>
      <pubDate>Sat, 19 Dec 2015 18:12:21 +0900</pubDate>
      <dcterms:modified>2015-12-20T19:03:21+09:00</dcterms:modified>
      <dcterms:created>2015-12-19T18:12:33+09:00</dcterms:created>
      <description>医用画像の標準フォーマットDICOM（Digital Imaging and Communication in Medicine : &lt;a href="http://dicom.nema.org/"&gt;http://dicom.nema.org/&lt;/a&gt;）を使った画像処理を実際に試してみるが本ブログの目的。&#13;&lt;br&gt;
某大学病院で診療放射線技師をしながら、画像処理の研究を行っている。&#13;&lt;br&gt;
&#13;&lt;br&gt;
Python(&lt;a href="https://www.python.org/)"&gt;https://www.python.org/)&lt;/a&gt;というプログラミング言語を使って画像表示やフィルタ処理を行い、素晴らしい画像処理ライブラリOpenCV(&lt;a href="http://opencv.org/)"&gt;http://opencv.org/)&lt;/a&gt;の使用をしてみる。さらには機械学習までを行ってみようと思っている。&#13;&lt;br&gt;
&#13;&lt;br&gt;
Pythonは、C言語と比較して少ない行数でプログラムを表現できると言われている。日本ではまだマイナーな言語であるが、ビッグデータなどのデータサイエンスの分野では広く使われている。&#13;&lt;br&gt;
つい最近までC言語を使って画像処理を行っていたが、本格的に機械学習研究を始めたら、Pythonのほうがすぐれていることに気が付いた。その特徴の一つに、統計や科学計算（なんと機械学習まで）など豊富なパッケージがそろっていることである。このパッケージを利用するだけで複雑な処理が簡単に行えるのだ（第３者による再現性が容易という点では研究に向いている）。&#13;&lt;br&gt;
例えば、画像処理に必要な行列演算がある。行列演算をC言語で行うには、作成にかなり骨が折れるのだが、PythonではNumpyというパッケージをインポートするだけで簡単に行えるようになるのだ。またC言語で挫折する人の多い、OpenCVのインストールも簡単だ（ちなみにOpenCVのＣ言語サポートは終了、C++はしている）。&#13;&lt;br&gt;
&#13;&lt;br&gt;
その他には統計計算で有名なR(&lt;a href="https://www.r-project.org/)"&gt;https://www.r-project.org/)&lt;/a&gt;や、C言語との連携も取れるので、なかなかすぐれていると言えるだろう。メモリ管理や複雑な参照を行わなくてもよい点がうれしい。&#13;&lt;br&gt;
&#13;&lt;br&gt;
まだPythonを始めたばかりなので、少しずつ勉強して記事を増やしていきたい。同じ研究をしている人達のためになればと思っている。&#13;&lt;br&gt;
&#13;&lt;br&gt;
======================================================&#13;&lt;br&gt;
Purpose of this blog is to write on the image processing using the DICOM (Digital Imaging and Communication in Medicine) standard.&#13;&lt;br&gt;
&#13;&lt;br&gt;
I&amp;#39;m learning the Python for image processing. Incidentally, My study was using C language. &#13;&lt;br&gt;
The Python is a widely used high-level programming language. I decided to learn the Python, because the python is more easy to handle for the machine learning than C language.&#13;&lt;br&gt;
&#13;&lt;br&gt;
The Python has many packages, including statistics and the scientific calculation, 　additionally the machine learning. Using these packages, We can easily create complex calculation program.&#13;&lt;br&gt;
&#13;&lt;br&gt;
I&amp;#39;ll try to use OpenCV and Machine learning using python.&#13;&lt;br&gt;
I hope that this blog helps for people the same study.&lt;br&gt;
</description>
    </item>
  </channel>
</rss>
