2012-02-13 13 views
5

私は質問があります。2D numpy ndarraysの交差

私はOpenCV凸包であるnumpy配列を2つ持っています。ループの作成や画像の作成、およびnumpy.bitwise_andの実行を行わずに交差をチェックしたいと思います。どちらもPythonではかなり遅いです。配列は次のようになります。

[[[x1 y1]] 
[[x2 y2]] 
[[x3 y3]] 
... 
[[xn yn]]] 

考慮すると、[[X1 Y1は]] 1つの要素として、私は2つのnumpyのndarraysとの交点を実行したいです。どうやってやるの?私は似たような性質の質問をいくつか見つけましたが、そこからの解決策を理解することはできませんでした。

ありがとうございます!

答えて

0

だから、これは私が仕事を得るために何をしたかである:

import Polygon, numpy 

# Here I extracted and combined some contours and created a convex hull from it. 
# Now I wanna check whether a contour acquired differently intersects with this hull or not. 

for contour in contours: # The result of cv2.findContours is a list of contours 
    contour1 = contour.flatten() 
    contour1 = numpy.reshape(contour1, (int(contour1.shape[0]/2),-1)) 
    poly1 = Polygon.Polygon(contour1) 

    hull = hull.flatten() # This is the hull is previously constructued 
    hull = numpy.reshape(hull, (int(hull.shape[0]/2),-1)) 
    poly2 = Polygon.Polygon(hull) 

    if (poly1 & poly2).area()<= some_max_val: 
     some_operations 

私はforループを使用していました、期待した結果が得られますが、これは少し面倒です。より良い方法があれば幸いです!

1

あなたはここに、http://pypi.python.org/pypi/Polygon/2.0.4を使用することができますが例です。

>>> import Polygon 
>>> a = Polygon.Polygon([(0,0),(1,0),(0,1)]) 
>>> b = Polygon.Polygon([(0.3,0.3), (0.3, 0.6), (0.6, 0.3)]) 
>>> a & b 
Polygon: 
    <0:Contour: [0:0.60, 0.30] [1:0.30, 0.30] [2:0.30, 0.60]> 

ポリゴン小数点形式にcv2.findContoursの結果を変換するには、次のことができます。

points1 = contours[0].reshape(-1,2) 

これから形状を変換します(N、1,2)から(N、2)

import Polygon 
import cv2 
import numpy as np 
from scipy.misc import bytescale 

y, x = np.ogrid[-2:2:100j, -2:2:100j] 

f1 = bytescale(np.exp(-x**2 - y**2), low=0, high=255) 
f2 = bytescale(np.exp(-(x+1)**2 - y**2), low=0, high=255) 


c1, hierarchy = cv2.findContours((f1>120).astype(np.uint8), 
             cv2.cv.CV_RETR_EXTERNAL, 
             cv2.CHAIN_APPROX_SIMPLE) 

c2, hierarchy = cv2.findContours((f2>120).astype(np.uint8), 
             cv2.cv.CV_RETR_EXTERNAL, 
             cv2.CHAIN_APPROX_SIMPLE) 


points1 = c1[0].reshape(-1,2) # convert shape (n, 1, 2) to (n, 2) 
points2 = c2[0].reshape(-1,2) 

import pylab as pl 
poly1 = pl.Polygon(points1, color="blue", alpha=0.5) 
poly2 = pl.Polygon(points2, color="red", alpha=0.5) 
pl.figure(figsize=(8,3)) 
ax = pl.subplot(121) 
ax.add_artist(poly1) 
ax.add_artist(poly2) 
pl.xlim(0, 100) 
pl.ylim(0, 100) 

a = Polygon.Polygon(points1) 
b = Polygon.Polygon(points2) 
intersect = a&b # calculate the intersect polygon 

poly3 = pl.Polygon(intersect[0], color="green") # intersect[0] are the points of the polygon 
ax = pl.subplot(122) 
ax.add_artist(poly3) 
pl.xlim(0, 100) 
pl.ylim(0, 100) 
pl.show() 

出力:あなたはこのようなintersect1d機能を単一の次元として、配列のビューを使用することができます

enter image description here

+0

