あを作りたいのですが。動きません。**
2つ作ったのですが。
どちらも動きません。
作ったプログラム
//////////////////////////////////////////////////
import os
import cv2
import numpy as np
import matplotlib.pyplot as plt
from PIL import Image
def main():
data_dir_path = u"./画像ディレクトリ名/"
file_list = os.listdir(r'./画像ディレクトリ名/')
for file_name in file_list:
root, ext = os.path.splitext(file_name)
if ext == u'.png' or u'.jpeg' or u'.jpg':
abs_name = data_dir_path + '/' + file_name
image = cv.imread(abs_name)
//以下各画像に対する処理を記載する
mu = cv2.moments(img, False)
x,y= int(mu["m10"]/mu["m00"]) , int(mu["m01"]/mu["m00"])
cv2.circle(img, (x,y), 4, 100, 2, 4)
plt.imshow(img)
plt.colorbar()
plt.show()
print(x,y)
if name == 'main':
main()
///////////////////////////////////////////////////////
回答1件
あなたの回答
tips
プレビュー