#CoordinateTransformation and SystemParameters
##header2-1
aaaa
aaaa
##header2-1
| <?php | |
| // This is just an example of reading server side data and sending it to the client. | |
| // It reads a json formatted text file and outputs it. | |
| //$string = file_get_contents("data.json"); | |
| //echo $string; | |
| // Instead you can query your database and parse into JSON etc etc |
| /* | |
| * | |
| State change detection (edge detection) | |
| http://www.arduino.cc/en/Tutorial/ButtonStateChange | |
| */ | |
| const int buttonPin = 3; | |
| const int outPin = 13; |
#CoordinateTransformation and SystemParameters
##header2-1
aaaa
aaaa
##header2-1
| #pragma once | |
| #include <fstream> | |
| #include "..\picojson.h" | |
| class ScanParams | |
| { | |
| private: | |
| std::string driletter; | |
| int mod; |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using SuperImposer; | |
| using System.IO; | |
| using OpenCvSharp; | |
| using OpenCvSharp.CPlusPlus; | |
| using System.Diagnostics; |
| # -*- coding: utf-8 -*- | |
| """ | |
| Created on 2016/02/05 | |
| @author: jyoshida-sci | |
| """ | |
| import scan0 | |
| import numpy as np |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using OpenCvSharp; | |
| using OpenCvSharp.CPlusPlus; | |
#OpenCV Python
##displaying_img.py Displaying all jpg-imgs in a directory in 7 ways; normal,R,G,B,H,S and V-channel
##e07_gridimg_negaimg.py and e373_negaimg.py creating gridimg and negaimg
##sobelmod.py and sobelapp.py
| import cv2 | |
| import glob | |
| import os | |
| import struct | |
| import numpy as np | |
| import pyTS | |
| import sys | |
| ######################## |