How to distinguish person's belongings using yolo3 [closed]

asked 2018-11-25 22:49:00 -0600

prb gravatar image

updated 2018-11-25 22:54:48 -0600

Hi, I am working on a project for a convenience store. I am using yolo3 for an object and person detection. After getting the pose estimated coordinates for the person, I want to distinguish the belongings of the person and objects around him in a convenience store. At the moment, the issue is that my model is adding the surrounding objects in the convenience store to the person's belongings list. I would appreciate any thoughts on this. Thank you. I have added a snippet of a code. I am not sure whether that is enough.

def setBelongings(self, belongings):
        self.lastBelongingsList = belongings
        if belongings is not None:
            for item in belongings:
                if item not in self.belongings:
                    self.belongings[item] = 1
                else:
                    self.belongings[item] += 1
edit retag flag offensive reopen merge delete

Closed for the following reason not a real question by berak
close date 2018-11-27 00:44:20.287844

Comments

1

how is this related to opencv ?

berak gravatar imageberak ( 2018-11-26 01:42:43 -0600 )edit