Read the statement by Michael Teeuw here.
Face Recognition with inferred light
-
Uhm @MichMich could it be that the module fading fails if no module has the class you are trying to fade?
-
Did some debugging. I’m not an expert in Java at the moment, but isn’t there missing the class Marvin @
module.data.classes ?
-
Javascript … not Java. Two different beasts. But yes, it’s being looked into …
-
I did some tests:
MM.getModules().withClass('a_non_existing_class') // No issue. MM.getModules().withClass('') // No issue. MM.getModules().withClass()// No issue.
So no idea what is causing that problem.
-
@MichMich hmm how Can i deinstall and reinstall opencv?
-
Sorry, I don’t have any experience with openCV
-
@feuerball why do you want to reinstall it?
-
If it was installed using apt-get, you can remove it the same way,
'apt-get remove --purge <package-name>'
. If you compiled the binaries yourself, you can simply do it again and overwrite the previous ones.However, a better question is, why do you want to do that?
-
@KirAsh4 why
apt-get remove --purge
shouldn’tapt-get purge
do the same? -
remove - Packages installed are removed (Does NOT include configuration files)
purge - Purge is identical to remove except that packages are removed and purged. Purge meaning that any configuration files are deleted too.