Oski19831

Results 14 comments of Oski19831

At the moment you cannot recluster without resetting. Two Options... Option 1: For testing create a user with a few pictures. Reset only this user. with occ:face:reset -u [uid] <...

The normal way is to use a cronjob to cluster your faces. On Debian-Based Systems use `sudo -u www-data crontab -e` There u can add the line like `*/30 *...

I can confirm this Bug also. It is a WorkArround to manuel convert the json_string to an array. I don´t know if this is a Problem with PHP. I use...

I never wrote Code for NC. So i think it is better Solution to change Code in DB-Object. But i don´t know the relation between NC and Entity - Class...

Same here. $faces returns a String instead of an array. So for WorkArround add a function in /lib/Db/Face.php `function getDescriptorArray(): array { if(is_array($this->descriptor)) { return $this->descriptor; } else { return...

hello @mrmipo . change $face1->descriptor to $face1->getDescriptorArray(). that should call the function in Class Face.php and returned an array and not the String from the DB. Try it. EDIT: And...

Top no thanks. I test a modification which is easyer... i post an update if it pass the test....

it is also enough to change /lib/Db/face.php and add two Lines in function __construct() ```php public function __construct() { $this->addType('id', 'integer'); $this->addType('image', 'integer'); $this->addType('person', 'integer'); $this->addType('isGroupable', 'bool'); //This Lines fix...

> Hi everyone, I will soon release a version compatible with NC30, and I was thinking of deprecating NC29 since I can't test it. However, I see that some Nextcloud...

Hi @priyankub. This error is not related to this App it think. Nextcloud cannot load the Data of one of your pictures and it retrunted null. you can proof against...