Skip to content

Instantly share code, notes, and snippets.

@unot
unot / index.html
Last active August 29, 2015 14:22
情報処理研修資料

情報処理研修

発表者:細木、宇埜


目次

  • 情報処理基礎
  • 画像処理
@unot
unot / meanLab.sh
Created November 10, 2015 06:08
calculate mean values of multiple Lab files.
#!/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
@unot
unot / 0_reuse_code.js
Created November 20, 2015 08:04
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@unot
unot / 01_aggregation.py
Created November 30, 2015 08:16 — forked from mia-0032/01_aggregation.py
Pythonで基本的な統計量を出力してみる
# -*- 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)
@unot
unot / cv2trackbar_test.py
Created February 16, 2023 08:04
a test script for OpenCV trackbar
from matplotlib import pyplot as plt
import numpy as np
import cv2
import sys
def printing(position):
#print(position)
return
@unot
unot / StringToHexConverterForm1.cs
Last active July 28, 2024 10:58
入力文字列を、指定された文字数にスペース埋めした後に16進数ASCIIコードに変換、2文字ずつスペースで連結
using System;
using System.Windows.Forms;
namespace StringToHexConverter
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();