python 代码中的完整内存使用情况,带有 mediapipe 库
Posted
技术标签:
【中文标题】python 代码中的完整内存使用情况,带有 mediapipe 库【英文标题】:Full Memory Usage at python code, with mediapipe library 【发布时间】:2021-12-12 11:06:36 【问题描述】:我在 python 代码中遇到了一个大问题,我的代码工作正常,但我的笔记本电脑的 RAM 无法擦除未使用的数据,我使用了 'gc' 库,但它没有任何帮助, 出现这个问题,我将其更改为课堂模式。
我的代码:
import cv2 as cv
import mediapipe as mp
import time
import gc
class handDetector():
def __init__(self, mode=False, maxHands=2, detectionCon=0.5, trackCon=0.5):
self.mode = mode
self.maxHands = maxHands
self.detectionCon = detectionCon
self.trackCon = trackCon
self.mpHands = mp.solutions.hands
self.hands = self.mpHands.Hands(self.mode, self.maxHands, 1, self.detectionCon, self.trackCon)
self.mpDraw = mp.solutions.drawing_utils
def findHands(self, image, draw=True):
imgRGB = cv.cvtColor(image, cv.COLOR_BGR2RGB)
self.result = self.hands.process(imgRGB)
if self.result.multi_hand_landmarks:
for hand in self.result.multi_hand_landmarks:
if draw:
self.mpDraw.draw_landmarks(image, hand, self.mpHands.HAND_CONNECTIONS)
cv.FILLED)
return image
def findPosition(self, image, handNo=0, draw=True):
lmList = []
h, w, c = image.shape
if self.result.multi_hand_landmarks:
myHand = self.result.multi_hand_landmarks[handNo]
for id, land in enumerate(myHand.landmark):
cx, cy = int(land.x * w), int(land.y * h)
lmList.append([id, cx, cy])
if draw:
cv.circle(image, (cx,cy), 15, (0,0,255), cv.FILLED)
return lmList
def main():
cap = cv.VideoCapture(0)
ret=1
pre_time = time.time()
gc.enable()
while ret:
ret, frame = cap.read()
crt_time = time.time()
fps = int(1/(crt_time-pre_time))
handDtc = handDetector()
image = handDtc.findHands(frame)
lmList = handDtc.findPosition(image)
cv.putText(image, str(fps), (50,50), cv.FONT_HERSHEY_COMPLEX, 1, (255,255,0))
image=frame
cv.imshow('image', image)
pre_time = time.time()
if cv.waitKey(1) == ord('q'):
ret = False
# print(lmList)
del handDtc
del image
gc.collect()
if __name__ == "__main__":
main()
我的 RAM 存储空间为 16gb,我有 11gb 空闲空间,运行代码后我的 RAM 将满
【问题讨论】:
我创立了,我必须把handDtc = handDetector()
里面的while移到外面。
【参考方案1】:
我必须将 handDtc = handDetector()
里面的 while 删除到外面。
这一行创建了许多类对象,它会填满我的 RAM。
【讨论】:
以上是关于python 代码中的完整内存使用情况,带有 mediapipe 库的主要内容,如果未能解决你的问题,请参考以下文章