コード例 #1
0
ファイル: test.py プロジェクト: phantomlsh/magnetic-tweezer
import numpy as np
import matplotlib.pyplot as plt
import time, mm, utils
import T as T

beads = []

circles = utils.HoughCircles(mm.Get(), 15, 30)
for c in circles:
    if (c[0] > 80 and c[0] < 680 and c[1] > 80 and c[1] < 500):
        beads.append(T.Bead(c[0], c[1]))

n = len(beads)
print(n, "Beads:", beads)

#T.test(beads, mm.Get())

x = np.arange(-2, 3)
y = 2 * x**2


def tiFitCenter(y0, y1, y2, y3, y4):
    a = (2 * y0 - y1 - 2 * y2 - y3 + 2 * y4) / 14
    b = -0.2 * y0 - 0.1 * y1 + 0.1 * y3 + 0.2 * y4
    return -b / a / 2


print(y)
print(tiFitCenter(y[0], y[1], y[2], y[3], y[4]))
コード例 #2
0
for i in range(20):
    img = np.ndarray(shape)
    simulate.Generate(50, 50, 50 + i, 4, img)
    imgc.append(img)
img = np.ndarray(shape)
simulate.Generate(50, 50, 60, 4, img)

maxn = 20
loopRange = range(1, maxn)

if (True):
    ts = []
    for loop in loopRange:
        beads = []
        for i in range(loop):
            beads.append(T.Bead(50, 50))

        T.XY(beads, img)

        for i in range(20):
            T.Calibrate(beads, [imgc[i]], i)

        T.ComputeCalibration(beads)
        T.XYZ(beads, img)
        print(beads[0])

        start = time.time()
        for i in range(100):
            T.XYZ(beads, img)
        ts.append(time.time() - start)