発表者:細木、宇埜
- 情報処理基礎
- 画像処理
| using System; | |
| using System.Windows.Forms; | |
| namespace StringToHexConverter | |
| { | |
| public partial class Form1 : Form | |
| { | |
| public Form1() | |
| { | |
| InitializeComponent(); |
| from matplotlib import pyplot as plt | |
| import numpy as np | |
| import cv2 | |
| import sys | |
| def printing(position): | |
| #print(position) | |
| return |
| # -*- coding:utf-8 -*- | |
| import numpy | |
| from scipy import stats | |
| n = 200 | |
| #正規分布にあてはまる乱数を生成 | |
| score_x = numpy.random.normal(171.77, 5.54, n) | |
| score_y = numpy.random.normal(62.49, 7.89, n) |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| #!/bin/bash | |
| # calculate mean values of Lab | |
| # $ cat file1 | |
| # L1_1 a1_1 b1_1 | |
| # L1_2 a1_2 b1_2 | |
| # $ cat file2 | |
| # L2_1 a2_1 b2_1 | |
| # L2_2 a2_2 b2_2 | |
| # $ cat file3 | |
| # L3_1 a3_1 b3_1 |
| #!/bin/bash | |
| #for i in {0..16}; do | |
| # for j in {0..16}; do | |
| # for k in {0..16}; do | |
| # echo $(expr $i \* 16), $(expr $j \* 16), $(expr $k \* 16) | |
| # done | |
| # done | |
| #done |
| /** \file shading.cpp | |
| * \author unot | |
| * \date 2013/08/08 | |
| * */ | |
| #include <iostream> | |
| #include <string> | |
| #include <opencv2/imgproc/imgproc.hpp> | |
| #include <opencv2/highgui/highgui.hpp> |
| #!/gnuplot | |
| # | |
| # | |
| # G N U P L O T | |
| # Version 4.6 patchlevel 3 last modified April 2013 | |
| # Build System: MS-Windows 32 bit | |
| # | |
| # Copyright (C) 1986-1993, 1998, 2004, 2007-2013 | |
| # Thomas Williams, Colin Kelley and many others | |
| # |
| #!/bin/bash -e | |
| #trap "rm -f cmyk.csv rgb.txt" EXIT | |
| if [ $# -ne 1 ]; then | |
| echo "Usage: `basename $0` rgb_lab.h" | |
| exit 1 | |
| fi | |
| if [ ! -e "$1" ]; then |