ImageData Class 【ImageDataクラス】画像の輝度値のCSVファイル保存 画像処理をしていると、画像の輝度値をCSVファイルに保存したいという要望はよくあります。C#で画像の輝度値にアクセスしやすいようにしたImageDataクラスを作成しました。(Pythonで画像の輝度値をCSVファイルに保存したい場合はこち... 2016.03.19 ImageData Class
ImageData Class 【ImageDataクラス】Regionプロパティ 画像処理プログラムでは、画像の一部分のみを処理するROI(Region of Interest)という機能がよくあります。このROIを使うことで、必要な部分のみを処理したり、異なる2つの画像において、同じ領域を処理するために、このROIを指... 2016.03.19 ImageData Class
ImageData Class 【ImageDataクラス】画像の輝度値(画素値)の取得/設定 BorderTypeプロパティ、InterpolationModeプロパティのページでも少し紹介していますが、画像の輝度値を取得/設定するにはvar img = new ImagingSolution.Imaging.ImageData("... 2016.03.19 ImageData Class
ImageData Class 【ImageDataクラス】InterpolationModeプロパティ BorderTypeプロパティではインデクサをつかってvar img = new ImagingSolution.Imaging.ImageData("image.bmp");var bright = img;のように配列の添え字に相当する... 2016.03.19 ImageData Class
ImageData Class 【ImageDataクラス】BorderTypeプロパティ ImageDataクラスでは、C#のインデクサという機能を使って、new したImageDataクラスをオブジェクトをあたかも配列かのように扱うことができます。インデクサの例var img = new ImagingSolution.Ima... 2016.03.19 ImageData Class