この方法は本当に高速ですか?キャプチャするたびに各フレームの交差をチェックしておく必要があり、システムリソースはあまり高くありません。 –

+0

opencvの輪郭または凸包からポリゴンを作成しようとすると、これは私が受け取るエラーです。 'cPolygon.Error:操作のポリゴンまたは輪郭が無効です ' 指定したフォーマットは、私の元の投稿に掲載されています)。私はいくつかの修正が必要かもしれないと仮定しますが、それがどのように行われるのか想像できません。 –

+0

サンプルデータを投稿してください。 – HYRY

9

:これは、各配列のビューを作成します

def multidim_intersect(arr1, arr2): 
    arr1_view = arr1.view([('',arr1.dtype)]*arr1.shape[1]) 
    arr2_view = arr2.view([('',arr2.dtype)]*arr2.shape[1]) 
    intersected = numpy.intersect1d(arr1_view, arr2_view) 
    return intersected.view(arr1.dtype).reshape(-1, arr1.shape[1]) 

、変更各行は1組の値になります。その後、交差を実行し、結果を元の形式に戻します。ここではそれを使用しての例です:

test_arr1 = numpy.array([[0, 2], 
         [1, 3], 
         [4, 5], 
         [0, 2]]) 

test_arr2 = numpy.array([[1, 2], 
         [0, 2], 
         [3, 1], 
         [1, 3]]) 

print multidim_intersect(test_arr1, test_arr2) 

これが印刷されます。

[[0 2] 
[1 3]] 
+0

ありがとうございました!周囲のすべての点がnumpyの配列であれば、これは完璧です。しかし、凸包では、ガイドとしていくつかの点しか渡されないと思います。しかし、この場合の交点は、両方の領域で共通の値であり、numpy配列自体の中では共通ではない可能性があります。私はちょうど私のポストを読んで、私はこれについて全く言及しなかったことに気付いた。ごめんなさい。 –

+0

numpyでビューを適用すると、次のようになります。 [[[(x1、)(y1、)]] [[(x2、)(y2、)]] ... [[ (x1、y1)、(x2、y2)、(x3、y3)、...、(xn、yn)]]] [ アイデア –

+0

何らかの理由で余分な軸がありますか?あなたは '' test_arr1.reshape(len(test_arr1)、2) ''で最初にそれを再構成できますか?それはコピーを避けるでしょう。 – jterrace

0

)トレーニングとテストデータとの間の重なりを見つけようとしてUdacity deep learning class(と協力しながら、私はこの記事に出くわした

jiterraceの答えに触発さ。

私は "view"に精通しておらず、理解しにくい構文を見つけました。おそらく、 "テーブル"で考える友達と通信しようとしたときと同じです。 私のアプローチは、基本的に、形状(N、X、Y)のn配列を形状(N、X * Y、1)に平面化/変形することです。

print(train_dataset.shape) 
print(test_dataset.shape) 
#(200000L, 28L, 28L) 
#(10000L, 28L, 28L) 

1)。インナージョーン(理解しやすく、遅い)

%%timeit -n 1 -r 1 
def multidim_intersect_df(arr1, arr2): 
    p1 = pd.DataFrame([r.flatten() for r in arr1]).drop_duplicates() 
    p2 = pd.DataFrame([r.flatten() for r in arr2]).drop_duplicates() 
    res = p1.merge(p2) 
    return res 
inters_df = multidim_intersect_df(train_dataset, test_dataset) 
print(inters_df.shape) 
#(1153, 784) 
#1 loop, best of 1: 2min 56s per loop 

2)。 SET INTERSECTION(高速)

%%timeit -n 1 -r 1 
def multidim_intersect(arr1, arr2): 
    arr1_new = arr1.reshape((-1, arr1.shape[1]*arr1.shape[2])) # -1 means row counts are inferred from other dimensions 
    arr2_new = arr2.reshape((-1, arr2.shape[1]*arr2.shape[2])) 
    intersected = set(map(tuple, arr1_new)).intersection(set(map(tuple, arr2_new))) # list is not hashable, go tuple 
    return list(intersected) # in shape of (N, 28*28) 

inters = multidim_intersect(train_dataset, test_dataset) 
print(len(inters)) 
# 1153 
#1 loop, best of 1: 34.6 s per loop