Shafayat Hossain Shifat
Shafayat Hossain Shifat
@Rajdeep1311 the package is already in pypi so it’s not necessary.
@Tawishi yes.
@Tawishi no problem.
@BuerJeanMaxime feel free to submit PR. You can include documentation on docs folder.
@Raghucharan16 you can start working on it. First create a issue for this problem and possible solutions you can do.
Try with `check_similar=False`. ```python ids, failed_indexes = db.add_many( imgs=imgs, names=names, check_similar=False ) ```
> > Try with `check_similar=False`. > > ```python > > ids, failed_indexes = db.add_many( > > imgs=imgs, > > names=names, > > check_similar=False > > ) > > ``` >...
@Ntchinda-Giscard for single image you can do this: Suppose you want to add age or gender ```python db.add(name='Test 1',img=img,age=20,gender='Male', add_anything_key='add_anything_value') ``` For multiple image ```python db.add_many(names=['Test 1', 'Test 2'],imgs=[test1img,test2img],metadata=[{'age':20,'gender':'Male'},{'age':21,'gender':'Female'}]) ```...
@Raghucharan16 by default it uses [Face Recognation Python Library Model](https://github.com/ageitgey/face_recognition)